Skip to content

Commit

Permalink
Fix SV bug
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Sep 22, 2022
1 parent 0f3fcd8 commit 6568293
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pineko/theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,9 @@ def fk(self, name, grid_path, tcard, pdf):
operators = eko.output.Output.load_tar(eko_filename)
q2_grid = operators["Q2grid"].keys()
# PineAPPL wants alpha_s = 4*pi*a_s
# remember that we already accounted for xif in the opcard generation
alphas_values = [
4.0 * np.pi * astrong.a_s(xir * xir * Q2 / xif / xif) for Q2 in q2_grid
4.0 * np.pi * astrong.a_s(xir * xir * Q2) for Q2 in q2_grid
]
# Obtain the assumptions hash
assumptions = theory_card.construct_assumptions(tcard)
Expand Down

0 comments on commit 6568293

Please sign in to comment.