Skip to content

Commit 50ae05a

Browse files
committed
update xsecs and HLT
1 parent d1154a8 commit 50ae05a

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

src/boostedhh/utils.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,11 @@ def __post_init__(self):
171171
if self.name.startswith("HLT_"):
172172
self.name = self.name[4:]
173173

174+
self.hlt_name = "HLT_" + self.name
175+
176+
def get_name(self, hlt_prefix: bool = True):
177+
return self.hlt_name if hlt_prefix else self.name
178+
174179
def check_year(self, year: str, data_only: bool = False, mc_only: bool = False) -> bool:
175180
"""Check if the HLT is valid for a given year, optionally for data or MC only"""
176181
if data_only and mc_only:

src/boostedhh/xsecs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,11 @@
207207
vbfhh = {
208208
# 0.000635 (0.001904 from xsecdb, 0.001904*BR_HBB*BR_HBB=0.00064)
209209
"VBFHHtoDECAY_CV-1_C2V-1_C3-1": vbfhh_sm,
210+
"VBFHHtoDECAY_CV_1_C2V_1_C3_1": vbfhh_sm,
210211
# these numbers are from 13 TeV and re-scaled to 13.6 TeV
211212
# 0.0293112 * BR = 0.00989 (0.02936 from xsecdb)
212213
"VBFHHtoDECAY_CV-1_C2V-0_C3-1": 27.0e-3 * vbfhh_kfactor,
214+
"VBFHHtoDECAY_CV_1_C2V_0_C3_1": 27.0e-3 * vbfhh_kfactor,
213215
# 0.0050035 * BR = 0.00168 (not in xsecdb)
214216
"VBFHHtoDECAY_CV-1_C2V-1_C3-0": 4.59e-3 * vbfhh_kfactor,
215217
# 0.0015446 * BR = 0.000521 (0.001588 from xsecdb)

0 commit comments

Comments
 (0)