Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Mar 19, 2024
1 parent e07ebd5 commit 538d289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HighScaleCoefficientFunction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Value HighScaleCoefficientFunction::CL_g1_highscale(double x, double /*m2Q2*/, d

double HighScaleCoefficientFunction::D2_g1_highscale(double x, double m2Q2) const {

return 2 * TR * (x * x + (x - 1) * (x - 1)) * log(1. / m2Q2)
return 4 * TR * (x * x + (x - 1) * (x - 1)) * log(1. / m2Q2)
+ massless_lo_ -> MuIndependentTerms(x, 1) ;
}

Expand Down

0 comments on commit 538d289

Please sign in to comment.