Skip to content

Commit

Permalink
qcd ht xsecs update
Browse files Browse the repository at this point in the history
  • Loading branch information
rkansal47 committed Feb 17, 2025
1 parent 2a21094 commit f0393c1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ docker_stderror
/*.log
src/boostedhh/corrections/data/jecs
**/*test.ipynb
src/boostedhh/xsecs.json

running_jobs.txt

Expand Down
29 changes: 17 additions & 12 deletions src/boostedhh/xsecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,23 @@
xsecs["QCDB_HT-2000"] = 0.8673

# got using genXsecAnalyzer
xsecs["QCD_HT-40to70"] = 311600000.0
xsecs["QCD_HT-70to100"] = 58520000.0
xsecs["QCD_HT-100to200"] = 25220000.0
xsecs["QCD_HT-200to400"] = 1963000.0
xsecs["QCD_HT-400to600"] = 94870.0
xsecs["QCD_HT-600to800"] = 13420.0
xsecs["QCD_HT-800to1000"] = 2992.0
xsecs["QCD_HT-1000to1200"] = 879.1
xsecs["QCD_HT-1200to1500"] = 384.5
xsecs["QCD_HT-1500to2000"] = 125.5
xsecs["QCD_HT-2000"] = 25.78
qcdhtxsecs = {}

qcdhtxsecs["QCD_HT-40to70"] = 311600000.0
qcdhtxsecs["QCD_HT-70to100"] = 58520000.0
qcdhtxsecs["QCD_HT-100to200"] = 25220000.0
qcdhtxsecs["QCD_HT-200to400"] = 1963000.0
qcdhtxsecs["QCD_HT-400to600"] = 94870.0
qcdhtxsecs["QCD_HT-600to800"] = 13420.0
qcdhtxsecs["QCD_HT-800to1000"] = 2992.0
qcdhtxsecs["QCD_HT-1000to1200"] = 879.1
qcdhtxsecs["QCD_HT-1200to1500"] = 384.5
qcdhtxsecs["QCD_HT-1500to2000"] = 125.5
qcdhtxsecs["QCD_HT-2000"] = 25.78

for key, value in qcdhtxsecs.items():
xsecs[key] = value
xsecs[key.replace("_HT", "-4Jets_HT")] = value

# xsdb
xsecs["QCD_PT-120to170_MuEnrichedPt5"] = 22980.0
Expand Down Expand Up @@ -183,7 +189,6 @@
xsecs[f"{tkey}_TSG_Pu60"] = tvalue



### TO UPDATE ###

xsecs["GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8"] = 34.13e-3 * (
Expand Down

0 comments on commit f0393c1

Please sign in to comment.