From 93df5a4be795d3787321fc2b834f8665a0d62177 Mon Sep 17 00:00:00 2001 From: Mathis Frahm Date: Tue, 23 Jul 2024 15:06:27 +0200 Subject: [PATCH] 2023_postBPix_nano_v12 campaign initial commit --- .../run3_2023_postBPix_nano_v12/__init__.py | 40 + .../run3_2023_postBPix_nano_v12/ewk.py | 488 +++++++++ .../run3_2023_postBPix_nano_v12/hh2bbvv.py | 69 ++ .../run3_2023_postBPix_nano_v12/higgs.py | 928 ++++++++++++++++++ .../run3_2023_postBPix_nano_v12/qcd.py | 418 ++++++++ .../run3_2023_postBPix_nano_v12/top.py | 798 +++++++++++++++ 6 files changed, 2741 insertions(+) create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/__init__.py create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/ewk.py create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/hh2bbvv.py create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/higgs.py create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/qcd.py create mode 100644 cmsdb/campaigns/run3_2023_postBPix_nano_v12/top.py diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/__init__.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/__init__.py new file mode 100644 index 00000000..7f28f1a2 --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/__init__.py @@ -0,0 +1,40 @@ + +# coding: utf-8 + +""" +Common, analysis independent definition of the run3_2023_postBPix_nano_v12 campaign +with datasets at NanoAOD tier in version 12. + +See https://python-order.readthedocs.io/en/latest/quickstart.html#analysis-campaign-and-config. + +Dataset ids are identical to those in DAS (https://cmsweb.cern.ch/das). +""" + +from order import Campaign + +# +# campaign +# + +run3_2023_postBPix_nano_v12 = Campaign( + name="run3_2023_postBPix_nano_v12", + id=320231202, # 3 2023 12 02(u) + ecm=13.6, + bx=25, + aux={ + "tier": "NanoAOD", + "run": 3, + "year": 2023, + "version": 12, + "postfix": "BPix", + }, + tags={"BPix, postBPix"}, +) + +# trailing imports to load datasets +# import cmsdb.campaigns.run3_2023_postBPix_nano_v12.data # noqa +import cmsdb.campaigns.run3_2023_postBPix_nano_v12.top # noqa +import cmsdb.campaigns.run3_2023_postBPix_nano_v12.ewk # noqa +import cmsdb.campaigns.run3_2023_postBPix_nano_v12.qcd # noqa +import cmsdb.campaigns.run3_2023_postBPix_nano_v12.higgs # noqa +import cmsdb.campaigns.run3_2023_postBPix_nano_v12.hh2bbvv # noqa diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/ewk.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/ewk.py new file mode 100644 index 00000000..1c84eea3 --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/ewk.py @@ -0,0 +1,488 @@ + +# coding: utf-8 + +"""" +Electroweak datasets for the run3_2023_postBPix_nano_v12 campaign. +""" + +from order import DatasetInfo + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2023_postBPix_nano_v12 import run3_2023_postBPix_nano_v12 as cpn + + +# +# dy (NLO) +# + +cpn.add_dataset( + name="dy_m4to10_amcatnlo", + id=14940060, + processes=[procs.dy_m4to10], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=269, + n_events=97791089, + ), + ), +) +cpn.add_dataset( + name="dy_m10to50_amcatnlo", + id=14905314, + processes=[procs.dy_m10to50], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2_ext1-v3/NANOAODSIM", # noqa + ], + n_files=328, + n_events=100386286, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_amcatnlo", + id=14851777, + processes=[procs.dy_m50toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=221, + n_events=95472230, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_0j_amcatnlo", + id=14892918, + processes=[procs.dy_m50toinf_0j], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=310, + n_events=96625525, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_amcatnlo", + id=14897399, + processes=[procs.dy_m50toinf_2j], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=408, + n_events=68804529, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_amcatnlo", + id=14894111, + processes=[procs.dy_m50toinf_1j], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=330, + n_events=91293455, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_pt40to100_amcatnlo", + id=14826831, + processes=[procs.dy_m50toinf_1j_pt40to100], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-40to100_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=184, + n_events=51259552, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_pt100to200_amcatnlo", + id=14826692, + processes=[procs.dy_m50toinf_1j_pt100to200], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-100to200_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=133, + n_events=19223496, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_pt200to400_amcatnlo", + id=14830394, + processes=[procs.dy_m50toinf_1j_pt200to400], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-200to400_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=33, + n_events=1921207, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_pt400to600_amcatnlo", + id=14824633, + processes=[procs.dy_m50toinf_1j_pt400to600], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-400to600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=13, + n_events=459553, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_1j_pt600toinf_amcatnlo", + id=14826181, + processes=[procs.dy_m50toinf_1j_pt600toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=24, + n_events=456439, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_pt40to100_amcatnlo", + id=14826590, + processes=[procs.dy_m50toinf_2j_pt40to100], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-40to100_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=160, + n_events=20410287, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_pt100to200_amcatnlo", + id=14826152, + processes=[procs.dy_m50toinf_2j_pt100to200], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-100to200_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=117, + n_events=19286517, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_pt200to400_amcatnlo", + id=14823828, + processes=[procs.dy_m50toinf_2j_pt200to400], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-200to400_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=9, + n_events=3623077, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_pt400to600_amcatnlo", + id=14825726, + processes=[procs.dy_m50toinf_2j_pt400to600], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-400to600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=25, + n_events=493730, + ), + ), +) +cpn.add_dataset( + name="dy_m50toinf_2j_pt600toinf_amcatnlo", + id=14832728, + processes=[procs.dy_m50toinf_2j_pt600toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v1/NANOAODSIM", # noqa + ], + n_files=29, + n_events=477040, + ), + ), +) + +# +# w_lnu +# +cpn.add_dataset( + name="w_lnu_amcatnlo", + id=14978436, + processes=[procs.w_lnu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WtoLNu-2Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=352, + n_events=95759797, + ), + ), +) +# cpn.add_dataset( +# name="w_lnu_0j_amcatnlo", +# id=14911430, +# processes=[procs.w_lnu_0j], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=620, +# n_events=199057715, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_amcatnlo", +# id=14896271, +# processes=[procs.w_lnu_1j], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=704, +# n_events=149340770, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_amcatnlo", +# id=14912985, +# processes=[procs.w_lnu_2j], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=458, +# n_events=99486651, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_ptlnu100to200_amcatnlo", +# id=14892199, +# processes=[procs.w_lnu_1j_ptlnu100to200], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-100to200_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=278, +# n_events=46180146, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_ptlnu40to100_amcatnlo", +# id=14890369, +# processes=[procs.w_lnu_1j_ptlnu40to100], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-40to100_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=447, +# n_events=99944613, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_ptlnu200to400_amcatnlo", +# id=14890786, +# processes=[procs.w_lnu_1j_ptlnu200to400], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-200to400_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=13, +# n_events=2804887, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_ptlnu400to600_amcatnlo", +# id=14892483, +# processes=[procs.w_lnu_1j_ptlnu400to600], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-400to600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=19, +# n_events=511690, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_1j_ptlnu600toinf_amcatnlo", +# id=14895242, +# processes=[procs.w_lnu_1j_ptlnu600toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=20, +# n_events=552078, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_ptlnu40to100_amcatnlo", +# id=14892446, +# processes=[procs.w_lnu_2j_ptlnu40to100], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-40to100_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=460, +# n_events=98450124, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_ptlnu100to200_amcatnlo", +# id=14893885, +# processes=[procs.w_lnu_2j_ptlnu100to200], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-100to200_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=207, +# n_events=48375806, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_ptlnu200to400_amcatnlo", +# id=14892582, +# processes=[procs.w_lnu_2j_ptlnu200to400], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-200to400_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=87, +# n_events=5237325, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_ptlnu400to600_amcatnlo", +# id=14889898, +# processes=[procs.w_lnu_2j_ptlnu400to600], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-400to600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=7, +# n_events=498986, +# ), +# ), +# ) +# cpn.add_dataset( +# name="w_lnu_2j_ptlnu600toinf_amcatnlo", +# id=14890643, +# processes=[procs.w_lnu_2j_ptlnu600toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WtoLNu-2Jets_PTLNu-600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=34, +# n_events=477908, +# ), +# ), +# ) + +# +# diboson +# + +cpn.add_dataset( + name="ww_pythia", + id=14783236, + processes=[procs.ww], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WW_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=54, + n_events=16734000, + ), + ), +) +cpn.add_dataset( + name="zz_pythia", + id=14784123, + processes=[procs.zz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZZ_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=5, + n_events=1254000, + ), + ), +) +cpn.add_dataset( + name="wz_pythia", + id=14784070, + processes=[procs.wz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WZ_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=33, + n_events=8379000, + ), + ), +) diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/hh2bbvv.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/hh2bbvv.py new file mode 100644 index 00000000..93b499da --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/hh2bbvv.py @@ -0,0 +1,69 @@ + +# coding: utf-8 + +"""" +HH -> bbVV datasets for the run3_2023_postBPix_nano_v12 campaign. +""" + +from order import DatasetInfo + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2023_postBPix_nano_v12 import run3_2023_postBPix_nano_v12 as cpn + + +cpn.add_dataset( + name="hh_ggf_hbb_hvv_kl2p45_kt1_powheg", + id=14951647, + processes=[procs.hh_ggf_hbb_hvv_kl2p45_kt1], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGlutoHHto2B2V_kl-2p45_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v1/NANOAODSIM", # noqa + ], + n_files=89, + n_events=594432, + ), + ), +) +cpn.add_dataset( + name="hh_ggf_hbb_hvv2l2nu_kl2p45_kt1_powheg", + id=14932796, + processes=[procs.hh_ggf_hbb_hvv2l2nu_kl2p45_kt1], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGlutoHHto2B2Vto2L2Nu_kl-2p45_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=57, + n_events=149854, + ), + ), +) +cpn.add_dataset( + name="hh_ggf_hbb_hvvqqlnu_kl1_kt1_powheg", + id=14854361, + processes=[procs.hh_ggf_hbb_hvvqqlnu_kl1_kt1], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGlutoHHto2B2WtoLNu2Q_kl-1p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=50, + n_events=495374, + ), + ), +) +cpn.add_dataset( + name="hh_ggf_hbb_hvvqqlnu_kl2p45_kt1_powheg", + id=14945507, + processes=[procs.hh_ggf_hbb_hvvqqlnu_kl2p45_kt1], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGlutoHHto2B2WtoLNu2Q_kl-2p45_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=37, + n_events=149445, + ), + ), +) diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/higgs.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/higgs.py new file mode 100644 index 00000000..0e8ca65e --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/higgs.py @@ -0,0 +1,928 @@ + +# coding: utf-8 + +"""" +Higgs boson datasets for the run3_2023_postBPix_nano_v12 campaign. +""" + +from order import DatasetInfo + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2023_postBPix_nano_v12 import run3_2023_postBPix_nano_v12 as cpn + +# +# h_ggf +# + +cpn.add_dataset( + name="h_ggf_hbb_powheg", + id=14920370, + processes=[procs.h_ggf_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHto2B_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=40, + n_events=5549000, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hcc_powheg", + id=14919069, + processes=[procs.h_ggf_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHto2C_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=124, + n_events=5600000, + ), + ), +) +# cpn.add_dataset( +# name="h_ggf_htt_amcatnlo", +# id=14920389, +# processes=[procs.h_ggf_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/GluGluHto2Tau_M-125_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=28, +# n_events=984768, +# ), +# ), +# ) +cpn.add_dataset( + name="h_ggf_htt_amcatnlo", + id=15022151, + processes=[procs.h_ggf_htt], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHto2Tau_M-125_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=48, + n_events=3381015, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hgg_powheg", + id=14929730, + processes=[procs.h_ggf_hgg], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHToGG_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=16, + n_events=976000, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hzz4l_powheg", + id=14945935, + processes=[procs.h_ggf_hzz4l], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHtoZZto4L_M-125_TuneCP5_13p6TeV_powheg-jhugen-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=121000, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hww2l2nu_powheg", + id=14997436, + processes=[procs.h_ggf_hww2l2nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHto2Wto2L2Nu_M-125_TuneCP5_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=20, + n_events=1697000, + ), + tune_down=DatasetInfo( + keys=[ + "/GluGluHto2Wto2L2Nu_M-125_TuneCP5Down_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=30, + n_events=1697000, + ), + tune_up=DatasetInfo( + keys=[ + "/GluGluHto2Wto2L2Nu_M-125_TuneCP5Up_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=28, + n_events=1673000, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hzg_zll_powheg", + id=14937484, + processes=[procs.h_ggf_hzg_zll], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHtoZG_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=329999, + ), + tune_down=DatasetInfo( + keys=[ + "/GluGluHtoZG_Zto2L_M-125_CP5TuneDown_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=82499, + ), + tune_up=DatasetInfo( + keys=[ + "/GluGluHtoZG_Zto2L_M-125_CP5TuneUp_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=82500, + ), + ), +) +cpn.add_dataset( + name="h_ggf_hmm_powheg", + id=15023297, + processes=[procs.h_ggf_hmm], + info=dict( + nominal=DatasetInfo( + keys=[ + "/GluGluHto2Mu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=21, + n_events=300000, + ), + ), +) + +# +# h_vbf +# + +# cpn.add_dataset( +# name="h_vbf_htt_powheg", +# id=14927460, +# processes=[procs.h_vbf_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/VBFHTo2TauUncorrelatedDecay_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=21, +# n_events=200000, +# ), +# ), +# ) +# cpn.add_dataset( +# name="h_vbf_htt_powheg", +# id=14927786, +# processes=[procs.h_vbf_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/VBFHTo2TauUncorrelatedDecay_Filtered_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=71, +# n_events=7065031, +# ), +# ), +# ) +cpn.add_dataset( + name="h_vbf_hcc_powheg", + id=14900368, + processes=[procs.h_vbf_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHto2C_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=39, + n_events=5585000, + ), + ), +) +cpn.add_dataset( + name="h_vbf_hbb_powheg", + id=14900357, + processes=[procs.h_vbf_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHto2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=39, + n_events=5582000, + ), + ), +) +cpn.add_dataset( + name="h_vbf_hzg_zll_powheg", + id=14930806, + processes=[procs.h_vbf_hzg_zll], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHtoZG_Zto2L_M-125_TuneCP5_withDipoleRecoil_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=11, + n_events=300000, + ), + tune_up=DatasetInfo( + keys=[ + "/VBFHtoZG_Zto2L_M-125_CP5TuneUp_withDipoleRecoil_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=27, + n_events=300000, + ), + tune_down=DatasetInfo( + keys=[ + "/VBFHtoZG_Zto2L_M-125_CP5TuneDown_withDipoleRecoil_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=24, + n_events=294000, + ), + ), +) +cpn.add_dataset( + name="h_vbf_hww2l2nu_powheg", + id=14998527, + processes=[procs.h_vbf_hww2l2nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHto2Wto2L2Nu_M-125_TuneCP5_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=30, + n_events=1688000, + ), + tune_up=DatasetInfo( + keys=[ + "/VBFHto2Wto2L2Nu_M-125_TuneCP5Up_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=27, + n_events=1628000, + ), + tune_down=DatasetInfo( + keys=[ + "/VBFHto2Wto2L2Nu_M-125_TuneCP5Down_13p6TeV_powheg-jhugen752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=37, + n_events=1697000, + ), + ), +) +cpn.add_dataset( + name="h_vbf_hzz4nu_powheg", + id=14972564, + processes=[procs.h_vbf_hzz4nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHto2Zto4Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=497000, + ), + ), +) +cpn.add_dataset( + name="h_vbf_hzz4l_powheg", + id=14942227, + processes=[procs.h_vbf_hzz4l], + info=dict( + nominal=DatasetInfo( + keys=[ + "/VBFHto2Zto4L_M-125_TuneCP5_13p6TeV_powheg-jhugen-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=11, + n_events=125000, + ), + ), +) + +# +# zh +# + +cpn.add_dataset( + name="zh_zqq_hbb_powheg", + id=14902790, + processes=[procs.zh_zqq_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=104, + n_events=5556305, + ), + ), +) +cpn.add_dataset( + name="zh_zll_hbb_powheg", + id=14836898, + processes=[procs.zh_zll_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=66, + n_events=5556000, + ), + ), +) +cpn.add_dataset( + name="zh_zll_hcc_powheg", + id=14903170, + processes=[procs.zh_zll_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2C_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=65, + n_events=5532000, + ), + ), +) +cpn.add_dataset( + name="zh_zqq_hcc_powheg", + id=14904931, + processes=[procs.zh_zqq_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2C_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=68, + n_events=5592000, + ), + ), +) +# cpn.add_dataset( +# name="zh_htt_powheg", +# id=14927596, +# processes=[procs.zh_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/ZHto2TauUncorrelatedDecay_M-125_CP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=26, +# n_events=29949, +# ), +# ), +# ) +# cpn.add_dataset( +# name="zh_htt_powheg", +# id=14927498, +# processes=[procs.zh_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/ZHto2TauUncorrelatedDecay_Filtered_M-125_CP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=230, +# n_events=1009433, +# ), +# ), +# ) +cpn.add_dataset( + name="zh_hzz4nu_powheg", + id=14977774, + processes=[procs.zh_hzz4nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZHto2Zto4Nu_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=25, + n_events=498838, + ), + ), +) +cpn.add_dataset( + name="zh_hww2l2nu_powheg", + id=14944555, + processes=[procs.zh_hww2l2nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_ZtoAll_Hto2Wto2L2Nu_M-125_TuneCP5_13p6TeV_powheg-minlo-HZJ-jhugenv752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=59, + n_events=1244427, + ), + ), +) +cpn.add_dataset( + name="zh_hzg_powheg", + id=14932839, + processes=[procs.zh_hzg], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_ZtoAll_HtoZGto2LG_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=57, + n_events=185745, + ), + tune_up=DatasetInfo( + keys=[ + "/ZH_ZtoAll_HtoZGto2LG_M-125_CP5TuneUp_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=90, + n_events=186400, + ), + tune_down=DatasetInfo( + keys=[ + "/ZH_ZtoAll_HtoZGto2LG_M-125_CP5TuneDown_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=32, + n_events=187112, + ), + ), +) +cpn.add_dataset( + name="zh_hzz_powheg", + id=14932642, + processes=[procs.zh_hzz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2Z_4LFilter_M-125_TuneCP5_13p6TeV_powheg-jhugenv752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=32, + n_events=153033, + ), + ), +) +cpn.add_dataset( + name="zh_znunu_hbb_powheg", + id=15023028, + processes=[procs.zh_znunu_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=43, + n_events=5508000, + ), + ), +) + +# +# zh_gg +# + +cpn.add_dataset( + name="zh_gg_zqq_hbb_powheg", + id=14900172, + processes=[procs.zh_gg_zqq_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=94, + n_events=5568000, + ), + ), +) +cpn.add_dataset( + name="zh_gg_zll_hbb_powheg", + id=14900235, + processes=[procs.zh_gg_zll_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=58, + n_events=5570000, + ), + ), +) +cpn.add_dataset( + name="zh_gg_znunu_hbb_powheg", + id=14900310, + processes=[procs.zh_gg_znunu_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=64, + n_events=5564000, + ), + ), +) +cpn.add_dataset( + name="zh_gg_znunu_hcc_powheg", + id=14900000, + processes=[procs.zh_gg_znunu_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2C_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=55, + n_events=5570000, + ), + ), +) +cpn.add_dataset( + name="zh_gg_zll_hcc_powheg", + id=14900354, + processes=[procs.zh_gg_zll_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2C_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=36, + n_events=5585000, + ), + ), +) +cpn.add_dataset( + name="zh_gg_zqq_hcc_powheg", + id=14900211, + processes=[procs.zh_gg_zqq_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/ggZH_Hto2C_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=60, + n_events=5582000, + ), + ), +) + +# +# wph +# + +cpn.add_dataset( + name="wph_wqq_hbb_powheg", + id=14900907, + processes=[procs.wph_wqq_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusH_Hto2B_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=253, + n_events=5536721, + ), + ), +) +cpn.add_dataset( + name="wph_wlnu_hcc_powheg", + id=14900903, + processes=[procs.wph_wlnu_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusH_Hto2C_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=206, + n_events=5551318, + ), + ), +) +# cpn.add_dataset( +# name="wph_htt_powheg", +# id=14927431, +# processes=[procs.wph_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WplusHTo2TauUncorrelatedDecay_M-125_TuneCP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=30000, +# ), +# ), +# ) +# cpn.add_dataset( +# name="wph_htt_powheg", +# id=14926515, +# processes=[procs.wph_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WplusHTo2TauUncorrelatedDecay_Filtered_M-125_TuneCP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=28, +# n_events=1015644, +# ), +# ), +# ) +cpn.add_dataset( + name="wph_wqq_hcc_powheg", + id=14901084, + processes=[procs.wph_wqq_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusH_Hto2C_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=211, + n_events=5538310, + ), + ), +) +cpn.add_dataset( + name="wph_wlnu_hbb_powheg", + id=14915195, + processes=[procs.wph_wlnu_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=166, + n_events=5497144, + ), + ), +) +cpn.add_dataset( + name="wph_hzg_zll_powheg", + id=14940743, + processes=[procs.wph_hzg_zll], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusH_HtoZG_WtoAll_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=30, + n_events=239513, + ), + tune_down=DatasetInfo( + keys=[ + "/WplusH_HtoZG_WtoAll_Zto2L_M-125_CP5TuneDown_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=59997, + ), + tune_up=DatasetInfo( + keys=[ + "/WplusH_HtoZG_WtoAll_Zto2L_M-125_CP5TuneUp_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=23, + n_events=58162, + ), + ), +) +cpn.add_dataset( + name="wph_wqq_hzz4nu_powheg", + id=14973544, + processes=[procs.wph_wqq_hzz4nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WplusHto2Zto4Nu_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=499988, + ), + ), +) + +# +# wmh +# + +cpn.add_dataset( + name="wmh_wlnu_hbb_powheg", + id=14904895, + processes=[procs.wmh_wlnu_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=174, + n_events=5398979, + ), + ), +) +cpn.add_dataset( + name="wmh_hbb_powheg", + id=14901030, + processes=[procs.wmh_wqq_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_Hto2B_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=156, + n_events=5547273, + ), + ), +) +cpn.add_dataset( + name="wmh_wlnu_hcc_powheg", + id=14838225, + processes=[procs.wmh_wlnu_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_Hto2C_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=250, + n_events=5568160, + ), + ), +) +cpn.add_dataset( + name="wmh_wqq_hcc_powheg", + id=14904999, + processes=[procs.wmh_wqq_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_Hto2C_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=228, + n_events=5542812, + ), + ), +) +# cpn.add_dataset( +# name="wmh_htt_powheg", +# id=14927422, +# processes=[procs.wmh_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WminusHTo2TauUncorrelatedDecay_M-125_TuneCP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=30000, +# ), +# ), +# ) +# cpn.add_dataset( +# name="wmh_htt_powheg", +# id=14927570, +# processes=[procs.wmh_htt], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/WminusHTo2TauUncorrelatedDecay_Filtered_M-125_TuneCP5_13p6TeV_powheg-minnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=20, +# n_events=753115, +# ), +# ), +# ) +cpn.add_dataset( + name="wmh_wqq_hzz4nu_powheg", + id=14973628, + processes=[procs.wmh_wqq_hzz4nu], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusHto2Zto4Nu_Wto2Q_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=7, + n_events=499986, + ), + ), +) +cpn.add_dataset( + name="wmh_hzg_zll_powheg", + id=14932830, + processes=[procs.wmh_hzg_zll], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_HtoZG_WtoAll_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=42, + n_events=418162, + ), + tune_up=DatasetInfo( + keys=[ + "/WminusH_HtoZG_WtoAll_Zto2L_M-125_CP5TuneUp_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=38, + n_events=103015, + ), + tune_down=DatasetInfo( + keys=[ + "/WminusH_HtoZG_WtoAll_Zto2L_M-125_CP5TuneDown_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=27, + n_events=104999, + ), + ), +) +cpn.add_dataset( + name="wmh_hmm_powheg", + id=15023009, + processes=[procs.wmh_hmm], + info=dict( + nominal=DatasetInfo( + keys=[ + "/WminusH_Hto2Mu_WtoAll_M-125_TuneCP5_13p6TeV_powheg-minlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=23, + n_events=116000, + ), + ), +) + +# +# tth +# + +cpn.add_dataset( + name="tth_hnonbb_powheg", + id=14920188, + processes=[procs.tth_hnonbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTHtoNon2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=138, + n_events=5887987, + ), + ), +) +# cpn.add_dataset( +# name="tth_hnonbb_1j_amcatnlo", +# id=14918806, +# processes=[procs.tth_hnonbb_1j], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/TTHtoNon2B-1Jets_M-125_TuneCP5_13p6TeV_amcatnloFXFX-madspin-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=140, +# n_events=5595534, +# ), +# ), +# ) +cpn.add_dataset( + name="tth_hcc_powheg", + id=14900092, + processes=[procs.tth_hcc], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTHto2C_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=56, + n_events=5537000, + ), + ), +) +cpn.add_dataset( + name="tth_hbb_powheg", + id=14900362, + processes=[procs.tth_hbb], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTHto2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=68, + n_events=5576000, + ), + ), +) +cpn.add_dataset( + name="tth_hzz_powheg", + id=14943407, + processes=[procs.tth_hzz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTH_Hto2Z_4LFilter_M-125_TuneCP5_13p6TeV_powheg-jhugenv752-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=116569, + ), + ), +) diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/qcd.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/qcd.py new file mode 100644 index 00000000..2466c2c6 --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/qcd.py @@ -0,0 +1,418 @@ + +# coding: utf-8 + +"""" +QCD datasets for the run3_2023_postBPix_nano_v12 campaign. +""" + +from order import DatasetInfo + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2023_postBPix_nano_v12 import run3_2023_postBPix_nano_v12 as cpn + +# +# qcd_mu +# + +cpn.add_dataset( + name="qcd_mu_pt15to20_pythia", + id=14781363, + processes=[procs.qcd_mu_pt15to20], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-15to20_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=32, + n_events=4999275, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt20to30_pythia", + id=14781373, + processes=[procs.qcd_mu_pt20to30], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-20to30_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=166, + n_events=33206620, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt30to50_pythia", + id=14784056, + processes=[procs.qcd_mu_pt30to50], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-30to50_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=137, + n_events=31900002, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt50to80_pythia", + id=14784155, + processes=[procs.qcd_mu_pt50to80], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-50to80_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=53, + n_events=12720414, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt80to120_pythia", + id=14784054, + processes=[procs.qcd_mu_pt80to120], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-80to120_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=84, + n_events=26692302, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt120to170_pythia", + id=14783279, + processes=[procs.qcd_mu_pt120to170], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-120to170_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=85, + n_events=22380325, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt170to300_pythia", + id=14783386, + processes=[procs.qcd_mu_pt170to300], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-170to300_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=125, + n_events=33223105, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt300to470_pythia", + id=14784117, + processes=[procs.qcd_mu_pt300to470], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-300to470_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=122, + n_events=31622567, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt470to600_pythia", + id=14783278, + processes=[procs.qcd_mu_pt470to600], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-470to600_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=89, + n_events=23080052, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt600to800_pythia", + id=14783146, + processes=[procs.qcd_mu_pt600to800], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-600to800_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=113, + n_events=22886334, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt800to1000_pythia", + id=14783121, + processes=[procs.qcd_mu_pt800to1000], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-800to1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=195, + n_events=41077955, + ), + ), +) +cpn.add_dataset( + name="qcd_mu_pt1000toinf_pythia", + id=14783282, + processes=[procs.qcd_mu_pt1000toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=82, + n_events=15340005, + ), + ), +) + +# +# qcd_em +# + +cpn.add_dataset( + name="qcd_em_pt10to30_pythia", + id=14788948, + processes=[procs.qcd_em_pt10to30], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-10to30_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=12, + n_events=1024670, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt20to30_pythia", + id=14839068, + processes=[procs.qcd_em_pt20to30], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-20to30_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=20, + n_events=490689, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt30to50_pythia", + id=14790510, + processes=[procs.qcd_em_pt30to50], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-30to50_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=5, + n_events=1031074, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt50to80_pythia", + id=14790653, + processes=[procs.qcd_em_pt50to80], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-50to80_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=985509, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt170to300_pythia", + id=14790413, + processes=[procs.qcd_em_pt170to300], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-170to300_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=1073461, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt80to120_pythia", + id=14790458, + processes=[procs.qcd_em_pt80to120], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-80to120_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=1021976, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt120to170_pythia", + id=14790461, + processes=[procs.qcd_em_pt120to170], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-120to170_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=5, + n_events=1051454, + ), + ), +) +cpn.add_dataset( + name="qcd_em_pt300toinf_pythia", + id=14791448, + processes=[procs.qcd_em_pt300toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-300_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=979712, + ), + ), +) +# cpn.add_dataset( +# name="qcd_em_pt300toinf_pythia", +# id=14790517, +# processes=[procs.qcd_em_pt300toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/QCD_PT-300toInf_EMEnriched_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=5, +# n_events=842285, +# ), +# ), +# ) + +# +# qcd_bctoe +# + +cpn.add_dataset( + name="qcd_bctoe_pt15to20_pythia", + id=14788413, + processes=[procs.qcd_bctoe_pt15to20], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-15to20_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=10, + n_events=1031112, + ), + ), +) +cpn.add_dataset( + name="qcd_bctoe_pt20to30_pythia", + id=14790357, + processes=[procs.qcd_bctoe_pt20to30], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-20to30_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=1081911, + ), + ), +) +cpn.add_dataset( + name="qcd_bctoe_pt30to80_pythia", + id=14789857, + processes=[procs.qcd_bctoe_pt30to80], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-30to80_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=1064292, + ), + ), +) +cpn.add_dataset( + name="qcd_bctoe_pt80to170_pythia", + id=14790910, + processes=[procs.qcd_bctoe_pt80to170], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-80to170_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=7, + n_events=1054505, + ), + ), +) +cpn.add_dataset( + name="qcd_bctoe_pt170to250_pythia", + id=14791454, + processes=[procs.qcd_bctoe_pt170to250], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-170to250_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=6, + n_events=1074495, + ), + ), +) +cpn.add_dataset( + name="qcd_bctoe_pt250toinf_pythia", + id=14789426, + processes=[procs.qcd_bctoe_pt250toinf], + info=dict( + nominal=DatasetInfo( + keys=[ + "/QCD_PT-250_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=5, + n_events=1029902, + ), + ), +) +# cpn.add_dataset( +# name="qcd_bctoe_pt250toinf_pythia", +# id=14791904, +# processes=[procs.qcd_bctoe_pt250toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/QCD_PT-250toInf_bcToE_TuneCP5_13p6TeV_pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=6, +# n_events=879679, +# ), +# ), +# ) diff --git a/cmsdb/campaigns/run3_2023_postBPix_nano_v12/top.py b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/top.py new file mode 100644 index 00000000..77ffc5f5 --- /dev/null +++ b/cmsdb/campaigns/run3_2023_postBPix_nano_v12/top.py @@ -0,0 +1,798 @@ + +# coding: utf-8 + +"""" +top quark datasets for the run3_2023_postBPix_nano_v12 campaign. +""" + +from order import DatasetInfo + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2023_postBPix_nano_v12 import run3_2023_postBPix_nano_v12 as cpn + +# +# ttbar +# + +# cpn.add_dataset( +# name="tt_sl_9j_ht500toinf_powheg", +# id=14916723, +# processes=[procs.tt_sl_9j_ht500toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/TTtoLNu2Q_HT-500_NJet-9_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=71, +# n_events=1919279, +# ), +# hdamp_down=DatasetInfo( +# keys=[ +# "/TTtoLNu2Q_HT-500_NJet-9_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=78, +# n_events=1010179, +# ), +# hdamp_up=DatasetInfo( +# keys=[ +# "/TTtoLNu2Q_HT-500_NJet-9_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=65, +# n_events=988828, +# ), +# tune_up=DatasetInfo( +# keys=[ +# "/TTtoLNu2Q_HT-500_NJet-9_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=35, +# n_events=1111382, +# ), +# tune_down=DatasetInfo( +# keys=[ +# "/TTtoLNu2Q_HT-500_NJet-9_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=148, +# n_events=1010771, +# ), +# ), +# ) +# cpn.add_dataset( +# name="tt_dl_7j_ht500toinf_powheg", +# id=14917727, +# processes=[procs.tt_dl_7j_ht500toinf], +# info=dict( +# nominal=DatasetInfo( +# keys=[ +# "/TTto2L2Nu_HT-500_NJet-7_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa +# ], +# n_files=32, +# n_events=2023507, +# ), +# hdamp_up=DatasetInfo( +# keys=[ +# "/TTto2L2Nu_HT-500_NJet-7_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=31, +# n_events=965714, +# ), +# hdamp_down=DatasetInfo( +# keys=[ +# "/TTto2L2Nu_HT-500_NJet-7_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=39, +# n_events=1044835, +# ), +# tune_down=DatasetInfo( +# keys=[ +# "/TTto2L2Nu_HT-500_NJet-7_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=37, +# n_events=933911, +# ), +# tune_up=DatasetInfo( +# keys=[ +# "/TTto2L2Nu_HT-500_NJet-7_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa +# ], +# n_files=35, +# n_events=981780, +# ), +# ), +# ) +cpn.add_dataset( + name="tt_sl_powheg", + id=14808334, + processes=[procs.tt_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=492, + n_events=82058000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=307, + n_events=32916000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=218, + n_events=32046000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=281, + n_events=31781999, + ), + cr_2=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=183, + n_events=32436000, + ), + cr_1=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=200, + n_events=32406000, + ), + tune_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=348, + n_events=32130000, + ), + tune_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=247, + n_events=32910000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=184, + n_events=32640000, + ), + ), +) +cpn.add_dataset( + name="tt_dl_amcatnlo", + id=14837042, + processes=[procs.tt_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto2L2Nu-2Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=476, + n_events=46623781, + ), + ), +) +cpn.add_dataset( + name="tt_dl_powheg", + id=14835967, + processes=[procs.tt_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=150, + n_events=24649000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=83, + n_events=9913000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=69, + n_events=9640000, + ), + cr_2=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=65, + n_events=9997000, + ), + tune_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=56, + n_events=9745000, + ), + cr_1=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=94, + n_events=9763000, + ), + tune_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=55, + n_events=9766000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=54, + n_events=9871000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=94, + n_events=9880000, + ), + ), +) +cpn.add_dataset( + name="tt_fh_amcatnlo", + id=14885067, + processes=[procs.tt_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto4Q-2Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=697, + n_events=81363574, + ), + ), +) +cpn.add_dataset( + name="tt_fh_powheg", + id=14808891, + processes=[procs.tt_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=429, + n_events=53044000, + ), + cr_2=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v2/NANOAODSIM", # noqa + ], + n_files=92, + n_events=22919000, + ), + tune_up=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=234, + n_events=22961000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=206, + n_events=22466000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=198, + n_events=22100000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=270, + n_events=22289000, + ), + cr_1=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=202, + n_events=21865999, + ), + tune_down=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=281, + n_events=22961000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=242, + n_events=22886000, + ), + ), +) + +# +# single top, s-channel +# + +cpn.add_dataset( + name="st_schannel_t_lep_4f_amcatnlo", + id=14977863, + processes=[procs.st_schannel_t_lep], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TBbartoLplusNuBbar-s-channel-4FS_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=25, + n_events=1276000, + ), + ), +) +cpn.add_dataset( + name="st_schannel_tbar_lep_4f_amcatnlo", + id=14977873, + processes=[procs.st_schannel_tbar_lep], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarBtoLminusNuB-s-channel-4FS_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=21, + n_events=788000, + ), + ), +) + +# +# single top, t-channel +# + +cpn.add_dataset( + name="st_tchannel_t_4f_powheg", + id=15016893, + processes=[procs.st_tchannel_t], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TBbarQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=84, + n_events=2954000, + ), + ), +) +cpn.add_dataset( + name="st_tchannel_tbar_4f_powheg", + id=15018232, + processes=[procs.st_tchannel_tbar], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarBQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=58, + n_events=1488000, + ), + ), +) + +# +# single top, tW-channel +# +cpn.add_dataset( + name="st_twchannel_t_sl_powheg", + id=14812782, + processes=[procs.st_twchannel_t_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=42, + n_events=4952467, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=35, + n_events=5048960, + ), + tune_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=47, + n_events=5040352, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=75, + n_events=4888605, + ), + cr_2=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=94, + n_events=4955507, + ), + mtop_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=44, + n_events=5043341, + ), + mtop_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=60, + n_events=5114762, + ), + tune_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=42, + n_events=5169872, + ), + cr_1=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=77, + n_events=4959659, + ), + ), +) +cpn.add_dataset( + name="st_twchannel_t_fh_powheg", + id=14819392, + processes=[procs.st_twchannel_t_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=29, + n_events=3964000, + ), + cr_1=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=40, + n_events=3871000, + ), + tune_up=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=36, + n_events=3907000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TWminusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=38, + n_events=3937000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TWminusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=33, + n_events=3961000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TWminusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=42, + n_events=3940000, + ), + tune_down=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=38, + n_events=3835000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TWminusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=36, + n_events=3952000, + ), + cr_2=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v2-v3/NANOAODSIM", # noqa + ], + n_files=50, + n_events=3940000, + ), + ), +) +cpn.add_dataset( + name="st_twchannel_tbar_sl_powheg", + id=14928656, + processes=[procs.st_twchannel_tbar_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=41, + n_events=5177861, + ), + tune_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=51, + n_events=4688170, + ), + cr_2=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=44, + n_events=4787655, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=50, + n_events=4989681, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=36, + n_events=5003322, + ), + cr_1=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=45, + n_events=4959854, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=58, + n_events=4924253, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=47, + n_events=4769760, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=41, + n_events=4769064, + ), + ), +) +cpn.add_dataset( + name="st_twchannel_tbar_dl_powheg", + id=14930339, + processes=[procs.st_twchannel_tbar_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=50, + n_events=2488000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=37, + n_events=2449000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=30, + n_events=2488000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=32, + n_events=2479000, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=26, + n_events=2491000, + ), + cr_1=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=38, + n_events=2446000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=23, + n_events=2494000, + ), + cr_2=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=33, + n_events=2347000, + ), + tune_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=31, + n_events=2458000, + ), + ), +) +cpn.add_dataset( + name="st_twchannel_tbar_fh_powheg", + id=14928584, + processes=[procs.st_twchannel_tbar_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=37, + n_events=3967000, + ), + cr_1=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5CR1_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=27, + n_events=3961000, + ), + cr_2=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5CR2_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=38, + n_events=3913000, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=27, + n_events=3997000, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=33, + n_events=3991000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=48, + n_events=3958000, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=28, + n_events=3949000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=38, + n_events=3946000, + ), + ), +) + +# +# ttV(V) +# + +cpn.add_dataset( + name="ttzz_madgraph", + id=14937861, + processes=[procs.ttzz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTZZ_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=22, + n_events=992000, + ), + ), +) +cpn.add_dataset( + name="ttww_madgraph", + id=14931988, + processes=[procs.ttww], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTWW_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=74, + n_events=7288000, + ), + ), +) +cpn.add_dataset( + name="ttwz_madgraph", + id=14969073, + processes=[procs.ttwz], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTWZ_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer23BPixNanoAODv12-130X_mcRun3_2023_realistic_postBPix_v6-v2/NANOAODSIM", # noqa + ], + n_files=3, + n_events=497000, + ), + ), +)