Skip to content

Commit

Permalink
fix typos. Agreement with LO N-space
Browse files Browse the repository at this point in the history
  • Loading branch information
Radonirinaunimi committed Jun 9, 2021
1 parent f00a03b commit 2c0c0b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/CombinedRes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 91,7 @@ std::complex<long double> CombinedRes::CombinedResExpr(
std::complex<long double> ExactMellinCmpx(ExactMellin[0], 0.);
mres = (1. - Matching(N, pt, scheme)) * SptMellin
Matching(N, pt, scheme) * ThresMellin;
/* Matching(N, pt, scheme) * xThresMellin; */

return ExactMellinCmpx mres;
}
8 changes: 4 additions & 4 deletions src/ThresXspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 66,7 @@ double ThresXspace::LOgggH(double x, double xp) {
(-4. * NC * std::pow(1. - tau, 2) * tau
2. * NC * std::pow(tau, 2) * xp) /
den;
return aass * CLOgggH;
return aass / M_PI * CLOgggH;
}

// gq->q
Expand All @@ -91,13 91,13 @@ double ThresXspace::ThresXspaceExpr(double x, double N, double pt) {
case (0): // order as^1
{
if ((CHANNEL == 0) || (CHANNEL == 5)) {
result = LOgggH(N, xp);
result = LOgggH(x, xp);
}
if ((CHANNEL == 1) || (CHANNEL == 5)) {
result = LOgqqH(N, xp);
result = LOgqqH(x, xp);
}
if ((CHANNEL == 2) || (CHANNEL == 5)) {
result = LOqqgH(N, xp);
result = LOqqgH(x, xp);
}
} break;
case (1): // order as^2
Expand Down

0 comments on commit 2c0c0b5

Please sign in to comment.