Skip to content

Commit

Permalink
add hh2bbww datasets to 2022 nano v12 campaigns
Browse files Browse the repository at this point in the history
  • Loading branch information
mafrahm committed Feb 1, 2024
1 parent 71b9ac5 commit 58417fd
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 1 deletion.
54 changes: 54 additions & 0 deletions cmsdb/campaigns/run3_2022_postEE_nano_v12/hh2bbww.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# coding: utf-8

"""
HH -> bbWW datasets for the 2017 data-taking campaign
"""

import cmsdb.processes as procs
from cmsdb.campaigns.run2_2017_nano_v9 import campaign_run2_2017_nano_v9 as cpn


#
# ggf, HH -> bbVV inclusive
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_hbbhww_powheg",
id=14857512,
# processes=[procs.ggHH_kl_1_kt_1_hbbhww],
keys=[
"/GluGlutoHHto2B2V_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v3/NANOAODSIM", # noqa
],
n_files=40,
n_events=769320,
)

#
# ggf, HH -> bbVV single lepton
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_sl_hbbhww_powheg",
id=14870918,
processes=[procs.ggHH_kl_1_kt_1_sl_hbbhww_powheg],
keys=[
"/GluGlutoHHto2B2WtoLNu2Q_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v3/NANOAODSIM", # noqa
],
n_files=33,
n_events=307250,
)

#
# ggf, HH -> bbVV dilepton
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_dl_hbbhww_powheg",
id=14857784,
processes=[procs.ggHH_kl_1_kt_1_dl_hbbhww],
keys=[
"/GluGlutoHHto2B2Vto2L2Nu_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa
],
n_files=64,
n_events=302033,
)
1 change: 0 additions & 1 deletion cmsdb/campaigns/run3_2022_postEE_nano_v12/qcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from cmsdb.campaigns.run3_2022_preEE_nano_v11 import campaign_run3_2022_preEE_nano_v11 as cpn



cpn.add_dataset(
name="qcd_mu_pt15to20_pythia",
id=14805741,
Expand Down
53 changes: 53 additions & 0 deletions cmsdb/campaigns/run3_2022_preEE_nano_v12/hh2bbww.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# coding: utf-8

"""
HH -> bbWW datasets for the 2017 data-taking campaign
"""

import cmsdb.processes as procs
from cmsdb.campaigns.run2_2017_nano_v9 import campaign_run2_2017_nano_v9 as cpn

#
# ggf, HH -> bbVV inclusive
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_hbbhww_powheg",
id=14863914,
# processes=[procs.ggHH_kl_1_kt_1_hbbhww],
keys=[
"/GluGlutoHHto2B2V_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa
],
n_files=48,
n_events=229178,
)

#
# ggf, HH -> bbVV single lepton
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_sl_hbbhww_powheg",
id=14868316,
processes=[procs.ggHH_kl_1_kt_1_sl_hbbhww_powheg],
keys=[
"/GluGlutoHHto2B2WtoLNu2Q_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa
],
n_files=31,
n_events=89899,
)

#
# ggf, HH -> bbVV dilepton
#

cpn.add_dataset(
name="ggHH_kl_1_kt_1_dl_hbbhww_powheg",
id=14847284,
processes=[procs.ggHH_kl_1_kt_1_dl_hbbhww],
keys=[
"/GluGlutoHHto2B2Vto2L2Nu_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa
],
n_files=20,
n_events=86800,
)

0 comments on commit 58417fd

Please sign in to comment.