Skip to content

Commit

Permalink
Fix bug in sv operator cards
Browse files Browse the repository at this point in the history
  • Loading branch information
andreab1997 authored Sep 2, 2024
1 parent 4452b48 commit eb7b355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pineko/evolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def write_operator_card(pineappl_grid, default_card, card_path, tcard):
muf2_grid = evol_info.fac1
operators_card = copy.deepcopy(default_card)
sv_method = sv_scheme(tcard)
xif = 1.0 if sv_method is not None else tcard["XIF"]
xif = 1.0 if sv_method is None else tcard["XIF"]
# update scale variation method
operators_card["configs"]["scvar_method"] = sv_method

Expand Down

0 comments on commit eb7b355

Please sign in to comment.