Skip to content

Commit

Permalink
fix flavor rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Oct 31, 2024
1 parent 9f7d9a7 commit d246cd9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pineko/evolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,13 +357,13 @@ def evolve_grid(

evol_info = grid.evolve_info(order_mask)
x_grid = evol_info.x1
if "integrability_version" in grid.key_values():
x_grid = np.append(x_grid, 1.0)

mur2_grid = evol_info.ren1
xif = 1.0 if operators1.operator_card.configs.scvar_method is not None else xif
tcard = operators1.theory_card
opcard = operators1.operator_card
# rotate the targetgrid
if "integrability_version" in grid.key_values():
x_grid = np.append(x_grid, 1.0)

# TODO: do we still want to check here or only later ?
check.check_grid_and_eko_compatible(grid, operators1, xif, max_as, max_al)
Expand Down Expand Up @@ -410,7 +410,7 @@ def prepare(operator):
pids0=basis_rotation.evol_basis_pids,
fac1=q2,
x1=x_grid.tolist(),
pids1=basis_rotation.evol_basis_pids,
pids1=basis_rotation.flavor_basis_pids,
pid_basis=PyPidBasis.Evol,
)
yield (info, op.operator)
Expand Down

0 comments on commit d246cd9

Please sign in to comment.