Skip to content

Commit

Permalink
ekomark: Fix void+QED
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Feb 3, 2025
1 parent 938378a commit 79d5437
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/ekomark/benchmark/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,10 @@ def run_external(self, theory, ocard, pdf):
if self.external.lower() == "void":
xgrid = ocard["interpolation_xgrid"]
mugrid = ocard["mugrid"]
labels = (
br.evol_basis
if self.rotate_to_evolution_basis
else br.flavor_basis_pids
)
labels = br.flavor_basis_pids
if self.rotate_to_evolution_basis:
labels = br.unified_evol_basis if theory["QED"] > 0 else br.evol_basis

void = {
"target_xgrid": xgrid,
"values": {
Expand Down

0 comments on commit 79d5437

Please sign in to comment.