Skip to content

Commit 57f60da

Browse files
Fix tiny typo
1 parent e99ecf9 commit 57f60da

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pineko/evolve.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def sv_scheme(tcard):
4848
return modsv
4949

5050

51-
def construct_atals(tcard):
51+
def construct_atlas(tcard):
5252
"""Construct the atlas for heavy quarks matching.
5353
5454
Parameters
@@ -223,7 +223,7 @@ def write_operator_card(
223223
nf = tcard["NfFF"]
224224
operators_card["mugrid"] = [(float(np.sqrt(q2)), int(nf)) for q2 in q2_grid]
225225
else:
226-
atlas = construct_atals(tcard)
226+
atlas = construct_atlas(tcard)
227227
operators_card["mugrid"] = [
228228
(float(np.sqrt(q2)), nf_default(q2, atlas)) for q2 in q2_grid
229229
]
@@ -377,7 +377,7 @@ def evolve_grid(
377377
nfgrid = [int(theory_meta["NfFF"]) for _ in mur2_grid]
378378
else:
379379
q2mur_grid = (xir * xir * mur2_grid).tolist()
380-
atlas = construct_atals(theory_meta)
380+
atlas = construct_atlas(theory_meta)
381381
nfgrid = [nf_default(q2, atlas) for q2 in q2mur_grid]
382382
else:
383383
nfgrid = [x[1] for x in operators[0].operator_card.mugrid]

0 commit comments

Comments
 (0)