Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run3 process updates #20

Merged
merged 16 commits into from
Apr 24, 2024
Merged
40 changes: 31 additions & 9 deletions cmsdb/processes/ewk.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,23 @@

# NNLO cross section, based on:
# https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat13TeV?rev=27
# and for 13.6 TeV, based on:
# https://twiki.cern.ch/twiki/bin/viewauth/CMS/MATRIXCrossSectionsat13p6TeV
mafrahm marked this conversation as resolved.
Show resolved Hide resolved

dy_lep_m50 = dy_lep.add_process(
name="dy_lep_m50",
id=51100,
xsecs={13: const.n_leps * Number(6077.22, {
"integration": 1.49,
"scale": 0.02j,
"pdf": 14.78,
})},
xsecs={
13: Number(6077.22, {
"integration": 1.49,
"scale": 0.02j,
"pdf": 14.78,
}),
13.6: const.n_leps * Number(2091.7, {
"scale": (0.008j, 0.013j),
"pdf": 1.0j,
mafrahm marked this conversation as resolved.
Show resolved Hide resolved
}),
},
)

# based on datasets DY{i}JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO)
Expand Down Expand Up @@ -209,15 +217,29 @@

# NNLO cross section, based on:
# https://twiki.cern.ch/twiki/bin/view/CMS/StandardModelCrossSectionsat13TeV?rev=27
# and for 13.6 TeV, based on:
# https://twiki.cern.ch/twiki/bin/viewauth/CMS/MATRIXCrossSectionsat13p6TeV
mafrahm marked this conversation as resolved.
Show resolved Hide resolved

wm_lnu_xs_13p6 = const.n_leps * Number(9009.5, {
"scale": (0.014j, 0.012j),
"pdf": 0.008j,
})
wp_lnu_xs_13p6 = const.n_leps * Number(12122.5, {
"scale": (0.011j, 0.014),
"pdf": 0.007j,
})

w_lnu = w.add_process(
name="w_lnu",
id=6100,
label=rf"{w.label} ($W \rightarrow l\nu$)",
xsecs={13: const.n_leps * Number(20508.9, {
"scale": (165.7, 88.2),
"pdf": 770.9,
})},
xsecs={
13: const.n_leps * Number(20508.9, {
"scale": (165.7, 88.2),
"pdf": 770.9,
}),
13.6: wm_lnu_xs_13p6 + wp_lnu_xs_13p6,
mafrahm marked this conversation as resolved.
Show resolved Hide resolved
},
)

# LO cross sections, scaled to NNLO
Expand Down
Loading