From deccc48e123c68313490982e2ffbba20e00b6325 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 11 Jun 2021 17:05:09 +0200 Subject: [PATCH] extract nlo only --- src/higgsptpartonic.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/higgsptpartonic.cpp b/src/higgsptpartonic.cpp index b7e1ba9..5958fa1 100644 --- a/src/higgsptpartonic.cpp +++ b/src/higgsptpartonic.cpp @@ -715,19 +715,19 @@ double HiggsDpTpartonic::deltapartonic(double pt, double nn, double zz) { if (ORD >= 0) { switch (CHANNEL) { case (0): { - result += gg0(sh, th, uh, MH2); + result += 0.; } // gg-channel break; case (1): { - result += gq0(sh, th, uh); + result += 0.; } // gq-channel break; case (2): { - result += qg0(sh, th, uh); + result += 0.; } // qg-channel break; case (3): { - result += qqb0(sh, th, uh); + result += 0.; } // qqb-channel break; }