Skip to content

Commit

Permalink
Update src/pineko/scale_variations.py
Browse files Browse the repository at this point in the history
Co-authored-by: Giacomo Magni <[email protected]>
  • Loading branch information
felixhekhorn and giacomomagni authored Dec 14, 2023
1 parent 2f0f52e commit f52db38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pineko/scale_variations.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def ren_sv_coeffs(m, max_as, logpart, which_part, nf):
(3, 1, 0): (m + 0) * beta2,
(3, 2, 1): (m + 1) * (m + 2) / 2.0 * beta0**2,
(3, 2, 0): m * (2 * m + 3) / 2.0 * beta0 * beta1,
(3, 3, 0): m * (m + 1) * (m + 2) / 6 * beta0**2,
(3, 3, 0): m * (m + 1) * (m + 2) / 6 * beta0**3,
}
return as_normalization * ren_coeffs[(max_as, logpart, which_part)]

Expand Down

0 comments on commit f52db38

Please sign in to comment.