Skip to content

Commit

Permalink
remove _PB suffix from process type
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Nov 14, 2024
1 parent b3df9e3 commit 8e1dc74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions validphys2/src/validphys/theorycovariance/construction.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ def thcov_shifts_ht(ht_parameters,
HT_func['H2p'], HT_func["HLp"] = ht_func.DIS_NC_ht(HT['H2p'], HT['HLp'], x, q2, y)

#CHORUS
elif process_type in ["DIS_SNU_PB", "DIS_SNB_PB"]:
# Lead target
elif process_type in ["DIS_SNU", "DIS_SNB"]:
# Lead target::
A = 208.0
Z = 82
if process_type == "DIS_SNU_PB":
if process_type == "DIS_SNU":
l = 0
elif process_type == "DIS_SNB_PB":
elif process_type == "DIS_SNB":
l = 1

DIS_NU = ht_func.DIS_SNU(HT, (A,Z), (x,q2,y), Mh=0.938, Mw=80.398, lepton=l)
Expand All @@ -221,9 +221,9 @@ def thcov_shifts_ht(ht_parameters,
# Iron target
Z = 23.403
A = 49.618
if process_type == "DIS_SNU_PB":
if process_type == "DIS_SNU":
l = 0
elif process_type == "DIS_SNB_PB":
elif process_type == "DIS_SNB":
l = 1

DIS_NuTeV = ht_func.DIS_NUTEV(HT, (A,Z), (x,q2,y), Mh=0.938, Mw=80.398, lepton=l)
Expand Down

0 comments on commit 8e1dc74

Please sign in to comment.