Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in sv operator cards #193

Merged
merged 5 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/pineko/evolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,13 +397,14 @@ def xgrid_reshape(full_operator):
)
# To compute the alphas values we are first reverting the factorization scale shift
# and then obtaining the renormalization scale using xir.
ren_grid2 = xir * xir * mur2_grid
alphas_values = [
4.0
* np.pi
* sc.a_s(
xir * xir * mur2,
mur2,
)
for mur2 in mur2_grid
for mur2 in ren_grid2
]

def prepare(operator):
Expand All @@ -426,15 +427,15 @@ def prepare(operator):
fktable = grid.evolve_with_slice_iter2(
prepare(operators1),
prepare(operators2),
ren1=mur2_grid,
ren1=ren_grid2,
alphas=alphas_values,
xi=(xir, xif),
order_mask=order_mask,
)
else:
fktable = grid.evolve_with_slice_iter(
prepare(operators1),
ren1=mur2_grid,
ren1=ren_grid2,
alphas=alphas_values,
xi=(xir, xif),
order_mask=order_mask,
Expand Down
Loading