Skip to content

Commit

Permalink
Add eko compatibility layer
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Aug 26, 2022
1 parent dda48e1 commit bfb3834
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pineko/theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import time

import eko
import eko.compatibility
import numpy as np
import pineappl
import rich
Expand Down Expand Up @@ -385,7 +386,8 @@ def fk(self, name, grid_path, tcard, pdf):
)
# collect alpha_s
# TODO: move this down to evolve.evolve_grid when output contains cards
astrong = sc.Couplings.from_dict(tcard)
new_tcard = eko.compatibility.update_theory(tcard)
astrong = sc.Couplings.from_dict(new_tcard)
# ocard = self.load_operator_card(name)
# q2_grid = ocard["Q2grid"]

Expand Down

0 comments on commit bfb3834

Please sign in to comment.