From 01f99b36047f8d47bcca04a0496052ecfe0bf0e1 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 3 Jun 2024 14:05:58 +0200 Subject: [PATCH 01/42] Start run3_2022_postEE_nano_uhh_v12. --- .../run3_2022_preEE_nano_uhh_v12/__init__.py | 40 +++++++++++++++++ .../run3_2022_preEE_nano_uhh_v12/data.py | 44 +++++++++++++++++++ .../hh2bbtautau.py | 31 +++++++++++++ .../run3_2022_preEE_nano_uhh_v12/top.py | 28 ++++++++++++ 4 files changed, 143 insertions(+) create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py new file mode 100644 index 00000000..a663989c --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" +Common, analysis independent definition of the 2022 pre-EE data-taking campaign +with datasets at NanoAOD tier in version 12, privately created by UHH. The 'pre-EE' refers to data +take before part of the positive ECAL endcap (EE+) had to be shut down because of a water +leak inside the detector in 2022 (https://cms.cern/news/problems-and-solutions-ecal-leak-story). +A corresponding set of MC samples was produced to simulate the effect of the missing +endcap region. +""" + +from order import Campaign + + +# +# campaign +# + +campaign_run3_2022_postEE_nano_uhh_v12 = Campaign( + name="run3_2022_postEE_nano_uhh_v12", + id=320221203, + ecm=13.6, + bx=25, + aux={ + "tier": "NanoAOD", + "year": 2022, + "version": 12, + "custom": { + "name": "run3_2022_postEE_nano_uhh_v12", + "creator": "uhh", + "location": "davs://dcache-cms-webdav-wan.desy.de:2880/pnfs/desy.de/cms/tier2/store/user/nprouvos/nanogen_store/MergeNano/config_22pre_v12/prod3", # noqa + }, + }, +) + + +# trailing imports to load datasets +import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.data # noqa +import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.top # noqa +import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.hhh4b2tau # noqa diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py new file mode 100644 index 00000000..e95ffa3c --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -0,0 +1,44 @@ +# coding: utf-8 + +""" +Recorded datasets for the 2022 preEE data-taking campaign with datasets at NanoAOD tier in +version 12, created with custom content at UHH. +""" + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa + + +# +# Muon +# + +# TODO + + +# +# E/Gamma +# + +# TODO + + +# +# Tau +# + +cpn.add_dataset( + name="data_tau_d", + id=14783293, + is_data=True, + processes=[procs.data_tau], + keys=[ + "/Tau/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=28, + n_events=16_686_692, + aux={ + "nominal_merging_factor": 9, + "era": "D", + }, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py new file mode 100644 index 00000000..3eff524e --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -0,0 +1,31 @@ +# coding: utf-8 + +""" +HH -> bbtautau datasets for the 2022 preEE data-taking campaign with datasets at NanoAOD tier in +version 12, created with custom content at UHH. +""" + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa + + +# +# ggF -> H -> HH +# + +# SM +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c20", + id=14875846, + processes=[procs.hh_ggf_bbtautau], + # TODO: to be updated to this one once it is available + # processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=913_840, + aux={ + "nominal_merging_factor": 30, + }, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py new file mode 100644 index 00000000..416fc8aa --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -0,0 +1,28 @@ +# coding: utf-8 + +""" +Top quark related datasets for the 2022 preEE data-taking campaign with datasets at NanoAOD tier in +version 12, created with custom content at UHH. +""" + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa + + +# +# ttbar +# + +cpn.add_dataset( + name="tt_sl", + id=14791247, + processes=[procs.tt_sl], + keys=[ + "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=316, + n_events=89_455_475, + aux={ + "nominal_merging_factor": 5, + }, +) From 4cce3eb7718b5a56cb8a0674b8e7dfccd36f6071 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 3 Jun 2024 14:07:41 +0200 Subject: [PATCH 02/42] Typos. --- .../run3_2022_preEE_nano_uhh_v12/__init__.py | 12 ++++++------ cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py | 2 +- .../run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py | 2 +- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index a663989c..1b5fa428 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -16,8 +16,8 @@ # campaign # -campaign_run3_2022_postEE_nano_uhh_v12 = Campaign( - name="run3_2022_postEE_nano_uhh_v12", +campaign_run3_2022_preEE_nano_uhh_v12 = Campaign( + name="run3_2022_preEE_nano_uhh_v12", id=320221203, ecm=13.6, bx=25, @@ -26,7 +26,7 @@ "year": 2022, "version": 12, "custom": { - "name": "run3_2022_postEE_nano_uhh_v12", + "name": "run3_2022_preEE_nano_uhh_v12", "creator": "uhh", "location": "davs://dcache-cms-webdav-wan.desy.de:2880/pnfs/desy.de/cms/tier2/store/user/nprouvos/nanogen_store/MergeNano/config_22pre_v12/prod3", # noqa }, @@ -35,6 +35,6 @@ # trailing imports to load datasets -import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.data # noqa -import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.top # noqa -import cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12.hhh4b2tau # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.data # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.top # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.hhh4b2tau # noqa diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index e95ffa3c..c2fcc345 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -6,7 +6,7 @@ """ import cmsdb.processes as procs -from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa +from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn # noqa # diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py index 3eff524e..8dc573b0 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -6,7 +6,7 @@ """ import cmsdb.processes as procs -from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa +from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn # noqa # diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index 416fc8aa..4ee94bcc 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -6,7 +6,7 @@ """ import cmsdb.processes as procs -from cmsdb.campaigns.run3_2022_postEE_nano_uhh_v12 import campaign_run3_2022_postEE_nano_uhh_v12 as cpn # noqa +from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn # noqa # From aa14b6343c085709a725d99ecc1cc97c1c94df0b Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 3 Jun 2024 14:08:37 +0200 Subject: [PATCH 03/42] Typo. --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index 1b5fa428..57379bac 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -37,4 +37,4 @@ # trailing imports to load datasets import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.data # noqa import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.top # noqa -import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.hhh4b2tau # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.hh2bbtautau # noqa From 7a4db2a500e73a95de93181a0b09a4331c011a19 Mon Sep 17 00:00:00 2001 From: haddadanas Date: Mon, 3 Jun 2024 15:24:18 +0200 Subject: [PATCH 04/42] Added: xsec for 13.6 for ggf generator postfix for the names jec_era for data --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py | 1 + cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py | 1 + cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py | 2 +- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py | 2 +- cmsdb/processes/hh2bbtautau.py | 5 ++++- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index 57379bac..ab4aab70 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -24,6 +24,7 @@ aux={ "tier": "NanoAOD", "year": 2022, + "postfix": "pre", "version": 12, "custom": { "name": "run3_2022_preEE_nano_uhh_v12", diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index c2fcc345..6bd42b12 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -40,5 +40,6 @@ aux={ "nominal_merging_factor": 9, "era": "D", + "jec_era": "RunCD", }, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py index 8dc573b0..ff45da0d 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -15,7 +15,7 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20", + name="hh_ggf_hbb_htt_kl1_kt1_c20_powheg", id=14875846, processes=[procs.hh_ggf_bbtautau], # TODO: to be updated to this one once it is available diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index 4ee94bcc..bf1285ab 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -14,7 +14,7 @@ # cpn.add_dataset( - name="tt_sl", + name="tt_sl_powheg", id=14791247, processes=[procs.tt_sl], keys=[ diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 54d1d743..254041dc 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -79,7 +79,10 @@ name="hh_ggf_bbtautau", id=21100, label=r"$HH_{ggf} \rightarrow bb\tau\tau$", - xsecs={13: hh_ggf.get_xsec(13) * const.br_hh.bbtt}, # TODO + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: Number(0.1), + }, # TODO ) hh_ggf_bbtautau_node1 = hh_ggf.add_process( From 2e23eb770c64816e23cb4a75428cd3b367b13b9a Mon Sep 17 00:00:00 2001 From: Marcel Rieger Date: Mon, 3 Jun 2024 19:21:43 +0200 Subject: [PATCH 05/42] Add "run" to campaign aux. --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index ab4aab70..caafef64 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -23,6 +23,7 @@ bx=25, aux={ "tier": "NanoAOD", + "run": 3, "year": 2022, "postfix": "pre", "version": 12, From 6229d4cc2916d7398b27c5edb393bdae5b3b9cf1 Mon Sep 17 00:00:00 2001 From: Marcel Rieger Date: Tue, 4 Jun 2024 11:08:20 +0200 Subject: [PATCH 06/42] Add "run" aux entry to all campaigns. --- cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py | 1 + cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py | 1 + cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py | 1 + cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py | 1 + cmsdb/campaigns/run2_2017_nano_v9/__init__.py | 1 + cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py | 1 + cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py | 1 + cmsdb/campaigns/run2_2018_nano_v9/__init__.py | 7 ++++++- cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py | 1 + cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py | 1 + 10 files changed, 15 insertions(+), 1 deletion(-) diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py index 0b439403..17f26838 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2016, + "run": 2, "vfp": "pre", "version": 12, "custom": { diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py index 7f2bd7fc..10a0054d 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2016, + "run": 2, "version": 12, "vfp": "post", "custom": { diff --git a/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py b/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py index 08e6a449..eba3a5f8 100644 --- a/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py @@ -22,6 +22,7 @@ bx=25, aux={ "year": 2017, + "run": 2, "tier": "NanoAOD", "version": "9", }, diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py index d7aa3a12..9c8cac13 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2017, + "run": 2, "version": 11, "custom": { "name": "run2_2017_nano_uhh_v11", diff --git a/cmsdb/campaigns/run2_2017_nano_v9/__init__.py b/cmsdb/campaigns/run2_2017_nano_v9/__init__.py index 0c7bf828..bbf318fe 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/__init__.py @@ -23,6 +23,7 @@ aux={ "tier": "NanoAOD", "year": 2017, + "run": 2, "version": 9, }, ) diff --git a/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py b/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py index 6d0e76bc..8f35e082 100644 --- a/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py @@ -22,6 +22,7 @@ bx=25, aux={ "year": 2018, + "run": 2, "tier": "NanoAOD", "version": "9", }, diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py b/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py index 6a665f49..22723e23 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2018, + "run": 2, "version": 11, "custom": { "name": "run2_2018_nano_uhh_v11", diff --git a/cmsdb/campaigns/run2_2018_nano_v9/__init__.py b/cmsdb/campaigns/run2_2018_nano_v9/__init__.py index a132e8bf..fb1891c9 100644 --- a/cmsdb/campaigns/run2_2018_nano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2018_nano_v9/__init__.py @@ -22,7 +22,12 @@ id=220181, ecm=13, bx=25, - aux={"year": 2018, "tier": "NanoAOD", "version": "9"}, + aux={ + "year": 2018, + "tier": "NanoAOD", + "run": 2, + "version": "9", + }, ) diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py b/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py index 01743607..b2b48d53 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2022, + "run": 3, "version": 11, }, ) diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py index ad8cb400..e98a88a9 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py @@ -29,6 +29,7 @@ aux={ "tier": "NanoAOD", "year": 2022, + "run": 3, "version": 12, }, ) From 17549fc71571162264ee7a33e7c86241f450e63e Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Fri, 7 Jun 2024 12:38:21 +0200 Subject: [PATCH 07/42] add data and signal 2022pre uhh custom nanogen --- .../run3_2022_preEE_nano_uhh_v12/data.py | 118 ++- .../hh2bbtautau.py | 917 +++++++++++++++++- 2 files changed, 1030 insertions(+), 5 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index 6bd42b12..e55d0239 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -13,20 +13,97 @@ # Muon # -# TODO +cpn.add_dataset( + name="data_mu_c", + id=14784126, + is_data=True, + processes=[procs.data_mu], + keys=[ + "/Muon/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=177, + n_events=138_329_693, + aux={ + "nominal_merging_factor": 10, + "era": "C", + }, +) + +cpn.add_dataset( + name="data_mu_d", + id=14783356, + is_data=True, + processes=[procs.data_mu], + keys=[ + "/Muon/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=101, + n_events=75_440_027, + aux={ + "nominal_merging_factor": 10, + "era": "D", + }, +) # # E/Gamma # -# TODO +cpn.add_dataset( + name="data_e_c", + id=14784139, + is_data=True, + processes=[procs.data_e], + keys=[ + "/EGamma/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=373, + n_events=263_549_470, + aux={ + "nominal_merging_factor": 9, + "era": "C", + }, +) + +cpn.add_dataset( + name="data_e_d", + id=14783296, + is_data=True, + processes=[procs.data_e], + keys=[ + "/EGamma/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=136, + n_events=89_134_996, + aux={ + "nominal_merging_factor": 9, + "era": "D", + }, +) # # Tau # + +cpn.add_dataset( + name="data_tau_c", + id=14784152, + is_data=True, + processes=[procs.data_tau], + keys=[ + "/Tau/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=46, + n_events=25_903_135, + aux={ + "nominal_merging_factor": 8, + "era": "C", + }, +) + cpn.add_dataset( name="data_tau_d", id=14783293, @@ -43,3 +120,40 @@ "jec_era": "RunCD", }, ) + + +# +# Jet/MET +# + +cpn.add_dataset( + name="data_met_c", + id=14853683, + is_data=True, + processes=[procs.data_met], + keys=[ + "/JetMET/Run2022C-19Dec2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=359, + n_events=169_968_073, + aux={ + "nominal_merging_factor": 7, + "era": "C", + }, +) + +cpn.add_dataset( + name="data_met_d", + id=14853651, + is_data=True, + processes=[procs.data_met], + keys=[ + "/JetMET/Run2022D-19Dec2023_NanoAODv12UHH-v1/NANOAOD", # noqa + ], + n_files=224, + n_events=101_270_969, + aux={ + "nominal_merging_factor": 7, + "era": "D", + }, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py index ff45da0d..45d00d01 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -17,9 +17,7 @@ cpn.add_dataset( name="hh_ggf_hbb_htt_kl1_kt1_c20_powheg", id=14875846, - processes=[procs.hh_ggf_bbtautau], - # TODO: to be updated to this one once it is available - # processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -29,3 +27,916 @@ "nominal_merging_factor": 30, }, ) + +# different couplings +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl0_kt1_c20_powheg", + id=14796367, + processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c20], + keys=[ + "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_380, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl0_kt1_c21_powheg", + id=14802513, + processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c21], + keys=[ + "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-1p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_902, + aux={ + "nominal_merging_factor": 4, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c20p10_powheg", + id=14808587, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p10], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p10_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_551, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c20p35_powheg", + id=14802756, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p35], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p35_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_705, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c23_powheg", + id=14800332, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c23], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-3p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c2m2_powheg", + id=14797893, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c2m2], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-m2p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl2p45_kt1_c20_powheg", + id=14805257, + processes=[procs.hh_ggf_hbb_htt_kl2p45_kt1_c20], + keys=[ + "/GluGlutoHHto2B2Tau_kl-2p45_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=97_635, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl5_kt1_c20_powheg", + id=14803776, + processes=[procs.hh_ggf_hbb_htt_kl5_kt1_c20], + keys=[ + "/GluGlutoHHto2B2Tau_kl-5p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=99_647, + aux={ + "nominal_merging_factor": 2, + }, +) + + +# +# vbf -> H -> HH +# + +# SM +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v1_kl1_madgraph", + id=14790613, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl1], + keys=[ + "/VBFHHto2B2Tau_CV_1_C2V_1_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=981_154, + aux={ + "nominal_merging_factor": 9, + }, +) + +# different couplings + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v0_kl1_madgraph", + id=14792505, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v0_kl1], + keys=[ + "/VBFHHto2B2Tau_CV_1_C2V_0_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=988_736, + aux={ + "nominal_merging_factor": 8, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v1_kl2_madgraph", + id=14788949, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl2], + keys=[ + "/VBFHHto2B2Tau_CV-1_C2V-1_C3-2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v2_kl1_madgraph", + id=14805327, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v2_kl1], + keys=[ + "/VBFHHto2B2Tau_CV-1_C2V-2_C3-1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4_madgraph", + id=14870775, + processes=[procs.hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4], + keys=[ + "/VBFHHto2B2Tau_CV-1p74_C2V-1p37_C3-14p4_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=994_424, + aux={ + "nominal_merging_factor": 16, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2_madgraph", + id=14874480, + processes=[procs.hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2], + keys=[ + "/VBFHHto2B2Tau_CV-m0p012_C2V-0p030_C3-10p2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=994_967, + aux={ + "nominal_merging_factor": 17, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3_madgraph", + id=14878149, + processes=[procs.hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3], + keys=[ + "/VBFHHto2B2Tau_CV-m0p758_C2V-1p44_C3-m19p3_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=998_602, + aux={ + "nominal_merging_factor": 12, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43_madgraph", + id=14873950, + processes=[procs.hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43], + keys=[ + "/VBFHHto2B2Tau_CV-m0p962_C2V-0p959_C3-m1p43_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=996_515, + aux={ + "nominal_merging_factor": 16, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94_madgraph", + id=14876058, + processes=[procs.hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94], + keys=[ + "/VBFHHto2B2Tau_CV-m1p21_C2V-1p94_C3-m0p94_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=995_107, + aux={ + "nominal_merging_factor": 13, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36_madgraph", + id=14870882, + processes=[procs.hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36], + keys=[ + "/VBFHHto2B2Tau_CV-m1p60_C2V-2p72_C3-m1p36_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=995_824, + aux={ + "nominal_merging_factor": 15, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39_madgraph", + id=14961165, + processes=[procs.hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39], + keys=[ + "/VBFHHto2B2Tau_CV-m1p83_C2V-3p57_C3-m3p39_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=220_000, + aux={ + "nominal_merging_factor": 13, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96_madgraph", + id=14877633, + processes=[procs.hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96], + keys=[ + "/VBFHHto2B2Tau_CV-m2p12_C2V-3p87_C3-m5p96_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=979_120, + aux={ + "nominal_merging_factor": 16, + }, +) + +# +# ggf -> graviton -> HH +# + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m250_madgraph", + id=14856827, + processes=[procs.graviton_hh_ggf_hbb_htt_m250], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m260_madgraph", + id=14873688, + processes=[procs.graviton_hh_ggf_hbb_htt_m260], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=84_490, + aux={ + "nominal_merging_factor": 21, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m270_madgraph", + id=14858113, + processes=[procs.graviton_hh_ggf_hbb_htt_m270], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m280_madgraph", + id=14867634, + processes=[procs.graviton_hh_ggf_hbb_htt_m280], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 21, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m300_madgraph", + id=14867934, + processes=[procs.graviton_hh_ggf_hbb_htt_m300], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_304, + aux={ + "nominal_merging_factor": 21, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m350_madgraph", + id=14868051, + processes=[procs.graviton_hh_ggf_hbb_htt_m350], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_303, + aux={ + "nominal_merging_factor": 17, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m450_madgraph", + id=14857139, + processes=[procs.graviton_hh_ggf_hbb_htt_m450], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m550_madgraph", + id=14875152, + processes=[procs.graviton_hh_ggf_hbb_htt_m550], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_312, + aux={ + "nominal_merging_factor": 20, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m600_madgraph", + id=14858155, + processes=[procs.graviton_hh_ggf_hbb_htt_m600], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 8, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m650_madgraph", + id=14856595, + processes=[procs.graviton_hh_ggf_hbb_htt_m650], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m700_madgraph", + id=14872537, + processes=[procs.graviton_hh_ggf_hbb_htt_m700], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_310, + aux={ + "nominal_merging_factor": 20, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m800_madgraph", + id=14856808, + processes=[procs.graviton_hh_ggf_hbb_htt_m800], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", + id=14854546, + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1200_madgraph", + id=14872343, + processes=[procs.graviton_hh_ggf_hbb_htt_m1200], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_332, + aux={ + "nominal_merging_factor": 12, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1400_madgraph", + id=14856666, + processes=[procs.graviton_hh_ggf_hbb_htt_m1400], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1600_madgraph", + id=14856941, + processes=[procs.graviton_hh_ggf_hbb_htt_m1600], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 10, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1800_madgraph", + id=14858127, + processes=[procs.graviton_hh_ggf_hbb_htt_m1800], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", + id=14854608, + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", + id=14865095, + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 14, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", + id=14858129, + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m4000_madgraph", + id=14885096, + processes=[procs.graviton_hh_ggf_hbb_htt_m4000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_342, + aux={ + "nominal_merging_factor": 9, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m5000_madgraph", + id=14857131, + processes=[procs.graviton_hh_ggf_hbb_htt_m5000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 10, + }, +) + +# +# ggf -> radion -> HH +# + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m250_madgraph", + id=14857343, + processes=[procs.radion_hh_ggf_hbb_htt_m250], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=85_196, + aux={ + "nominal_merging_factor": 17, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m260_madgraph", + id=14856713, + processes=[procs.radion_hh_ggf_hbb_htt_m260], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_279, + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m270_madgraph", + id=14865091, + processes=[procs.radion_hh_ggf_hbb_htt_m270], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_298, + aux={ + "nominal_merging_factor": 17, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m280_madgraph", + id=14853129, + processes=[procs.radion_hh_ggf_hbb_htt_m280], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 19, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m300_madgraph", + id=14856618, + processes=[procs.radion_hh_ggf_hbb_htt_m300], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m350_madgraph", + id=14865104, + processes=[procs.radion_hh_ggf_hbb_htt_m350], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 16, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m450_madgraph", + id=14856872, + processes=[procs.radion_hh_ggf_hbb_htt_m450], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m550_madgraph", + id=14852999, + processes=[procs.radion_hh_ggf_hbb_htt_m550], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=85_915, + aux={ + "nominal_merging_factor": 16, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m600_madgraph", + id=14857113, + processes=[procs.radion_hh_ggf_hbb_htt_m600], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m650_madgraph", + id=14856968, + processes=[procs.radion_hh_ggf_hbb_htt_m650], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m700_madgraph", + id=14855971, + processes=[procs.radion_hh_ggf_hbb_htt_m700], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m800_madgraph", + id=14856917, + processes=[procs.radion_hh_ggf_hbb_htt_m800], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1000_madgraph", + id=14856932, + processes=[procs.radion_hh_ggf_hbb_htt_m1000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1200_madgraph", + id=14856857, + processes=[procs.radion_hh_ggf_hbb_htt_m1200], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 3, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1400_madgraph", + id=14856881, + processes=[procs.radion_hh_ggf_hbb_htt_m1400], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1600_madgraph", + id=14872393, + processes=[procs.radion_hh_ggf_hbb_htt_m1600], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_345, + aux={ + "nominal_merging_factor": 13, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1800_madgraph", + id=14856885, + processes=[procs.radion_hh_ggf_hbb_htt_m1800], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 2, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m2000_madgraph", + id=14854659, + processes=[procs.radion_hh_ggf_hbb_htt_m2000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 15, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m2500_madgraph", + id=14874111, + processes=[procs.radion_hh_ggf_hbb_htt_m2500], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 14, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m3000_madgraph", + id=14874977, + processes=[procs.radion_hh_ggf_hbb_htt_m3000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 17, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m4000_madgraph", + id=14856844, + processes=[procs.radion_hh_ggf_hbb_htt_m4000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 4, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m5000_madgraph", + id=14854551, + processes=[procs.radion_hh_ggf_hbb_htt_m5000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "nominal_merging_factor": 4, + }, +) From 6b1d84b0b4977be0a6315cc6ec52e65f1716bfc7 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Fri, 7 Jun 2024 13:34:16 +0200 Subject: [PATCH 08/42] add background 2022pre uhh custom nanogen --- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 195 ++++++ .../run3_2022_preEE_nano_uhh_v12/higgs.py | 194 ++++++ .../run3_2022_preEE_nano_uhh_v12/top.py | 615 +++++++++++++++++- 3 files changed, 1000 insertions(+), 4 deletions(-) create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py create mode 100644 cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py new file mode 100644 index 00000000..a4ce5365 --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -0,0 +1,195 @@ +# coding: utf-8 + +""" +Electroweak datasets for the 2022 preEE data-taking campaign with datasets at NanoAOD tier in +version 12, created with custom content at UHH. +""" + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn + + +# +# Drell-Yan +# +cpn.add_dataset( + name="dy_m4to10_amcatnlo", + id=14950079, + processes=[procs.dy_m4to10], + keys=[ + "/DYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=104, + n_events=99_060_810, + aux={ + "nominal_merging_factor": 19, + }, +) + +cpn.add_dataset( + name="dy_m10to50_amcatnlo", + id=14803896, + processes=[procs.dy_m10to50], + keys=[ + "/DYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/DYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v1/NANOAODSIM", # noqa + ], + n_files=78 + 56, + n_events=70_444_327 + 48_841_388, + aux={ + "nominal_merging_factor": 12, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_amcatnlo", + id=14796025, + processes=[procs.dy_m50toinf], + keys=[ + "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v1/NANOAODSIM", # noqa + "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext2-v2/NANOAODSIM", # noqa + ], + n_files=136 + 186 + 200, + n_events=72_913_933 + 100_280_322 + 103_042_871, + aux={ + "nominal_merging_factor": 9, + }, +) + +# +# W boson production +# + +# inclusive +cpn.add_dataset( + name="w_lnu_amcatnlo", + id=14803849, + processes=[procs.w_lnu], + keys=[ + "/WtoLNu-2Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=140, + n_events=87_502_461, + aux={ + "nominal_merging_factor": 8, + }, +) + +# +# Z boson production -> only weird samples like binned in pT and nJets available, not processed +# + +# +# EWK -> not available +# (vector boson emissions) +# + +# +# Di-boson +# + +# WW +cpn.add_dataset( + name="ww_pythia", + id=14800066, + processes=[procs.ww_pythia], + keys=[ + "/WW_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=30, + n_events=15_405_496, + aux={ + "nominal_merging_factor": 8, + }, +) + +# WZ +cpn.add_dataset( + name="wz_pythia", + id=14803893, + processes=[procs.wz_pythia], + keys=[ + "/WZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=7_527_043, + aux={ + "nominal_merging_factor": 10, + }, +) + +# ZZ +cpn.add_dataset( + name="zz_pythia", + id=14807788, + processes=[procs.zz_pythia], + keys=[ + "/ZZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=3, + n_events=1_181_750, + aux={ + "nominal_merging_factor": 11, + }, +) + +# +# Triple-boson +# + +cpn.add_dataset( + name="www_amcatnlo", + id=14797810, + processes=[procs.www], + keys=[ + "/WWW_4F_TuneCP5_13p6TeV_amcatnlo-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=450_000, + aux={ + "nominal_merging_factor": 13, + }, +) + +cpn.add_dataset( + name="wwz_amcatnlo", + id=14792468, + processes=[procs.wwz], + keys=[ + "/WWZ_4F_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=1_950_044, + aux={ + "nominal_merging_factor": 8, + }, +) + +cpn.add_dataset( + name="wzz_amcatnlo", + id=14792148, + processes=[procs.wzz], + keys=[ + "/WZZ_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=1_987_058, + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="zzz_amcatnlo", + id=14798395, + processes=[procs.zzz], + keys=[ + "/ZZZ_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=7, + n_events=1_970_234, + aux={ + "nominal_merging_factor": 8, + }, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py new file mode 100644 index 00000000..445b9a2a --- /dev/null +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py @@ -0,0 +1,194 @@ +# coding: utf-8 + +""" +Higgs datasets for the 2022 preEE data-taking campaign with datasets at NanoAOD tier in +version 12, created with custom content at UHH. +""" + +import cmsdb.processes as procs +from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn + + +# +# Single Higgs +# + +# ggf +cpn.add_dataset( + name="h_ggf_htt_powheg", + id=14802020, + processes=[procs.h_ggf_htt], + keys=[ + "/GluGluHToTauTau_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=295_722, + aux={ + "nominal_merging_factor": 16, + }, +) + +# vbf +cpn.add_dataset( + name="h_vbf_htt_powheg", + id=14792119, + processes=[procs.h_vbf_htt], + keys=[ + "/VBFHToTauTau_M125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=299_337, + aux={ + "nominal_merging_factor": 12, + }, +) + +# H radiation +cpn.add_dataset( + name="vh_hnonbb_amcatnlo", + id=14836666, + processes=[procs.vh_hnonbb], + keys=[ + "/VH_HtoNonbb_M-125_TuneCP5_13p6TeV_amcatnloFXFX-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=1, + n_events=147_250, + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="zh_zll_hbb_powheg", + id=14805330, + processes=[procs.zh_zll_hbb], + keys=[ + "/ZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/ZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=2 + 15, + n_events=599_100 + 4_363_648, + aux={ + "nominal_merging_factor": 20, + }, +) + +cpn.add_dataset( + name="zh_zqq_hbb_powheg", + id=14803771, + processes=[procs.zh_zqq_hbb], + keys=[ + "/ZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/ZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa + ], + n_files=4 + 10, + n_events=1_144_560 + 3_177_722, + aux={ + "nominal_merging_factor": 8, + }, +) + +cpn.add_dataset( + name="wmh_wlnu_hbb_powheg", + id=14805243, + processes=[procs.wmh_wlnu_hbb], + keys=[ + "/WminusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/WminusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=2 + 13, + n_events=590_044 + 4_400_000, + aux={ + "nominal_merging_factor": 12, + }, +) + +cpn.add_dataset( + name="wph_wlnu_hbb_powheg", + id=14802236, + processes=[procs.wph_wlnu_hbb], + keys=[ + "/WplusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/WplusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=2 + 13, + n_events=565_746 + 4_186_150, + aux={ + "nominal_merging_factor": 13, + }, +) + +# ggZH +cpn.add_dataset( + name="zh_gg_zll_hbb_powheg", + id=14801535, + processes=[procs.zh_gg_zll_hbb], + keys=[ + "/ggZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/ggZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa + ], + n_files=3 + 14, + n_events=582_250 + 3_782_190, + aux={ + "nominal_merging_factor": 9, + }, +) + +cpn.add_dataset( + name="zh_gg_znunu_hbb_powheg", + id=14805531, + processes=[procs.zh_gg_znunu_hbb], + keys=[ + "/ggZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/ggZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa + ], + n_files=2 + 11, + n_events=581_016 + 3_785_194, + aux={ + "nominal_merging_factor": 11, + }, +) + +cpn.add_dataset( + name="zh_gg_zqq_hbb_powheg", + id=14803209, + processes=[procs.zh_gg_zqq_hbb], + keys=[ + "/ggZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/ggZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa + ], + n_files=2 + 14, + n_events=578_672 + 3_796_788, + aux={ + "nominal_merging_factor": 13, + }, +) + +# ttH +cpn.add_dataset( + name="tth_hbb_powheg", + id=14857728, + processes=[procs.tth_hbb], + keys=[ + "/TTHto2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=16, + n_events=3_180_918, + aux={ + "nominal_merging_factor": 8, + }, +) + +cpn.add_dataset( + name="tth_hnonbb_powheg", + id=14849148, + processes=[procs.tth_hnonbb], + keys=[ + "/TTHtoNon2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa + ], + n_files=20, + n_events=3_958_795, + aux={ + "nominal_merging_factor": 8, + }, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index bf1285ab..4c5be671 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -5,6 +5,8 @@ version 12, created with custom content at UHH. """ +from order import DatasetInfo + import cmsdb.processes as procs from cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12 import campaign_run3_2022_preEE_nano_uhh_v12 as cpn # noqa @@ -17,12 +19,617 @@ name="tt_sl_powheg", id=14791247, processes=[procs.tt_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=316 + 306, + n_events=89_455_475 + 77_002_090, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=116, + n_events=32_008_786, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=93, + n_events=31_628_880, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=122, + n_events=32_577_200, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=100, + n_events=31_244_178, + ), + tune_down=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=113, + n_events=32_337_000, + ), + tune_up=DatasetInfo( + keys=[ + "/TTtoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=94, + n_events=31_647_140, + ), + ), + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="tt_dl_powheg", + id=14803338, + processes=[procs.tt_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TTto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=86 + 91, + n_events=23_802_613 + 24_084_800, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=36, + n_events=9_793_943, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=33, + n_events=9_795_550, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=35, + n_events=9_728_780, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=35, + n_events=9_410_032, + ), + tune_down=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=32, + n_events=9_891_000, + ), + tune_up=DatasetInfo( + keys=[ + "/TTto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=37, + n_events=9_793_728, + ), + ), + aux={ + "nominal_merging_factor": 5, + }, +) + +cpn.add_dataset( + name="tt_fh_powheg", + id=14808369, + processes=[procs.tt_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TTto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=210 + 215, + n_events=53_475_524 + 52_573_597, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TTto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=82, + n_events=23_150_671, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TTto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=78, + n_events=21_580_076, + ), + mtop_down=DatasetInfo( + keys=[ + "/TTto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=93, + n_events=23_170_000, + ), + mtop_up=DatasetInfo( + keys=[ + "/TTto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=80, + n_events=22_750_854, + ), + tune_down=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=77, + n_events=22_159_608, + ), + tune_up=DatasetInfo( + keys=[ + "/TTto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=81, + n_events=22_414_958, + ), + ), + aux={ + "nominal_merging_factor": 6, + }, +) + +# +# ttbar + 1 vector boson -> not available +# + +# +# ttbar + 2 vector boson +# + +cpn.add_dataset( + name="ttww_madgraph", + id=14792013, + processes=[procs.ttww], keys=[ - "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TTWW_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=316, - n_events=89_455_475, + n_files=3, + n_events=450_000, aux={ - "nominal_merging_factor": 5, + "nominal_merging_factor": 10, + }, +) + +cpn.add_dataset( + name="ttzz_madgraph", + id=14796051, + processes=[procs.ttzz], + keys=[ + "/TTZZ_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=3, + n_events=443_238, + aux={ + "nominal_merging_factor": 9, + }, +) + +# +# single top +# + +# no variations available +cpn.add_dataset( + name="st_tchannel_tbar_powheg", + id=14803988, + processes=[procs.st_tchannel_tbar], + keys=[ + "/TbarBQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=1_433_215, + aux={ + "nominal_merging_factor": 12, + }, +) + +# no variations available +cpn.add_dataset( + name="st_tchannel_t_powheg", + id=14801389, + processes=[procs.st_tchannel_t], + keys=[ + "/TBbarQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_973_675, + aux={ + "nominal_merging_factor": 9, + }, +) + +cpn.add_dataset( + name="st_twchannel_tbar_dl_powheg", + id=14791318, + processes=[procs.st_twchannel_tbar_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TbarWplusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=8 + 8, + n_events=2_465_972 + 2_435_737, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_499_291, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=2_436_721, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_524_255, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_497_188, + ), + tune_down=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=2_363_085, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplusto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_536_835, + ), + ), + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="st_twchannel_tbar_fh_powheg", + id=14790862, + processes=[procs.st_twchannel_tbar_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TbarWplusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=13 + 15, + n_events=3_762_952 + 4_000_000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=3_963_854, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=13, + n_events=3_895_220, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=3_938_484, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=13, + n_events=3_898_600, + ), + tune_down=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=3_971_608, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=3_920_656, + ), + ), + aux={ + "nominal_merging_factor": 6, + }, +) + +cpn.add_dataset( + name="st_twchannel_tbar_sl_powheg", + id=14791094, + processes=[procs.st_twchannel_tbar_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TbarWplustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=15 + 17, + n_events=4_407_845 + 4_816_562, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=4_930_632, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=4_865_573, + ), + mtop_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=5_133_770, + ), + mtop_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=4_995_477, + ), + tune_down=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=4_659_748, + ), + tune_up=DatasetInfo( + keys=[ + "/TbarWplustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=4_661_358, + ), + ), + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="st_twchannel_t_dl_powheg", + id=14805970, + processes=[procs.st_twchannel_t_dl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TWminusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=8 + 9, + n_events=2_387_056 + 2_500_000, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_501_382, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_538_826, + ), + mtop_down=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_513_281, + ), + mtop_up=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=9, + n_events=2_497_924, + ), + tune_down=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=2_361_903, + ), + tune_up=DatasetInfo( + keys=[ + "/TWminusto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=2_375_416, + ), + ), + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="st_twchannel_t_fh_powheg", + id=14791162, + processes=[procs.st_twchannel_t_fh], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TWminusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=14 + 14, + n_events=3_862_005 + 3_909_550, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TWminusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=3_976_914, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TWminusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=3_916_606, + ), + mtop_down=DatasetInfo( + keys=[ + "/TWminusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=4_020_863, + ), + mtop_up=DatasetInfo( + keys=[ + "/TWminusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=13, + n_events=3_870_500, + ), + tune_down=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=14, + n_events=3_793_280, + ), + tune_up=DatasetInfo( + keys=[ + "/TWminusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=13, + n_events=3_853_959, + ), + ), + aux={ + "nominal_merging_factor": 7, + }, +) + +cpn.add_dataset( + name="st_twchannel_t_sl_powheg", + id=14798336, + processes=[procs.st_twchannel_t_sl], + info=dict( + nominal=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + "/TWminustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa + ], + n_files=16 + 18, + n_events=4_743_971 + 4_900_350, + ), + hdamp_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=4_903_597, + ), + hdamp_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=16, + n_events=4_801_624, + ), + mtop_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=4_904_011, + ), + mtop_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=15, + n_events=4_522_843, + ), + tune_down=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=17, + n_events=5_090_154, + ), + tune_up=DatasetInfo( + keys=[ + "/TWminustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=18, + n_events=4_902_158, + ), + ), + aux={ + "nominal_merging_factor": 8, }, ) From 98553e35b11baec429319a1f3097ef41bdc03f6e Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Fri, 7 Jun 2024 15:19:53 +0200 Subject: [PATCH 09/42] change process names hh2bbtautau --- .../hh2bbtautau.py | 500 ++++++------- .../run2_2016_nano_uhh_v12/hh2bbtautau.py | 452 ++++++------ .../run2_2017_nano_uhh_v11/hh2bbtautau.py | 452 ++++++------ .../run2_2017_nano_v9/hh2bbtautau.py | 452 ++++++------ .../run2_2018_nano_uhh_v12/hh2bbtautau.py | 452 ++++++------ cmsdb/processes/hh2bbtautau.py | 698 +++++++++--------- 6 files changed, 1513 insertions(+), 1493 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py index fc3a795e..f168f1e9 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py @@ -15,9 +15,9 @@ # ggF -> H -> HH cpn.add_dataset( - name="hh_ggf_bbtautau_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", id=14335916, - processes=[procs.hh_ggf_bbtautau], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -26,9 +26,9 @@ ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node10_madgraph", +# name="hh_ggf_hbb_htt_node10_madgraph", # id=14355626, -# processes=[procs.hh_ggf_bbtautau_node10], +# processes=[procs.hh_ggf_hbb_htt_node10], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_10_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -37,9 +37,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node6_madgraph", +# name="hh_ggf_hbb_htt_node6_madgraph", # id=14347302, -# processes=[procs.hh_ggf_bbtautau_node6], +# processes=[procs.hh_ggf_hbb_htt_node6], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_6_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -48,9 +48,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node9_madgraph", +# name="hh_ggf_hbb_htt_node9_madgraph", # id=14359169, -# processes=[procs.hh_ggf_bbtautau_node9], +# processes=[procs.hh_ggf_hbb_htt_node9], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_9_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -59,9 +59,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node11_madgraph", +# name="hh_ggf_hbb_htt_node11_madgraph", # id=14351156, -# processes=[procs.hh_ggf_bbtautau_node11], +# processes=[procs.hh_ggf_hbb_htt_node11], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_11_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -70,9 +70,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node2_madgraph", +# name="hh_ggf_hbb_htt_node2_madgraph", # id=14342671, -# processes=[procs.hh_ggf_bbtautau_node2], +# processes=[procs.hh_ggf_hbb_htt_node2], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_2_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -81,9 +81,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node8_madgraph", +# name="hh_ggf_hbb_htt_node8_madgraph", # id=14343392, -# processes=[procs.hh_ggf_bbtautau_node8], +# processes=[procs.hh_ggf_hbb_htt_node8], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_8_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -92,9 +92,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node4_madgraph", +# name="hh_ggf_hbb_htt_node4_madgraph", # id=14363921, -# processes=[procs.hh_ggf_bbtautau_node4], +# processes=[procs.hh_ggf_hbb_htt_node4], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_4_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -103,9 +103,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node5_madgraph", +# name="hh_ggf_hbb_htt_node5_madgraph", # id=14359164, -# processes=[procs.hh_ggf_bbtautau_node5], +# processes=[procs.hh_ggf_hbb_htt_node5], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_5_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -114,9 +114,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node7_madgraph", +# name="hh_ggf_hbb_htt_node7_madgraph", # id=14358610, -# processes=[procs.hh_ggf_bbtautau_node7], +# processes=[procs.hh_ggf_hbb_htt_node7], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_7_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -125,9 +125,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node1_madgraph", +# name="hh_ggf_hbb_htt_node1_madgraph", # id=14349843, -# processes=[procs.hh_ggf_bbtautau_node1], +# processes=[procs.hh_ggf_hbb_htt_node1], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_1_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -136,9 +136,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node12_madgraph", +# name="hh_ggf_hbb_htt_node12_madgraph", # id=14332443, -# processes=[procs.hh_ggf_bbtautau_node12], +# processes=[procs.hh_ggf_hbb_htt_node12], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_12_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -147,9 +147,9 @@ # ) # cpn.add_dataset( -# name="hh_ggf_bbtautau_node3_madgraph", +# name="hh_ggf_hbb_htt_node3_madgraph", # id=14351327, -# processes=[procs.hh_ggf_bbtautau_node3], +# processes=[procs.hh_ggf_hbb_htt_node3], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_3_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -164,9 +164,9 @@ # ggF -> radion -> HH cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m700_madgraph", + name="radion_hh_ggf_hbb_htt_m700_madgraph", id=14346431, - processes=[procs.radion_hh_ggf_bbtautau_m700], + processes=[procs.radion_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -175,9 +175,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m450_madgraph", + name="radion_hh_ggf_hbb_htt_m450_madgraph", id=14346648, - processes=[procs.radion_hh_ggf_bbtautau_m450], + processes=[procs.radion_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -186,9 +186,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m300_madgraph", + name="radion_hh_ggf_hbb_htt_m300_madgraph", id=14346436, - processes=[procs.radion_hh_ggf_bbtautau_m300], + processes=[procs.radion_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -197,9 +197,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m350_madgraph", + name="radion_hh_ggf_hbb_htt_m350_madgraph", id=14346867, - processes=[procs.radion_hh_ggf_bbtautau_m350], + processes=[procs.radion_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -208,9 +208,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m750_madgraph", + name="radion_hh_ggf_hbb_htt_m750_madgraph", id=14346824, - processes=[procs.radion_hh_ggf_bbtautau_m750], + processes=[procs.radion_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -219,9 +219,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m800_madgraph", + name="radion_hh_ggf_hbb_htt_m800_madgraph", id=14346661, - processes=[procs.radion_hh_ggf_bbtautau_m800], + processes=[procs.radion_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -230,9 +230,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m3000_madgraph", + name="radion_hh_ggf_hbb_htt_m3000_madgraph", id=14346643, - processes=[procs.radion_hh_ggf_bbtautau_m3000], + processes=[procs.radion_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -241,9 +241,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m650_madgraph", + name="radion_hh_ggf_hbb_htt_m650_madgraph", id=14347450, - processes=[procs.radion_hh_ggf_bbtautau_m650], + processes=[procs.radion_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -252,9 +252,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m600_madgraph", + name="radion_hh_ggf_hbb_htt_m600_madgraph", id=14346396, - processes=[procs.radion_hh_ggf_bbtautau_m600], + processes=[procs.radion_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -263,9 +263,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m400_madgraph", + name="radion_hh_ggf_hbb_htt_m400_madgraph", id=14346575, - processes=[procs.radion_hh_ggf_bbtautau_m400], + processes=[procs.radion_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -274,9 +274,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m280_madgraph", + name="radion_hh_ggf_hbb_htt_m280_madgraph", id=14357712, - processes=[procs.radion_hh_ggf_bbtautau_m280], + processes=[procs.radion_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -285,9 +285,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m850_madgraph", + name="radion_hh_ggf_hbb_htt_m850_madgraph", id=14346515, - processes=[procs.radion_hh_ggf_bbtautau_m850], + processes=[procs.radion_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -296,9 +296,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m900_madgraph", + name="radion_hh_ggf_hbb_htt_m900_madgraph", id=14346497, - processes=[procs.radion_hh_ggf_bbtautau_m900], + processes=[procs.radion_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -307,9 +307,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m500_madgraph", + name="radion_hh_ggf_hbb_htt_m500_madgraph", id=14346666, - processes=[procs.radion_hh_ggf_bbtautau_m500], + processes=[procs.radion_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -318,9 +318,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m320_madgraph", + name="radion_hh_ggf_hbb_htt_m320_madgraph", id=14346716, - processes=[procs.radion_hh_ggf_bbtautau_m320], + processes=[procs.radion_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -329,9 +329,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m550_madgraph", + name="radion_hh_ggf_hbb_htt_m550_madgraph", id=14346591, - processes=[procs.radion_hh_ggf_bbtautau_m550], + processes=[procs.radion_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -340,9 +340,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m270_madgraph", + name="radion_hh_ggf_hbb_htt_m270_madgraph", id=14346791, - processes=[procs.radion_hh_ggf_bbtautau_m270], + processes=[procs.radion_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -351,9 +351,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m260_madgraph", + name="radion_hh_ggf_hbb_htt_m260_madgraph", id=14346788, - processes=[procs.radion_hh_ggf_bbtautau_m260], + processes=[procs.radion_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -362,9 +362,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2500_madgraph", + name="radion_hh_ggf_hbb_htt_m2500_madgraph", id=14346427, - processes=[procs.radion_hh_ggf_bbtautau_m2500], + processes=[procs.radion_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -373,9 +373,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m250_madgraph", + name="radion_hh_ggf_hbb_htt_m250_madgraph", id=14346555, - processes=[procs.radion_hh_ggf_bbtautau_m250], + processes=[procs.radion_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -384,9 +384,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2000_madgraph", + name="radion_hh_ggf_hbb_htt_m2000_madgraph", id=14346581, - processes=[procs.radion_hh_ggf_bbtautau_m2000], + processes=[procs.radion_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -395,9 +395,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1750_madgraph", + name="radion_hh_ggf_hbb_htt_m1750_madgraph", id=14346610, - processes=[procs.radion_hh_ggf_bbtautau_m1750], + processes=[procs.radion_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -406,9 +406,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1500_madgraph", + name="radion_hh_ggf_hbb_htt_m1500_madgraph", id=14346361, - processes=[procs.radion_hh_ggf_bbtautau_m1500], + processes=[procs.radion_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -417,9 +417,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1250_madgraph", + name="radion_hh_ggf_hbb_htt_m1250_madgraph", id=14646635, - processes=[procs.radion_hh_ggf_bbtautau_m1250], + processes=[procs.radion_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -428,9 +428,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1000_madgraph", + name="radion_hh_ggf_hbb_htt_m1000_madgraph", id=14346516, - processes=[procs.radion_hh_ggf_bbtautau_m1000], + processes=[procs.radion_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -439,9 +439,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1100_madgraph", + name="radion_hh_ggf_hbb_htt_m1100_madgraph", id=14411934, - processes=[procs.radion_hh_ggf_bbtautau_m1100], + processes=[procs.radion_hh_ggf_hbb_htt_m1100], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1100_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -450,9 +450,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1200_madgraph", + name="radion_hh_ggf_hbb_htt_m1200_madgraph", id=14419410, - processes=[procs.radion_hh_ggf_bbtautau_m1200], + processes=[procs.radion_hh_ggf_hbb_htt_m1200], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1200_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -461,9 +461,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1300_madgraph", + name="radion_hh_ggf_hbb_htt_m1300_madgraph", id=14412110, - processes=[procs.radion_hh_ggf_bbtautau_m1300], + processes=[procs.radion_hh_ggf_hbb_htt_m1300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -472,9 +472,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1400_madgraph", + name="radion_hh_ggf_hbb_htt_m1400_madgraph", id=14397712, - processes=[procs.radion_hh_ggf_bbtautau_m1400], + processes=[procs.radion_hh_ggf_hbb_htt_m1400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -483,9 +483,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1600_madgraph", + name="radion_hh_ggf_hbb_htt_m1600_madgraph", id=14413443, - processes=[procs.radion_hh_ggf_bbtautau_m1600], + processes=[procs.radion_hh_ggf_hbb_htt_m1600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -494,9 +494,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1700_madgraph", + name="radion_hh_ggf_hbb_htt_m1700_madgraph", id=14419235, - processes=[procs.radion_hh_ggf_bbtautau_m1700], + processes=[procs.radion_hh_ggf_hbb_htt_m1700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -505,9 +505,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1800_madgraph", + name="radion_hh_ggf_hbb_htt_m1800_madgraph", id=14391871, - processes=[procs.radion_hh_ggf_bbtautau_m1800], + processes=[procs.radion_hh_ggf_hbb_htt_m1800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -516,9 +516,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1900_madgraph", + name="radion_hh_ggf_hbb_htt_m1900_madgraph", id=14395552, - processes=[procs.radion_hh_ggf_bbtautau_m1900], + processes=[procs.radion_hh_ggf_hbb_htt_m1900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -527,9 +527,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2200_madgraph", + name="radion_hh_ggf_hbb_htt_m2200_madgraph", id=14414886, - processes=[procs.radion_hh_ggf_bbtautau_m2200], + processes=[procs.radion_hh_ggf_hbb_htt_m2200], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2200_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -538,9 +538,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2400_madgraph", + name="radion_hh_ggf_hbb_htt_m2400_madgraph", id=14397821, - processes=[procs.radion_hh_ggf_bbtautau_m2400], + processes=[procs.radion_hh_ggf_hbb_htt_m2400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v4/NANOAODSIM", # noqa ], @@ -549,9 +549,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2600_madgraph", + name="radion_hh_ggf_hbb_htt_m2600_madgraph", id=14397727, - processes=[procs.radion_hh_ggf_bbtautau_m2600], + processes=[procs.radion_hh_ggf_hbb_htt_m2600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v3/NANOAODSIM", # noqa ], @@ -560,9 +560,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2800_madgraph", + name="radion_hh_ggf_hbb_htt_m2800_madgraph", id=14396084, - processes=[procs.radion_hh_ggf_bbtautau_m2800], + processes=[procs.radion_hh_ggf_hbb_htt_m2800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v4/NANOAODSIM", # noqa ], @@ -574,9 +574,9 @@ # ggF -> graviton -> HH cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m900_madgraph", + name="graviton_hh_ggf_hbb_htt_m900_madgraph", id=14346388, - processes=[procs.graviton_hh_ggf_bbtautau_m900], + processes=[procs.graviton_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -585,9 +585,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m850_madgraph", + name="graviton_hh_ggf_hbb_htt_m850_madgraph", id=14346601, - processes=[procs.graviton_hh_ggf_bbtautau_m850], + processes=[procs.graviton_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -596,9 +596,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m800_madgraph", + name="graviton_hh_ggf_hbb_htt_m800_madgraph", id=14346568, - processes=[procs.graviton_hh_ggf_bbtautau_m800], + processes=[procs.graviton_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -607,9 +607,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m750_madgraph", + name="graviton_hh_ggf_hbb_htt_m750_madgraph", id=14346412, - processes=[procs.graviton_hh_ggf_bbtautau_m750], + processes=[procs.graviton_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -618,9 +618,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m700_madgraph", + name="graviton_hh_ggf_hbb_htt_m700_madgraph", id=14346469, - processes=[procs.graviton_hh_ggf_bbtautau_m700], + processes=[procs.graviton_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -629,9 +629,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m650_madgraph", + name="graviton_hh_ggf_hbb_htt_m650_madgraph", id=14346723, - processes=[procs.graviton_hh_ggf_bbtautau_m650], + processes=[procs.graviton_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -640,9 +640,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m600_madgraph", + name="graviton_hh_ggf_hbb_htt_m600_madgraph", id=14346637, - processes=[procs.graviton_hh_ggf_bbtautau_m600], + processes=[procs.graviton_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -651,9 +651,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m550_madgraph", + name="graviton_hh_ggf_hbb_htt_m550_madgraph", id=14346640, - processes=[procs.graviton_hh_ggf_bbtautau_m550], + processes=[procs.graviton_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -662,9 +662,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m500_madgraph", + name="graviton_hh_ggf_hbb_htt_m500_madgraph", id=14346606, - processes=[procs.graviton_hh_ggf_bbtautau_m500], + processes=[procs.graviton_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -673,9 +673,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m450_madgraph", + name="graviton_hh_ggf_hbb_htt_m450_madgraph", id=14346556, - processes=[procs.graviton_hh_ggf_bbtautau_m450], + processes=[procs.graviton_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -684,9 +684,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m400_madgraph", + name="graviton_hh_ggf_hbb_htt_m400_madgraph", id=14346409, - processes=[procs.graviton_hh_ggf_bbtautau_m400], + processes=[procs.graviton_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -695,9 +695,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m350_madgraph", + name="graviton_hh_ggf_hbb_htt_m350_madgraph", id=14346554, - processes=[procs.graviton_hh_ggf_bbtautau_m350], + processes=[procs.graviton_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -706,9 +706,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m320_madgraph", + name="graviton_hh_ggf_hbb_htt_m320_madgraph", id=14346528, - processes=[procs.graviton_hh_ggf_bbtautau_m320], + processes=[procs.graviton_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -717,9 +717,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m3000_madgraph", + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", id=14346475, - processes=[procs.graviton_hh_ggf_bbtautau_m3000], + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -728,9 +728,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m300_madgraph", + name="graviton_hh_ggf_hbb_htt_m300_madgraph", id=14346580, - processes=[procs.graviton_hh_ggf_bbtautau_m300], + processes=[procs.graviton_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -739,9 +739,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m280_madgraph", + name="graviton_hh_ggf_hbb_htt_m280_madgraph", id=14346410, - processes=[procs.graviton_hh_ggf_bbtautau_m280], + processes=[procs.graviton_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -750,9 +750,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m270_madgraph", + name="graviton_hh_ggf_hbb_htt_m270_madgraph", id=14346718, - processes=[procs.graviton_hh_ggf_bbtautau_m270], + processes=[procs.graviton_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -761,9 +761,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m260_madgraph", + name="graviton_hh_ggf_hbb_htt_m260_madgraph", id=14346710, - processes=[procs.graviton_hh_ggf_bbtautau_m260], + processes=[procs.graviton_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -772,9 +772,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m250_madgraph", + name="graviton_hh_ggf_hbb_htt_m250_madgraph", id=14346628, - processes=[procs.graviton_hh_ggf_bbtautau_m250], + processes=[procs.graviton_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -783,9 +783,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2500_madgraph", + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", id=14346511, - processes=[procs.graviton_hh_ggf_bbtautau_m2500], + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -794,9 +794,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2000_madgraph", + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", id=14346848, - processes=[procs.graviton_hh_ggf_bbtautau_m2000], + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -805,9 +805,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1750_madgraph", + name="graviton_hh_ggf_hbb_htt_m1750_madgraph", id=14347595, - processes=[procs.graviton_hh_ggf_bbtautau_m1750], + processes=[procs.graviton_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -816,9 +816,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1500_madgraph", + name="graviton_hh_ggf_hbb_htt_m1500_madgraph", id=14346362, - processes=[procs.graviton_hh_ggf_bbtautau_m1500], + processes=[procs.graviton_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -827,9 +827,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1250_madgraph", + name="graviton_hh_ggf_hbb_htt_m1250_madgraph", id=14346454, - processes=[procs.graviton_hh_ggf_bbtautau_m1250], + processes=[procs.graviton_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -838,9 +838,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1000_madgraph", + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", id=14346419, - processes=[procs.graviton_hh_ggf_bbtautau_m1000], + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -851,9 +851,9 @@ # VBF -> radion -> HH # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m500_madgraph", +# name="radion_hh_vbf_hbb_htt_m500_madgraph", # id=14311131, -# processes=[procs.radion_hh_vbf_bbtautau_m500], +# processes=[procs.radion_hh_vbf_hbb_htt_m500], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -862,9 +862,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m320_madgraph", +# name="radion_hh_vbf_hbb_htt_m320_madgraph", # id=14310796, -# processes=[procs.radion_hh_vbf_bbtautau_m320], +# processes=[procs.radion_hh_vbf_hbb_htt_m320], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -873,9 +873,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m400_madgraph", +# name="radion_hh_vbf_hbb_htt_m400_madgraph", # id=14311092, -# processes=[procs.radion_hh_vbf_bbtautau_m400], +# processes=[procs.radion_hh_vbf_hbb_htt_m400], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -884,9 +884,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m450_madgraph", +# name="radion_hh_vbf_hbb_htt_m450_madgraph", # id=14310489, -# processes=[procs.radion_hh_vbf_bbtautau_m450], +# processes=[procs.radion_hh_vbf_hbb_htt_m450], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -895,9 +895,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m650_madgraph", +# name="radion_hh_vbf_hbb_htt_m650_madgraph", # id=14310467, -# processes=[procs.radion_hh_vbf_bbtautau_m650], +# processes=[procs.radion_hh_vbf_hbb_htt_m650], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -906,9 +906,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m600_madgraph", +# name="radion_hh_vbf_hbb_htt_m600_madgraph", # id=14309147, -# processes=[procs.radion_hh_vbf_bbtautau_m600], +# processes=[procs.radion_hh_vbf_hbb_htt_m600], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -917,9 +917,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m260_madgraph", +# name="radion_hh_vbf_hbb_htt_m260_madgraph", # id=14310633, -# processes=[procs.radion_hh_vbf_bbtautau_m260], +# processes=[procs.radion_hh_vbf_hbb_htt_m260], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -928,9 +928,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m3000_madgraph", +# name="radion_hh_vbf_hbb_htt_m3000_madgraph", # id=14311354, -# processes=[procs.radion_hh_vbf_bbtautau_m3000], +# processes=[procs.radion_hh_vbf_hbb_htt_m3000], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -939,9 +939,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m550_madgraph", +# name="radion_hh_vbf_hbb_htt_m550_madgraph", # id=14310820, -# processes=[procs.radion_hh_vbf_bbtautau_m550], +# processes=[procs.radion_hh_vbf_hbb_htt_m550], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -950,9 +950,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m1500_madgraph", +# name="radion_hh_vbf_hbb_htt_m1500_madgraph", # id=14310564, -# processes=[procs.radion_hh_vbf_bbtautau_m1500], +# processes=[procs.radion_hh_vbf_hbb_htt_m1500], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -961,9 +961,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m250_madgraph", +# name="radion_hh_vbf_hbb_htt_m250_madgraph", # id=14311026, -# processes=[procs.radion_hh_vbf_bbtautau_m250], +# processes=[procs.radion_hh_vbf_hbb_htt_m250], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -972,9 +972,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m800_madgraph", +# name="radion_hh_vbf_hbb_htt_m800_madgraph", # id=14310585, -# processes=[procs.radion_hh_vbf_bbtautau_m800], +# processes=[procs.radion_hh_vbf_hbb_htt_m800], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -983,9 +983,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m300_madgraph", +# name="radion_hh_vbf_hbb_htt_m300_madgraph", # id=14309129, -# processes=[procs.radion_hh_vbf_bbtautau_m300], +# processes=[procs.radion_hh_vbf_hbb_htt_m300], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -994,9 +994,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m350_madgraph", +# name="radion_hh_vbf_hbb_htt_m350_madgraph", # id=14310922, -# processes=[procs.radion_hh_vbf_bbtautau_m350], +# processes=[procs.radion_hh_vbf_hbb_htt_m350], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1005,9 +1005,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m850_madgraph", +# name="radion_hh_vbf_hbb_htt_m850_madgraph", # id=14311176, -# processes=[procs.radion_hh_vbf_bbtautau_m850], +# processes=[procs.radion_hh_vbf_hbb_htt_m850], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1016,9 +1016,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m280_madgraph", +# name="radion_hh_vbf_hbb_htt_m280_madgraph", # id=14310610, -# processes=[procs.radion_hh_vbf_bbtautau_m280], +# processes=[procs.radion_hh_vbf_hbb_htt_m280], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1027,9 +1027,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m1000_madgraph", +# name="radion_hh_vbf_hbb_htt_m1000_madgraph", # id=14311373, -# processes=[procs.radion_hh_vbf_bbtautau_m1000], +# processes=[procs.radion_hh_vbf_hbb_htt_m1000], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1038,9 +1038,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m1750_madgraph", +# name="radion_hh_vbf_hbb_htt_m1750_madgraph", # id=14311180, -# processes=[procs.radion_hh_vbf_bbtautau_m1750], +# processes=[procs.radion_hh_vbf_hbb_htt_m1750], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1049,9 +1049,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m2500_madgraph", +# name="radion_hh_vbf_hbb_htt_m2500_madgraph", # id=14309857, -# processes=[procs.radion_hh_vbf_bbtautau_m2500], +# processes=[procs.radion_hh_vbf_hbb_htt_m2500], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1060,9 +1060,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m270_madgraph", +# name="radion_hh_vbf_hbb_htt_m270_madgraph", # id=14311009, -# processes=[procs.radion_hh_vbf_bbtautau_m270], +# processes=[procs.radion_hh_vbf_hbb_htt_m270], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1071,9 +1071,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m900_madgraph", +# name="radion_hh_vbf_hbb_htt_m900_madgraph", # id=14309240, -# processes=[procs.radion_hh_vbf_bbtautau_m900], +# processes=[procs.radion_hh_vbf_hbb_htt_m900], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1082,9 +1082,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m750_madgraph", +# name="radion_hh_vbf_hbb_htt_m750_madgraph", # id=14309178, -# processes=[procs.radion_hh_vbf_bbtautau_m750], +# processes=[procs.radion_hh_vbf_hbb_htt_m750], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1093,9 +1093,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m2000_madgraph", +# name="radion_hh_vbf_hbb_htt_m2000_madgraph", # id=14310672, -# processes=[procs.radion_hh_vbf_bbtautau_m2000], +# processes=[procs.radion_hh_vbf_hbb_htt_m2000], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1104,9 +1104,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m700_madgraph", +# name="radion_hh_vbf_hbb_htt_m700_madgraph", # id=14311299, -# processes=[procs.radion_hh_vbf_bbtautau_m700], +# processes=[procs.radion_hh_vbf_hbb_htt_m700], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1115,9 +1115,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m1250_madgraph", +# name="radion_hh_vbf_hbb_htt_m1250_madgraph", # id=14309599, -# processes=[procs.radion_hh_vbf_bbtautau_m1250], +# processes=[procs.radion_hh_vbf_hbb_htt_m1250], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1129,9 +1129,9 @@ # # VBF -> graviton -> HH # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m900_madgraph", +# name="graviton_hh_vbf_hbb_htt_m900_madgraph", # id=14309476, -# processes=[procs.graviton_hh_vbf_bbtautau_m900], +# processes=[procs.graviton_hh_vbf_hbb_htt_m900], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1140,9 +1140,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m850_madgraph", +# name="graviton_hh_vbf_hbb_htt_m850_madgraph", # id=14309603, -# processes=[procs.graviton_hh_vbf_bbtautau_m850], +# processes=[procs.graviton_hh_vbf_hbb_htt_m850], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1151,9 +1151,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m800_madgraph", +# name="graviton_hh_vbf_hbb_htt_m800_madgraph", # id=14311096, -# processes=[procs.graviton_hh_vbf_bbtautau_m800], +# processes=[procs.graviton_hh_vbf_hbb_htt_m800], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1162,9 +1162,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m750_madgraph", +# name="graviton_hh_vbf_hbb_htt_m750_madgraph", # id=14310181, -# processes=[procs.graviton_hh_vbf_bbtautau_m750], +# processes=[procs.graviton_hh_vbf_hbb_htt_m750], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1173,9 +1173,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m700_madgraph", +# name="graviton_hh_vbf_hbb_htt_m700_madgraph", # id=14309734, -# processes=[procs.graviton_hh_vbf_bbtautau_m700], +# processes=[procs.graviton_hh_vbf_hbb_htt_m700], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1184,9 +1184,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m650_madgraph", +# name="graviton_hh_vbf_hbb_htt_m650_madgraph", # id=14309837, -# processes=[procs.graviton_hh_vbf_bbtautau_m650], +# processes=[procs.graviton_hh_vbf_hbb_htt_m650], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1195,9 +1195,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m600_madgraph", +# name="graviton_hh_vbf_hbb_htt_m600_madgraph", # id=14310214, -# processes=[procs.graviton_hh_vbf_bbtautau_m600], +# processes=[procs.graviton_hh_vbf_hbb_htt_m600], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1206,9 +1206,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m550_madgraph", +# name="graviton_hh_vbf_hbb_htt_m550_madgraph", # id=14309850, -# processes=[procs.graviton_hh_vbf_bbtautau_m550], +# processes=[procs.graviton_hh_vbf_hbb_htt_m550], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1217,9 +1217,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m500_madgraph", +# name="graviton_hh_vbf_hbb_htt_m500_madgraph", # id=14309834, -# processes=[procs.graviton_hh_vbf_bbtautau_m500], +# processes=[procs.graviton_hh_vbf_hbb_htt_m500], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1228,9 +1228,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m450_madgraph", +# name="graviton_hh_vbf_hbb_htt_m450_madgraph", # id=14310948, -# processes=[procs.graviton_hh_vbf_bbtautau_m450], +# processes=[procs.graviton_hh_vbf_hbb_htt_m450], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1239,9 +1239,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m400_madgraph", +# name="graviton_hh_vbf_hbb_htt_m400_madgraph", # id=14311043, -# processes=[procs.graviton_hh_vbf_bbtautau_m400], +# processes=[procs.graviton_hh_vbf_hbb_htt_m400], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1250,9 +1250,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m350_madgraph", +# name="graviton_hh_vbf_hbb_htt_m350_madgraph", # id=14310464, -# processes=[procs.graviton_hh_vbf_bbtautau_m350], +# processes=[procs.graviton_hh_vbf_hbb_htt_m350], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1261,9 +1261,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m320_madgraph", +# name="graviton_hh_vbf_hbb_htt_m320_madgraph", # id=14309870, -# processes=[procs.graviton_hh_vbf_bbtautau_m320], +# processes=[procs.graviton_hh_vbf_hbb_htt_m320], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1272,9 +1272,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m3000_madgraph", +# name="graviton_hh_vbf_hbb_htt_m3000_madgraph", # id=14309851, -# processes=[procs.graviton_hh_vbf_bbtautau_m3000], +# processes=[procs.graviton_hh_vbf_hbb_htt_m3000], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1283,9 +1283,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m300_madgraph", +# name="graviton_hh_vbf_hbb_htt_m300_madgraph", # id=14310056, -# processes=[procs.graviton_hh_vbf_bbtautau_m300], +# processes=[procs.graviton_hh_vbf_hbb_htt_m300], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1294,9 +1294,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m280_madgraph", +# name="graviton_hh_vbf_hbb_htt_m280_madgraph", # id=14310550, -# processes=[procs.graviton_hh_vbf_bbtautau_m280], +# processes=[procs.graviton_hh_vbf_hbb_htt_m280], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1305,9 +1305,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m270_madgraph", +# name="graviton_hh_vbf_hbb_htt_m270_madgraph", # id=14309919, -# processes=[procs.graviton_hh_vbf_bbtautau_m270], +# processes=[procs.graviton_hh_vbf_hbb_htt_m270], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1316,9 +1316,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m260_madgraph", +# name="graviton_hh_vbf_hbb_htt_m260_madgraph", # id=14311171, -# processes=[procs.graviton_hh_vbf_bbtautau_m260], +# processes=[procs.graviton_hh_vbf_hbb_htt_m260], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1327,9 +1327,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m2500_madgraph", +# name="graviton_hh_vbf_hbb_htt_m2500_madgraph", # id=14309744, -# processes=[procs.graviton_hh_vbf_bbtautau_m2500], +# processes=[procs.graviton_hh_vbf_hbb_htt_m2500], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1338,9 +1338,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m250_madgraph", +# name="graviton_hh_vbf_hbb_htt_m250_madgraph", # id=14311070, -# processes=[procs.graviton_hh_vbf_bbtautau_m250], +# processes=[procs.graviton_hh_vbf_hbb_htt_m250], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1349,9 +1349,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m2000_madgraph", +# name="graviton_hh_vbf_hbb_htt_m2000_madgraph", # id=14309508, -# processes=[procs.graviton_hh_vbf_bbtautau_m2000], +# processes=[procs.graviton_hh_vbf_hbb_htt_m2000], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1360,9 +1360,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m1750_madgraph", +# name="graviton_hh_vbf_hbb_htt_m1750_madgraph", # id=14309405, -# processes=[procs.graviton_hh_vbf_bbtautau_m1750], +# processes=[procs.graviton_hh_vbf_hbb_htt_m1750], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1371,9 +1371,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m1500_madgraph", +# name="graviton_hh_vbf_hbb_htt_m1500_madgraph", # id=14309566, -# processes=[procs.graviton_hh_vbf_bbtautau_m1500], +# processes=[procs.graviton_hh_vbf_hbb_htt_m1500], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1382,9 +1382,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m1250_madgraph", +# name="graviton_hh_vbf_hbb_htt_m1250_madgraph", # id=14309555, -# processes=[procs.graviton_hh_vbf_bbtautau_m1250], +# processes=[procs.graviton_hh_vbf_hbb_htt_m1250], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -1393,9 +1393,9 @@ # ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m1000_madgraph", +# name="graviton_hh_vbf_hbb_htt_m1000_madgraph", # id=14309686, -# processes=[procs.graviton_hh_vbf_bbtautau_m1000], +# processes=[procs.graviton_hh_vbf_hbb_htt_m1000], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py index 1a10f65e..9d35ab27 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py @@ -15,9 +15,9 @@ # SM cpn.add_dataset( - name="hh_ggf_bbtautau_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", id=14374930, - processes=[procs.hh_ggf_bbtautau], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -28,9 +28,9 @@ # BSM scenarios cpn.add_dataset( - name="hh_ggf_bbtautau_node1_madgraph", + name="hh_ggf_hbb_htt_node1_madgraph", id=14375093, - processes=[procs.hh_ggf_bbtautau_node1], + processes=[procs.hh_ggf_hbb_htt_node1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_1_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -39,9 +39,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node2_madgraph", + name="hh_ggf_hbb_htt_node2_madgraph", id=14370208, - processes=[procs.hh_ggf_bbtautau_node2], + processes=[procs.hh_ggf_hbb_htt_node2], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_2_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -50,9 +50,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node3_madgraph", + name="hh_ggf_hbb_htt_node3_madgraph", id=14369799, - processes=[procs.hh_ggf_bbtautau_node3], + processes=[procs.hh_ggf_hbb_htt_node3], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_3_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -61,9 +61,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node4_madgraph", + name="hh_ggf_hbb_htt_node4_madgraph", id=14373535, - processes=[procs.hh_ggf_bbtautau_node4], + processes=[procs.hh_ggf_hbb_htt_node4], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_4_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -72,9 +72,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node5_madgraph", + name="hh_ggf_hbb_htt_node5_madgraph", id=14370961, - processes=[procs.hh_ggf_bbtautau_node5], + processes=[procs.hh_ggf_hbb_htt_node5], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_5_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -83,9 +83,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node6_madgraph", + name="hh_ggf_hbb_htt_node6_madgraph", id=14374877, - processes=[procs.hh_ggf_bbtautau_node6], + processes=[procs.hh_ggf_hbb_htt_node6], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_6_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -94,9 +94,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node7_madgraph", + name="hh_ggf_hbb_htt_node7_madgraph", id=14372004, - processes=[procs.hh_ggf_bbtautau_node7], + processes=[procs.hh_ggf_hbb_htt_node7], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_7_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -105,9 +105,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node8_madgraph", + name="hh_ggf_hbb_htt_node8_madgraph", id=14373531, - processes=[procs.hh_ggf_bbtautau_node8], + processes=[procs.hh_ggf_hbb_htt_node8], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_8_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -116,9 +116,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node9_madgraph", + name="hh_ggf_hbb_htt_node9_madgraph", id=14373753, - processes=[procs.hh_ggf_bbtautau_node9], + processes=[procs.hh_ggf_hbb_htt_node9], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_9_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -127,9 +127,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node10_madgraph", + name="hh_ggf_hbb_htt_node10_madgraph", id=14373533, - processes=[procs.hh_ggf_bbtautau_node10], + processes=[procs.hh_ggf_hbb_htt_node10], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_10_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -138,9 +138,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node11_madgraph", + name="hh_ggf_hbb_htt_node11_madgraph", id=14374873, - processes=[procs.hh_ggf_bbtautau_node11], + processes=[procs.hh_ggf_hbb_htt_node11], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_11_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -149,9 +149,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node12_madgraph", + name="hh_ggf_hbb_htt_node12_madgraph", id=14374899, - processes=[procs.hh_ggf_bbtautau_node12], + processes=[procs.hh_ggf_hbb_htt_node12], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_12_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -165,9 +165,9 @@ # cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m250_madgraph", + name="radion_hh_ggf_hbb_htt_m250_madgraph", id=14302510, - processes=[procs.radion_hh_ggf_bbtautau_m250], + processes=[procs.radion_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -176,9 +176,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m260_madgraph", + name="radion_hh_ggf_hbb_htt_m260_madgraph", id=14301575, - processes=[procs.radion_hh_ggf_bbtautau_m260], + processes=[procs.radion_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -187,9 +187,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m270_madgraph", + name="radion_hh_ggf_hbb_htt_m270_madgraph", id=14300691, - processes=[procs.radion_hh_ggf_bbtautau_m270], + processes=[procs.radion_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -198,9 +198,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m280_madgraph", + name="radion_hh_ggf_hbb_htt_m280_madgraph", id=14302499, - processes=[procs.radion_hh_ggf_bbtautau_m280], + processes=[procs.radion_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -209,9 +209,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m300_madgraph", + name="radion_hh_ggf_hbb_htt_m300_madgraph", id=14301597, - processes=[procs.radion_hh_ggf_bbtautau_m300], + processes=[procs.radion_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -220,9 +220,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m320_madgraph", + name="radion_hh_ggf_hbb_htt_m320_madgraph", id=14328047, - processes=[procs.radion_hh_ggf_bbtautau_m320], + processes=[procs.radion_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -231,9 +231,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m350_madgraph", + name="radion_hh_ggf_hbb_htt_m350_madgraph", id=14301476, - processes=[procs.radion_hh_ggf_bbtautau_m350], + processes=[procs.radion_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -242,9 +242,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m400_madgraph", + name="radion_hh_ggf_hbb_htt_m400_madgraph", id=14302314, - processes=[procs.radion_hh_ggf_bbtautau_m400], + processes=[procs.radion_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -253,9 +253,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m450_madgraph", + name="radion_hh_ggf_hbb_htt_m450_madgraph", id=14327252, - processes=[procs.radion_hh_ggf_bbtautau_m450], + processes=[procs.radion_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -264,9 +264,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m500_madgraph", + name="radion_hh_ggf_hbb_htt_m500_madgraph", id=14301598, - processes=[procs.radion_hh_ggf_bbtautau_m500], + processes=[procs.radion_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -275,9 +275,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m550_madgraph", + name="radion_hh_ggf_hbb_htt_m550_madgraph", id=14301122, - processes=[procs.radion_hh_ggf_bbtautau_m550], + processes=[procs.radion_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -286,9 +286,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m600_madgraph", + name="radion_hh_ggf_hbb_htt_m600_madgraph", id=14301567, - processes=[procs.radion_hh_ggf_bbtautau_m600], + processes=[procs.radion_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -297,9 +297,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m650_madgraph", + name="radion_hh_ggf_hbb_htt_m650_madgraph", id=14301498, - processes=[procs.radion_hh_ggf_bbtautau_m650], + processes=[procs.radion_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -308,9 +308,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m700_madgraph", + name="radion_hh_ggf_hbb_htt_m700_madgraph", id=14301042, - processes=[procs.radion_hh_ggf_bbtautau_m700], + processes=[procs.radion_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -319,9 +319,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m750_madgraph", + name="radion_hh_ggf_hbb_htt_m750_madgraph", id=14307116, - processes=[procs.radion_hh_ggf_bbtautau_m750], + processes=[procs.radion_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -330,9 +330,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m800_madgraph", + name="radion_hh_ggf_hbb_htt_m800_madgraph", id=14302586, - processes=[procs.radion_hh_ggf_bbtautau_m800], + processes=[procs.radion_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -341,9 +341,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m850_madgraph", + name="radion_hh_ggf_hbb_htt_m850_madgraph", id=14346438, - processes=[procs.radion_hh_ggf_bbtautau_m850], + processes=[procs.radion_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -352,9 +352,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m900_madgraph", + name="radion_hh_ggf_hbb_htt_m900_madgraph", id=14302493, - processes=[procs.radion_hh_ggf_bbtautau_m900], + processes=[procs.radion_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -363,9 +363,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1000_madgraph", + name="radion_hh_ggf_hbb_htt_m1000_madgraph", id=14302284, - processes=[procs.radion_hh_ggf_bbtautau_m1000], + processes=[procs.radion_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -374,9 +374,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1250_madgraph", + name="radion_hh_ggf_hbb_htt_m1250_madgraph", id=14302774, - processes=[procs.radion_hh_ggf_bbtautau_m1250], + processes=[procs.radion_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -385,9 +385,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1500_madgraph", + name="radion_hh_ggf_hbb_htt_m1500_madgraph", id=14346476, - processes=[procs.radion_hh_ggf_bbtautau_m1500], + processes=[procs.radion_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -396,9 +396,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1750_madgraph", + name="radion_hh_ggf_hbb_htt_m1750_madgraph", id=14302749, - processes=[procs.radion_hh_ggf_bbtautau_m1750], + processes=[procs.radion_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -407,9 +407,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2000_madgraph", + name="radion_hh_ggf_hbb_htt_m2000_madgraph", id=14302517, - processes=[procs.radion_hh_ggf_bbtautau_m2000], + processes=[procs.radion_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -418,9 +418,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2500_madgraph", + name="radion_hh_ggf_hbb_htt_m2500_madgraph", id=14301151, - processes=[procs.radion_hh_ggf_bbtautau_m2500], + processes=[procs.radion_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -429,9 +429,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m3000_madgraph", + name="radion_hh_ggf_hbb_htt_m3000_madgraph", id=14302763, - processes=[procs.radion_hh_ggf_bbtautau_m3000], + processes=[procs.radion_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -445,9 +445,9 @@ # cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m250_madgraph", + name="graviton_hh_ggf_hbb_htt_m250_madgraph", id=14301503, - processes=[procs.graviton_hh_ggf_bbtautau_m250], + processes=[procs.graviton_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -456,9 +456,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m260_madgraph", + name="graviton_hh_ggf_hbb_htt_m260_madgraph", id=14302469, - processes=[procs.graviton_hh_ggf_bbtautau_m260], + processes=[procs.graviton_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -467,9 +467,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m270_madgraph", + name="graviton_hh_ggf_hbb_htt_m270_madgraph", id=14302682, - processes=[procs.graviton_hh_ggf_bbtautau_m270], + processes=[procs.graviton_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -478,9 +478,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m280_madgraph", + name="graviton_hh_ggf_hbb_htt_m280_madgraph", id=14307123, - processes=[procs.graviton_hh_ggf_bbtautau_m280], + processes=[procs.graviton_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -489,9 +489,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m300_madgraph", + name="graviton_hh_ggf_hbb_htt_m300_madgraph", id=14302691, - processes=[procs.graviton_hh_ggf_bbtautau_m300], + processes=[procs.graviton_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -500,9 +500,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m320_madgraph", + name="graviton_hh_ggf_hbb_htt_m320_madgraph", id=14301964, - processes=[procs.graviton_hh_ggf_bbtautau_m320], + processes=[procs.graviton_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -511,9 +511,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m350_madgraph", + name="graviton_hh_ggf_hbb_htt_m350_madgraph", id=14302701, - processes=[procs.graviton_hh_ggf_bbtautau_m350], + processes=[procs.graviton_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -522,9 +522,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m400_madgraph", + name="graviton_hh_ggf_hbb_htt_m400_madgraph", id=14301632, - processes=[procs.graviton_hh_ggf_bbtautau_m400], + processes=[procs.graviton_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -533,9 +533,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m450_madgraph", + name="graviton_hh_ggf_hbb_htt_m450_madgraph", id=14327296, - processes=[procs.graviton_hh_ggf_bbtautau_m450], + processes=[procs.graviton_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -544,9 +544,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m500_madgraph", + name="graviton_hh_ggf_hbb_htt_m500_madgraph", id=14302698, - processes=[procs.graviton_hh_ggf_bbtautau_m500], + processes=[procs.graviton_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -555,9 +555,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m550_madgraph", + name="graviton_hh_ggf_hbb_htt_m550_madgraph", id=14302695, - processes=[procs.graviton_hh_ggf_bbtautau_m550], + processes=[procs.graviton_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -566,9 +566,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m600_madgraph", + name="graviton_hh_ggf_hbb_htt_m600_madgraph", id=14301494, - processes=[procs.graviton_hh_ggf_bbtautau_m600], + processes=[procs.graviton_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -577,9 +577,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m650_madgraph", + name="graviton_hh_ggf_hbb_htt_m650_madgraph", id=14302697, - processes=[procs.graviton_hh_ggf_bbtautau_m650], + processes=[procs.graviton_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -588,9 +588,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m700_madgraph", + name="graviton_hh_ggf_hbb_htt_m700_madgraph", id=14302694, - processes=[procs.graviton_hh_ggf_bbtautau_m700], + processes=[procs.graviton_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -599,9 +599,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m750_madgraph", + name="graviton_hh_ggf_hbb_htt_m750_madgraph", id=14302705, - processes=[procs.graviton_hh_ggf_bbtautau_m750], + processes=[procs.graviton_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -610,9 +610,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m800_madgraph", + name="graviton_hh_ggf_hbb_htt_m800_madgraph", id=14302692, - processes=[procs.graviton_hh_ggf_bbtautau_m800], + processes=[procs.graviton_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -621,9 +621,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m850_madgraph", + name="graviton_hh_ggf_hbb_htt_m850_madgraph", id=14302494, - processes=[procs.graviton_hh_ggf_bbtautau_m850], + processes=[procs.graviton_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -632,9 +632,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m900_madgraph", + name="graviton_hh_ggf_hbb_htt_m900_madgraph", id=14302790, - processes=[procs.graviton_hh_ggf_bbtautau_m900], + processes=[procs.graviton_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -643,9 +643,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1000_madgraph", + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", id=14302752, - processes=[procs.graviton_hh_ggf_bbtautau_m1000], + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -654,9 +654,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1250_madgraph", + name="graviton_hh_ggf_hbb_htt_m1250_madgraph", id=14302430, - processes=[procs.graviton_hh_ggf_bbtautau_m1250], + processes=[procs.graviton_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -665,9 +665,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1500_madgraph", + name="graviton_hh_ggf_hbb_htt_m1500_madgraph", id=14302608, - processes=[procs.graviton_hh_ggf_bbtautau_m1500], + processes=[procs.graviton_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -676,9 +676,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1750_madgraph", + name="graviton_hh_ggf_hbb_htt_m1750_madgraph", id=14327225, - processes=[procs.graviton_hh_ggf_bbtautau_m1750], + processes=[procs.graviton_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -687,9 +687,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2000_madgraph", + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", id=14302799, - processes=[procs.graviton_hh_ggf_bbtautau_m2000], + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -698,9 +698,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2500_madgraph", + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", id=14302809, - processes=[procs.graviton_hh_ggf_bbtautau_m2500], + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -709,9 +709,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m3000_madgraph", + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", id=14302801, - processes=[procs.graviton_hh_ggf_bbtautau_m3000], + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -724,9 +724,9 @@ # # cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m250_madgraph", + name="radion_hh_vbf_hbb_htt_m250_madgraph", id=14309148, - processes=[procs.radion_hh_vbf_bbtautau_m250], + processes=[procs.radion_hh_vbf_hbb_htt_m250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -735,9 +735,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m260_madgraph", + name="radion_hh_vbf_hbb_htt_m260_madgraph", id=14309020, - processes=[procs.radion_hh_vbf_bbtautau_m260], + processes=[procs.radion_hh_vbf_hbb_htt_m260], keys=[ "/VBFToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -746,9 +746,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m270_madgraph", + name="radion_hh_vbf_hbb_htt_m270_madgraph", id=14311151, - processes=[procs.radion_hh_vbf_bbtautau_m270], + processes=[procs.radion_hh_vbf_hbb_htt_m270], keys=[ "/VBFToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -757,9 +757,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m280_madgraph", + name="radion_hh_vbf_hbb_htt_m280_madgraph", id=14309161, - processes=[procs.radion_hh_vbf_bbtautau_m280], + processes=[procs.radion_hh_vbf_hbb_htt_m280], keys=[ "/VBFToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -768,9 +768,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m300_madgraph", + name="radion_hh_vbf_hbb_htt_m300_madgraph", id=14309100, - processes=[procs.radion_hh_vbf_bbtautau_m300], + processes=[procs.radion_hh_vbf_hbb_htt_m300], keys=[ "/VBFToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -779,9 +779,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m320_madgraph", + name="radion_hh_vbf_hbb_htt_m320_madgraph", id=14310842, - processes=[procs.radion_hh_vbf_bbtautau_m320], + processes=[procs.radion_hh_vbf_hbb_htt_m320], keys=[ "/VBFToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -790,9 +790,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m350_madgraph", + name="radion_hh_vbf_hbb_htt_m350_madgraph", id=14309861, - processes=[procs.radion_hh_vbf_bbtautau_m350], + processes=[procs.radion_hh_vbf_hbb_htt_m350], keys=[ "/VBFToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -801,9 +801,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m400_madgraph", + name="radion_hh_vbf_hbb_htt_m400_madgraph", id=14311190, - processes=[procs.radion_hh_vbf_bbtautau_m400], + processes=[procs.radion_hh_vbf_hbb_htt_m400], keys=[ "/VBFToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -812,9 +812,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m450_madgraph", + name="radion_hh_vbf_hbb_htt_m450_madgraph", id=14310135, - processes=[procs.radion_hh_vbf_bbtautau_m450], + processes=[procs.radion_hh_vbf_hbb_htt_m450], keys=[ "/VBFToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -823,9 +823,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m500_madgraph", + name="radion_hh_vbf_hbb_htt_m500_madgraph", id=14310709, - processes=[procs.radion_hh_vbf_bbtautau_m500], + processes=[procs.radion_hh_vbf_hbb_htt_m500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -834,9 +834,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m550_madgraph", + name="radion_hh_vbf_hbb_htt_m550_madgraph", id=14310466, - processes=[procs.radion_hh_vbf_bbtautau_m550], + processes=[procs.radion_hh_vbf_hbb_htt_m550], keys=[ "/VBFToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -845,9 +845,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m600_madgraph", + name="radion_hh_vbf_hbb_htt_m600_madgraph", id=14309160, - processes=[procs.radion_hh_vbf_bbtautau_m600], + processes=[procs.radion_hh_vbf_hbb_htt_m600], keys=[ "/VBFToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -856,9 +856,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m650_madgraph", + name="radion_hh_vbf_hbb_htt_m650_madgraph", id=14309190, - processes=[procs.radion_hh_vbf_bbtautau_m650], + processes=[procs.radion_hh_vbf_hbb_htt_m650], keys=[ "/VBFToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -867,9 +867,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m700_madgraph", + name="radion_hh_vbf_hbb_htt_m700_madgraph", id=14311152, - processes=[procs.radion_hh_vbf_bbtautau_m700], + processes=[procs.radion_hh_vbf_hbb_htt_m700], keys=[ "/VBFToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -878,9 +878,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m750_madgraph", + name="radion_hh_vbf_hbb_htt_m750_madgraph", id=14309175, - processes=[procs.radion_hh_vbf_bbtautau_m750], + processes=[procs.radion_hh_vbf_hbb_htt_m750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -889,9 +889,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m800_madgraph", + name="radion_hh_vbf_hbb_htt_m800_madgraph", id=14310505, - processes=[procs.radion_hh_vbf_bbtautau_m800], + processes=[procs.radion_hh_vbf_hbb_htt_m800], keys=[ "/VBFToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -900,9 +900,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m850_madgraph", + name="radion_hh_vbf_hbb_htt_m850_madgraph", id=14311379, - processes=[procs.radion_hh_vbf_bbtautau_m850], + processes=[procs.radion_hh_vbf_hbb_htt_m850], keys=[ "/VBFToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -911,9 +911,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m900_madgraph", + name="radion_hh_vbf_hbb_htt_m900_madgraph", id=14309625, - processes=[procs.radion_hh_vbf_bbtautau_m900], + processes=[procs.radion_hh_vbf_hbb_htt_m900], keys=[ "/VBFToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -922,9 +922,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1000_madgraph", + name="radion_hh_vbf_hbb_htt_m1000_madgraph", id=14309210, - processes=[procs.radion_hh_vbf_bbtautau_m1000], + processes=[procs.radion_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -933,9 +933,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1250_madgraph", + name="radion_hh_vbf_hbb_htt_m1250_madgraph", id=14310195, - processes=[procs.radion_hh_vbf_bbtautau_m1250], + processes=[procs.radion_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -944,9 +944,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1500_madgraph", + name="radion_hh_vbf_hbb_htt_m1500_madgraph", id=14310941, - processes=[procs.radion_hh_vbf_bbtautau_m1500], + processes=[procs.radion_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -955,9 +955,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1750_madgraph", + name="radion_hh_vbf_hbb_htt_m1750_madgraph", id=14310430, - processes=[procs.radion_hh_vbf_bbtautau_m1750], + processes=[procs.radion_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -966,9 +966,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2000_madgraph", + name="radion_hh_vbf_hbb_htt_m2000_madgraph", id=14310892, - processes=[procs.radion_hh_vbf_bbtautau_m2000], + processes=[procs.radion_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -977,9 +977,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2500_madgraph", + name="radion_hh_vbf_hbb_htt_m2500_madgraph", id=14310517, - processes=[procs.radion_hh_vbf_bbtautau_m2500], + processes=[procs.radion_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -988,9 +988,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m3000_madgraph", + name="radion_hh_vbf_hbb_htt_m3000_madgraph", id=14309309, - processes=[procs.radion_hh_vbf_bbtautau_m3000], + processes=[procs.radion_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1003,9 +1003,9 @@ # cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m250_madgraph", + name="graviton_hh_vbf_hbb_htt_m250_madgraph", id=14310654, - processes=[procs.graviton_hh_vbf_bbtautau_m250], + processes=[procs.graviton_hh_vbf_hbb_htt_m250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1014,9 +1014,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m260_madgraph", + name="graviton_hh_vbf_hbb_htt_m260_madgraph", id=14311003, - processes=[procs.graviton_hh_vbf_bbtautau_m260], + processes=[procs.graviton_hh_vbf_hbb_htt_m260], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1025,9 +1025,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m270_madgraph", + name="graviton_hh_vbf_hbb_htt_m270_madgraph", id=14309629, - processes=[procs.graviton_hh_vbf_bbtautau_m270], + processes=[procs.graviton_hh_vbf_hbb_htt_m270], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1036,9 +1036,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m280_madgraph", + name="graviton_hh_vbf_hbb_htt_m280_madgraph", id=14310656, - processes=[procs.graviton_hh_vbf_bbtautau_m280], + processes=[procs.graviton_hh_vbf_hbb_htt_m280], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1047,9 +1047,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m300_madgraph", + name="graviton_hh_vbf_hbb_htt_m300_madgraph", id=14310586, - processes=[procs.graviton_hh_vbf_bbtautau_m300], + processes=[procs.graviton_hh_vbf_hbb_htt_m300], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1058,9 +1058,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m320_madgraph", + name="graviton_hh_vbf_hbb_htt_m320_madgraph", id=14310975, - processes=[procs.graviton_hh_vbf_bbtautau_m320], + processes=[procs.graviton_hh_vbf_hbb_htt_m320], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1069,9 +1069,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m350_madgraph", + name="graviton_hh_vbf_hbb_htt_m350_madgraph", id=14311117, - processes=[procs.graviton_hh_vbf_bbtautau_m350], + processes=[procs.graviton_hh_vbf_hbb_htt_m350], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1080,9 +1080,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m400_madgraph", + name="graviton_hh_vbf_hbb_htt_m400_madgraph", id=14311181, - processes=[procs.graviton_hh_vbf_bbtautau_m400], + processes=[procs.graviton_hh_vbf_hbb_htt_m400], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1091,9 +1091,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m450_madgraph", + name="graviton_hh_vbf_hbb_htt_m450_madgraph", id=14309349, - processes=[procs.graviton_hh_vbf_bbtautau_m450], + processes=[procs.graviton_hh_vbf_hbb_htt_m450], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1102,9 +1102,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m500_madgraph", + name="graviton_hh_vbf_hbb_htt_m500_madgraph", id=14309200, - processes=[procs.graviton_hh_vbf_bbtautau_m500], + processes=[procs.graviton_hh_vbf_hbb_htt_m500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1113,9 +1113,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m550_madgraph", + name="graviton_hh_vbf_hbb_htt_m550_madgraph", id=14310115, - processes=[procs.graviton_hh_vbf_bbtautau_m550], + processes=[procs.graviton_hh_vbf_hbb_htt_m550], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1124,9 +1124,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m600_madgraph", + name="graviton_hh_vbf_hbb_htt_m600_madgraph", id=14309252, - processes=[procs.graviton_hh_vbf_bbtautau_m600], + processes=[procs.graviton_hh_vbf_hbb_htt_m600], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1135,9 +1135,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m650_madgraph", + name="graviton_hh_vbf_hbb_htt_m650_madgraph", id=14310547, - processes=[procs.graviton_hh_vbf_bbtautau_m650], + processes=[procs.graviton_hh_vbf_hbb_htt_m650], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1146,9 +1146,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m700_madgraph", + name="graviton_hh_vbf_hbb_htt_m700_madgraph", id=14311093, - processes=[procs.graviton_hh_vbf_bbtautau_m700], + processes=[procs.graviton_hh_vbf_hbb_htt_m700], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1157,9 +1157,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m750_madgraph", + name="graviton_hh_vbf_hbb_htt_m750_madgraph", id=14310895, - processes=[procs.graviton_hh_vbf_bbtautau_m750], + processes=[procs.graviton_hh_vbf_hbb_htt_m750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1168,9 +1168,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m800_madgraph", + name="graviton_hh_vbf_hbb_htt_m800_madgraph", id=14311153, - processes=[procs.graviton_hh_vbf_bbtautau_m800], + processes=[procs.graviton_hh_vbf_hbb_htt_m800], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1179,9 +1179,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m850_madgraph", + name="graviton_hh_vbf_hbb_htt_m850_madgraph", id=14310531, - processes=[procs.graviton_hh_vbf_bbtautau_m850], + processes=[procs.graviton_hh_vbf_hbb_htt_m850], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1190,9 +1190,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m900_madgraph", + name="graviton_hh_vbf_hbb_htt_m900_madgraph", id=14310429, - processes=[procs.graviton_hh_vbf_bbtautau_m900], + processes=[procs.graviton_hh_vbf_hbb_htt_m900], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1201,9 +1201,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1000_madgraph", + name="graviton_hh_vbf_hbb_htt_m1000_madgraph", id=14310463, - processes=[procs.graviton_hh_vbf_bbtautau_m1000], + processes=[procs.graviton_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1212,9 +1212,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1250_madgraph", + name="graviton_hh_vbf_hbb_htt_m1250_madgraph", id=14310462, - processes=[procs.graviton_hh_vbf_bbtautau_m1250], + processes=[procs.graviton_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1223,9 +1223,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1500_madgraph", + name="graviton_hh_vbf_hbb_htt_m1500_madgraph", id=14309776, - processes=[procs.graviton_hh_vbf_bbtautau_m1500], + processes=[procs.graviton_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1234,9 +1234,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1750_madgraph", + name="graviton_hh_vbf_hbb_htt_m1750_madgraph", id=14309067, - processes=[procs.graviton_hh_vbf_bbtautau_m1750], + processes=[procs.graviton_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1245,9 +1245,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2000_madgraph", + name="graviton_hh_vbf_hbb_htt_m2000_madgraph", id=14309506, - processes=[procs.graviton_hh_vbf_bbtautau_m2000], + processes=[procs.graviton_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1256,9 +1256,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2500_madgraph", + name="graviton_hh_vbf_hbb_htt_m2500_madgraph", id=14310005, - processes=[procs.graviton_hh_vbf_bbtautau_m2500], + processes=[procs.graviton_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -1267,9 +1267,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m3000_madgraph", + name="graviton_hh_vbf_hbb_htt_m3000_madgraph", id=14310674, - processes=[procs.graviton_hh_vbf_bbtautau_m3000], + processes=[procs.graviton_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py index f614e7dd..23fcb347 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py @@ -15,9 +15,9 @@ # SM cpn.add_dataset( - name="hh_ggf_bbtautau_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", id=14333571, - processes=[procs.hh_ggf_bbtautau], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -28,9 +28,9 @@ # # BSM scenarios # cpn.add_dataset( -# name="hh_ggf_bbtautau_node1_madgraph", +# name="hh_ggf_hbb_htt_node1_madgraph", # id=14366362, -# processes=[procs.hh_ggf_bbtautau_node1], +# processes=[procs.hh_ggf_hbb_htt_node1], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_1_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -40,9 +40,9 @@ # # # missing # # cpn.add_dataset( -# # name="hh_ggf_bbtautau_node2_madgraph", +# # name="hh_ggf_hbb_htt_node2_madgraph", # # id=, -# # processes=[procs.hh_ggf_bbtautau_node2], +# # processes=[procs.hh_ggf_hbb_htt_node2], # # keys=[ # # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_2_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # # ], @@ -51,9 +51,9 @@ # # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node3_madgraph", +# name="hh_ggf_hbb_htt_node3_madgraph", # id=14369747, -# processes=[procs.hh_ggf_bbtautau_node3], +# processes=[procs.hh_ggf_hbb_htt_node3], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_3_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -62,9 +62,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node4_madgraph", +# name="hh_ggf_hbb_htt_node4_madgraph", # id=14368375, -# processes=[procs.hh_ggf_bbtautau_node4], +# processes=[procs.hh_ggf_hbb_htt_node4], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_4_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -73,9 +73,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node5_madgraph", +# name="hh_ggf_hbb_htt_node5_madgraph", # id=14364195, -# processes=[procs.hh_ggf_bbtautau_node5], +# processes=[procs.hh_ggf_hbb_htt_node5], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_5_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -84,9 +84,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node6_madgraph", +# name="hh_ggf_hbb_htt_node6_madgraph", # id=14368376, -# processes=[procs.hh_ggf_bbtautau_node6], +# processes=[procs.hh_ggf_hbb_htt_node6], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_6_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -95,9 +95,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node7_madgraph", +# name="hh_ggf_hbb_htt_node7_madgraph", # id=14369764, -# processes=[procs.hh_ggf_bbtautau_node7], +# processes=[procs.hh_ggf_hbb_htt_node7], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_7_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -106,9 +106,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node8_madgraph", +# name="hh_ggf_hbb_htt_node8_madgraph", # id=14370426, -# processes=[procs.hh_ggf_bbtautau_node8], +# processes=[procs.hh_ggf_hbb_htt_node8], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_8_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -117,9 +117,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node9_madgraph", +# name="hh_ggf_hbb_htt_node9_madgraph", # id=14366977, -# processes=[procs.hh_ggf_bbtautau_node9], +# processes=[procs.hh_ggf_hbb_htt_node9], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_9_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -128,9 +128,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node10_madgraph", +# name="hh_ggf_hbb_htt_node10_madgraph", # id=14369844, -# processes=[procs.hh_ggf_bbtautau_node10], +# processes=[procs.hh_ggf_hbb_htt_node10], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_10_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -139,9 +139,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node11_madgraph", +# name="hh_ggf_hbb_htt_node11_madgraph", # id=14368408, -# processes=[procs.hh_ggf_bbtautau_node11], +# processes=[procs.hh_ggf_hbb_htt_node11], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_11_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -150,9 +150,9 @@ # ) # # cpn.add_dataset( -# name="hh_ggf_bbtautau_node12_madgraph", +# name="hh_ggf_hbb_htt_node12_madgraph", # id=14368374, -# processes=[procs.hh_ggf_bbtautau_node12], +# processes=[procs.hh_ggf_hbb_htt_node12], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_12_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -166,9 +166,9 @@ # # cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m250_madgraph", + name="radion_hh_ggf_hbb_htt_m250_madgraph", id=14302699, - processes=[procs.radion_hh_ggf_bbtautau_m250], + processes=[procs.radion_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -177,9 +177,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m260_madgraph", + name="radion_hh_ggf_hbb_htt_m260_madgraph", id=14346709, - processes=[procs.radion_hh_ggf_bbtautau_m260], + processes=[procs.radion_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -188,9 +188,9 @@ ) # cpn.add_dataset( -# name="radion_hh_ggf_bbtautau_m270_madgraph", +# name="radion_hh_ggf_hbb_htt_m270_madgraph", # id=14308899, -# processes=[procs.radion_hh_ggf_bbtautau_m270], +# processes=[procs.radion_hh_ggf_hbb_htt_m270], # keys=[ # "/GluGluToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -199,9 +199,9 @@ # ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m280_madgraph", + name="radion_hh_ggf_hbb_htt_m280_madgraph", id=14346522, - processes=[procs.radion_hh_ggf_bbtautau_m280], + processes=[procs.radion_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -210,9 +210,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m300_madgraph", + name="radion_hh_ggf_hbb_htt_m300_madgraph", id=14305038, - processes=[procs.radion_hh_ggf_bbtautau_m300], + processes=[procs.radion_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -221,9 +221,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m320_madgraph", + name="radion_hh_ggf_hbb_htt_m320_madgraph", id=14317864, - processes=[procs.radion_hh_ggf_bbtautau_m320], + processes=[procs.radion_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -232,9 +232,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m350_madgraph", + name="radion_hh_ggf_hbb_htt_m350_madgraph", id=14305046, - processes=[procs.radion_hh_ggf_bbtautau_m350], + processes=[procs.radion_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -243,9 +243,9 @@ ) # cpn.add_dataset( -# name="radion_hh_ggf_bbtautau_m400_madgraph", +# name="radion_hh_ggf_hbb_htt_m400_madgraph", # id=14304148, -# processes=[procs.radion_hh_ggf_bbtautau_m400], +# processes=[procs.radion_hh_ggf_hbb_htt_m400], # keys=[ # "/GluGluToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -254,9 +254,9 @@ # ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m450_madgraph", + name="radion_hh_ggf_hbb_htt_m450_madgraph", id=14327612, - processes=[procs.radion_hh_ggf_bbtautau_m450], + processes=[procs.radion_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -265,9 +265,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m500_madgraph", + name="radion_hh_ggf_hbb_htt_m500_madgraph", id=14305039, - processes=[procs.radion_hh_ggf_bbtautau_m500], + processes=[procs.radion_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -276,9 +276,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m550_madgraph", + name="radion_hh_ggf_hbb_htt_m550_madgraph", id=14302782, - processes=[procs.radion_hh_ggf_bbtautau_m550], + processes=[procs.radion_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -287,9 +287,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m600_madgraph", + name="radion_hh_ggf_hbb_htt_m600_madgraph", id=14308468, - processes=[procs.radion_hh_ggf_bbtautau_m600], + processes=[procs.radion_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -298,9 +298,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m650_madgraph", + name="radion_hh_ggf_hbb_htt_m650_madgraph", id=14346492, - processes=[procs.radion_hh_ggf_bbtautau_m650], + processes=[procs.radion_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -309,9 +309,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m700_madgraph", + name="radion_hh_ggf_hbb_htt_m700_madgraph", id=14346371, - processes=[procs.radion_hh_ggf_bbtautau_m700], + processes=[procs.radion_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -320,9 +320,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m750_madgraph", + name="radion_hh_ggf_hbb_htt_m750_madgraph", id=14346508, - processes=[procs.radion_hh_ggf_bbtautau_m750], + processes=[procs.radion_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -331,9 +331,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m800_madgraph", + name="radion_hh_ggf_hbb_htt_m800_madgraph", id=14327246, - processes=[procs.radion_hh_ggf_bbtautau_m800], + processes=[procs.radion_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -342,10 +342,10 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m850_madgraph", + name="radion_hh_ggf_hbb_htt_m850_madgraph", id=14329739, is_data=False, - processes=[procs.radion_hh_ggf_bbtautau_m850], + processes=[procs.radion_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -354,9 +354,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m900_madgraph", + name="radion_hh_ggf_hbb_htt_m900_madgraph", id=14346607, - processes=[procs.radion_hh_ggf_bbtautau_m900], + processes=[procs.radion_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -365,10 +365,10 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1000_madgraph", + name="radion_hh_ggf_hbb_htt_m1000_madgraph", id=14305217, is_data=False, - processes=[procs.radion_hh_ggf_bbtautau_m1000], + processes=[procs.radion_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -377,10 +377,10 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1250_madgraph", + name="radion_hh_ggf_hbb_htt_m1250_madgraph", id=14302671, is_data=False, - processes=[procs.radion_hh_ggf_bbtautau_m1250], + processes=[procs.radion_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -389,10 +389,10 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1500_madgraph", + name="radion_hh_ggf_hbb_htt_m1500_madgraph", id=14304449, is_data=False, - processes=[procs.radion_hh_ggf_bbtautau_m1500], + processes=[procs.radion_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -401,9 +401,9 @@ ) # cpn.add_dataset( -# name="radion_hh_ggf_bbtautau_m1750_madgraph", +# name="radion_hh_ggf_hbb_htt_m1750_madgraph", # id=14302315, -# processes=[procs.radion_hh_ggf_bbtautau_m1750], +# processes=[procs.radion_hh_ggf_hbb_htt_m1750], # keys=[ # "/GluGluToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -412,9 +412,9 @@ # ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2000_madgraph", + name="radion_hh_ggf_hbb_htt_m2000_madgraph", id=14304854, - processes=[procs.radion_hh_ggf_bbtautau_m2000], + processes=[procs.radion_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -423,9 +423,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2500_madgraph", + name="radion_hh_ggf_hbb_htt_m2500_madgraph", id=14305724, - processes=[procs.radion_hh_ggf_bbtautau_m2500], + processes=[procs.radion_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -434,9 +434,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m3000_madgraph", + name="radion_hh_ggf_hbb_htt_m3000_madgraph", id=14346585, - processes=[procs.radion_hh_ggf_bbtautau_m3000], + processes=[procs.radion_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -450,9 +450,9 @@ # cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m250_madgraph", + name="graviton_hh_ggf_hbb_htt_m250_madgraph", id=14309792, - processes=[procs.graviton_hh_ggf_bbtautau_m250], + processes=[procs.graviton_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -461,9 +461,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m260_madgraph", + name="graviton_hh_ggf_hbb_htt_m260_madgraph", id=14302685, - processes=[procs.graviton_hh_ggf_bbtautau_m260], + processes=[procs.graviton_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -472,9 +472,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m270_madgraph", + name="graviton_hh_ggf_hbb_htt_m270_madgraph", id=14330674, - processes=[procs.graviton_hh_ggf_bbtautau_m270], + processes=[procs.graviton_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -483,9 +483,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m280_madgraph", + name="graviton_hh_ggf_hbb_htt_m280_madgraph", id=14330317, - processes=[procs.graviton_hh_ggf_bbtautau_m280], + processes=[procs.graviton_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -494,10 +494,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m300_madgraph", + name="graviton_hh_ggf_hbb_htt_m300_madgraph", id=14346483, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m300], + processes=[procs.graviton_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -506,9 +506,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m320_madgraph", + name="graviton_hh_ggf_hbb_htt_m320_madgraph", id=14331932, - processes=[procs.graviton_hh_ggf_bbtautau_m320], + processes=[procs.graviton_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -517,9 +517,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m350_madgraph", + name="graviton_hh_ggf_hbb_htt_m350_madgraph", id=14346501, - processes=[procs.graviton_hh_ggf_bbtautau_m350], + processes=[procs.graviton_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -528,9 +528,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m400_madgraph", + name="graviton_hh_ggf_hbb_htt_m400_madgraph", id=14346354, - processes=[procs.graviton_hh_ggf_bbtautau_m400], + processes=[procs.graviton_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -539,9 +539,9 @@ ) # cpn.add_dataset( -# name="graviton_hh_ggf_bbtautau_m450_madgraph", +# name="graviton_hh_ggf_hbb_htt_m450_madgraph", # id=14311442, -# processes=[procs.graviton_hh_ggf_bbtautau_m450], +# processes=[procs.graviton_hh_ggf_hbb_htt_m450], # keys=[ # "/GluGluToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -550,9 +550,9 @@ # ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m500_madgraph", + name="graviton_hh_ggf_hbb_htt_m500_madgraph", id=14307224, - processes=[procs.graviton_hh_ggf_bbtautau_m500], + processes=[procs.graviton_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -561,10 +561,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m550_madgraph", + name="graviton_hh_ggf_hbb_htt_m550_madgraph", id=14302412, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m550], + processes=[procs.graviton_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -573,10 +573,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m600_madgraph", + name="graviton_hh_ggf_hbb_htt_m600_madgraph", id=14302379, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m600], + processes=[procs.graviton_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -585,9 +585,9 @@ ) # cpn.add_dataset( -# name="graviton_hh_ggf_bbtautau_m650_madgraph", +# name="graviton_hh_ggf_hbb_htt_m650_madgraph", # id=14309720, -# processes=[procs.graviton_hh_ggf_bbtautau_m650], +# processes=[procs.graviton_hh_ggf_hbb_htt_m650], # keys=[ # "/GluGluToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -596,9 +596,9 @@ # ) # # cpn.add_dataset( -# name="graviton_hh_ggf_bbtautau_m700_madgraph", +# name="graviton_hh_ggf_hbb_htt_m700_madgraph", # id=14305200, -# processes=[procs.graviton_hh_ggf_bbtautau_m700], +# processes=[procs.graviton_hh_ggf_hbb_htt_m700], # keys=[ # "/GluGluToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -607,10 +607,10 @@ # ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m750_madgraph", + name="graviton_hh_ggf_hbb_htt_m750_madgraph", id=14346503, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m750], + processes=[procs.graviton_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -619,10 +619,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m800_madgraph", + name="graviton_hh_ggf_hbb_htt_m800_madgraph", id=14346494, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m800], + processes=[procs.graviton_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -631,10 +631,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m850_madgraph", + name="graviton_hh_ggf_hbb_htt_m850_madgraph", id=14346602, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m850], + processes=[procs.graviton_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -643,10 +643,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m900_madgraph", + name="graviton_hh_ggf_hbb_htt_m900_madgraph", id=14330164, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m900], + processes=[procs.graviton_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa wrong?????? ], @@ -655,9 +655,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1000_madgraph", + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", id=14307193, - processes=[procs.graviton_hh_ggf_bbtautau_m1000], + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -666,9 +666,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1250_madgraph", + name="graviton_hh_ggf_hbb_htt_m1250_madgraph", id=14305051, - processes=[procs.graviton_hh_ggf_bbtautau_m1250], + processes=[procs.graviton_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -677,10 +677,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1500_madgraph", + name="graviton_hh_ggf_hbb_htt_m1500_madgraph", id=14302336, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m1500], + processes=[procs.graviton_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -689,9 +689,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1750_madgraph", + name="graviton_hh_ggf_hbb_htt_m1750_madgraph", id=14307182, - processes=[procs.graviton_hh_ggf_bbtautau_m1750], + processes=[procs.graviton_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -700,10 +700,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2000_madgraph", + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", id=14304911, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m2000], + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -712,10 +712,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2500_madgraph", + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", id=14306376, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m2500], + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -724,10 +724,10 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m3000_madgraph", + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", id=14305672, is_data=False, - processes=[procs.graviton_hh_ggf_bbtautau_m3000], + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -741,9 +741,9 @@ # cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m250_madgraph", + name="radion_hh_vbf_hbb_htt_m250_madgraph", id=14310979, - processes=[procs.radion_hh_vbf_bbtautau_m250], + processes=[procs.radion_hh_vbf_hbb_htt_m250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -752,9 +752,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m260_madgraph", + name="radion_hh_vbf_hbb_htt_m260_madgraph", id=14310081, - processes=[procs.radion_hh_vbf_bbtautau_m260], + processes=[procs.radion_hh_vbf_hbb_htt_m260], keys=[ "/VBFToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -763,9 +763,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m270_madgraph", + name="radion_hh_vbf_hbb_htt_m270_madgraph", id=14311052, - processes=[procs.radion_hh_vbf_bbtautau_m270], + processes=[procs.radion_hh_vbf_hbb_htt_m270], keys=[ "/VBFToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -774,9 +774,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m280_madgraph", + name="radion_hh_vbf_hbb_htt_m280_madgraph", id=14310792, - processes=[procs.radion_hh_vbf_bbtautau_m280], + processes=[procs.radion_hh_vbf_hbb_htt_m280], keys=[ "/VBFToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -785,9 +785,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m300_madgraph", + name="radion_hh_vbf_hbb_htt_m300_madgraph", id=14309895, - processes=[procs.radion_hh_vbf_bbtautau_m300], + processes=[procs.radion_hh_vbf_hbb_htt_m300], keys=[ "/VBFToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -796,9 +796,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m320_madgraph", + name="radion_hh_vbf_hbb_htt_m320_madgraph", id=14310054, - processes=[procs.radion_hh_vbf_bbtautau_m320], + processes=[procs.radion_hh_vbf_hbb_htt_m320], keys=[ "/VBFToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -807,9 +807,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m350_madgraph", + name="radion_hh_vbf_hbb_htt_m350_madgraph", id=14311247, - processes=[procs.radion_hh_vbf_bbtautau_m350], + processes=[procs.radion_hh_vbf_hbb_htt_m350], keys=[ "/VBFToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -818,9 +818,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m400_madgraph", + name="radion_hh_vbf_hbb_htt_m400_madgraph", id=14310977, - processes=[procs.radion_hh_vbf_bbtautau_m400], + processes=[procs.radion_hh_vbf_hbb_htt_m400], keys=[ "/VBFToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -829,9 +829,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m450_madgraph", + name="radion_hh_vbf_hbb_htt_m450_madgraph", id=14310120, - processes=[procs.radion_hh_vbf_bbtautau_m450], + processes=[procs.radion_hh_vbf_hbb_htt_m450], keys=[ "/VBFToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -840,9 +840,9 @@ ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m500_madgraph", +# name="radion_hh_vbf_hbb_htt_m500_madgraph", # id=14315911, -# processes=[procs.radion_hh_vbf_bbtautau_m500], +# processes=[procs.radion_hh_vbf_hbb_htt_m500], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -851,9 +851,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m550_madgraph", +# name="radion_hh_vbf_hbb_htt_m550_madgraph", # id=14313492, -# processes=[procs.radion_hh_vbf_bbtautau_m550], +# processes=[procs.radion_hh_vbf_hbb_htt_m550], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -862,9 +862,9 @@ # ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m600_madgraph", + name="radion_hh_vbf_hbb_htt_m600_madgraph", id=14310849, - processes=[procs.radion_hh_vbf_bbtautau_m600], + processes=[procs.radion_hh_vbf_hbb_htt_m600], keys=[ "/VBFToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -873,9 +873,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m650_madgraph", + name="radion_hh_vbf_hbb_htt_m650_madgraph", id=14310409, - processes=[procs.radion_hh_vbf_bbtautau_m650], + processes=[procs.radion_hh_vbf_hbb_htt_m650], keys=[ "/VBFToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -884,9 +884,9 @@ ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m700_madgraph", +# name="radion_hh_vbf_hbb_htt_m700_madgraph", # id=14312044, -# processes=[procs.radion_hh_vbf_bbtautau_m700], +# processes=[procs.radion_hh_vbf_hbb_htt_m700], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -895,9 +895,9 @@ # ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m750_madgraph", + name="radion_hh_vbf_hbb_htt_m750_madgraph", id=14311028, - processes=[procs.radion_hh_vbf_bbtautau_m750], + processes=[procs.radion_hh_vbf_hbb_htt_m750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -906,9 +906,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m800_madgraph", + name="radion_hh_vbf_hbb_htt_m800_madgraph", id=14309809, - processes=[procs.radion_hh_vbf_bbtautau_m800], + processes=[procs.radion_hh_vbf_hbb_htt_m800], keys=[ "/VBFToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -917,9 +917,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m850_madgraph", + name="radion_hh_vbf_hbb_htt_m850_madgraph", id=14310839, - processes=[procs.radion_hh_vbf_bbtautau_m850], + processes=[procs.radion_hh_vbf_hbb_htt_m850], keys=[ "/VBFToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -928,9 +928,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m900_madgraph", + name="radion_hh_vbf_hbb_htt_m900_madgraph", id=14310320, - processes=[procs.radion_hh_vbf_bbtautau_m900], + processes=[procs.radion_hh_vbf_hbb_htt_m900], keys=[ "/VBFToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -939,9 +939,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1000_madgraph", + name="radion_hh_vbf_hbb_htt_m1000_madgraph", id=14311029, - processes=[procs.radion_hh_vbf_bbtautau_m1000], + processes=[procs.radion_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -950,9 +950,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1250_madgraph", + name="radion_hh_vbf_hbb_htt_m1250_madgraph", id=14310917, - processes=[procs.radion_hh_vbf_bbtautau_m1250], + processes=[procs.radion_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -961,9 +961,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1500_madgraph", + name="radion_hh_vbf_hbb_htt_m1500_madgraph", id=14311424, - processes=[procs.radion_hh_vbf_bbtautau_m1500], + processes=[procs.radion_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -972,9 +972,9 @@ ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m1750_madgraph", +# name="radion_hh_vbf_hbb_htt_m1750_madgraph", # id=14314144, -# processes=[procs.radion_hh_vbf_bbtautau_m1750], +# processes=[procs.radion_hh_vbf_hbb_htt_m1750], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -983,9 +983,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m2000_madgraph", +# name="radion_hh_vbf_hbb_htt_m2000_madgraph", # id=14319538, -# processes=[procs.radion_hh_vbf_bbtautau_m2000], +# processes=[procs.radion_hh_vbf_hbb_htt_m2000], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -994,9 +994,9 @@ # ) # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m2500_madgraph", +# name="radion_hh_vbf_hbb_htt_m2500_madgraph", # id=14316124, -# processes=[procs.radion_hh_vbf_bbtautau_m2500], +# processes=[procs.radion_hh_vbf_hbb_htt_m2500], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1005,9 +1005,9 @@ # ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m3000_madgraph", + name="radion_hh_vbf_hbb_htt_m3000_madgraph", id=14311493, - processes=[procs.radion_hh_vbf_bbtautau_m3000], + processes=[procs.radion_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1021,9 +1021,9 @@ # cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m250_madgraph", + name="graviton_hh_vbf_hbb_htt_m250_madgraph", id=14310640, - processes=[procs.graviton_hh_vbf_bbtautau_m250], + processes=[procs.graviton_hh_vbf_hbb_htt_m250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1032,9 +1032,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m260_madgraph", + name="graviton_hh_vbf_hbb_htt_m260_madgraph", id=14310769, - processes=[procs.graviton_hh_vbf_bbtautau_m260], + processes=[procs.graviton_hh_vbf_hbb_htt_m260], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1043,9 +1043,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m270_madgraph", + name="graviton_hh_vbf_hbb_htt_m270_madgraph", id=14310580, - processes=[procs.graviton_hh_vbf_bbtautau_m270], + processes=[procs.graviton_hh_vbf_hbb_htt_m270], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1054,9 +1054,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m280_madgraph", + name="graviton_hh_vbf_hbb_htt_m280_madgraph", id=14310663, - processes=[procs.graviton_hh_vbf_bbtautau_m280], + processes=[procs.graviton_hh_vbf_hbb_htt_m280], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1065,9 +1065,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m300_madgraph", + name="graviton_hh_vbf_hbb_htt_m300_madgraph", id=14310096, - processes=[procs.graviton_hh_vbf_bbtautau_m300], + processes=[procs.graviton_hh_vbf_hbb_htt_m300], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1076,9 +1076,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m320_madgraph", + name="graviton_hh_vbf_hbb_htt_m320_madgraph", id=14309949, - processes=[procs.graviton_hh_vbf_bbtautau_m320], + processes=[procs.graviton_hh_vbf_hbb_htt_m320], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1087,9 +1087,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m350_madgraph", + name="graviton_hh_vbf_hbb_htt_m350_madgraph", id=14310155, - processes=[procs.graviton_hh_vbf_bbtautau_m350], + processes=[procs.graviton_hh_vbf_hbb_htt_m350], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1098,9 +1098,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m400_madgraph", + name="graviton_hh_vbf_hbb_htt_m400_madgraph", id=14310356, - processes=[procs.graviton_hh_vbf_bbtautau_m400], + processes=[procs.graviton_hh_vbf_hbb_htt_m400], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1109,9 +1109,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m450_madgraph", + name="graviton_hh_vbf_hbb_htt_m450_madgraph", id=14310802, - processes=[procs.graviton_hh_vbf_bbtautau_m450], + processes=[procs.graviton_hh_vbf_hbb_htt_m450], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1120,9 +1120,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m500_madgraph", + name="graviton_hh_vbf_hbb_htt_m500_madgraph", id=14309757, - processes=[procs.graviton_hh_vbf_bbtautau_m500], + processes=[procs.graviton_hh_vbf_hbb_htt_m500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1131,9 +1131,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m550_madgraph", + name="graviton_hh_vbf_hbb_htt_m550_madgraph", id=14310094, - processes=[procs.graviton_hh_vbf_bbtautau_m550], + processes=[procs.graviton_hh_vbf_hbb_htt_m550], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1142,9 +1142,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m600_madgraph", + name="graviton_hh_vbf_hbb_htt_m600_madgraph", id=14310015, - processes=[procs.graviton_hh_vbf_bbtautau_m600], + processes=[procs.graviton_hh_vbf_hbb_htt_m600], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1153,9 +1153,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m650_madgraph", + name="graviton_hh_vbf_hbb_htt_m650_madgraph", id=14310030, - processes=[procs.graviton_hh_vbf_bbtautau_m650], + processes=[procs.graviton_hh_vbf_hbb_htt_m650], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1164,9 +1164,9 @@ ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m700_madgraph", +# name="graviton_hh_vbf_hbb_htt_m700_madgraph", # id=14313347, -# processes=[procs.graviton_hh_vbf_bbtautau_m700], +# processes=[procs.graviton_hh_vbf_hbb_htt_m700], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1175,9 +1175,9 @@ # ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m750_madgraph", + name="graviton_hh_vbf_hbb_htt_m750_madgraph", id=14309985, - processes=[procs.graviton_hh_vbf_bbtautau_m750], + processes=[procs.graviton_hh_vbf_hbb_htt_m750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1186,9 +1186,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m800_madgraph", + name="graviton_hh_vbf_hbb_htt_m800_madgraph", id=14309925, - processes=[procs.graviton_hh_vbf_bbtautau_m800], + processes=[procs.graviton_hh_vbf_hbb_htt_m800], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1197,9 +1197,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m850_madgraph", + name="graviton_hh_vbf_hbb_htt_m850_madgraph", id=14310363, - processes=[procs.graviton_hh_vbf_bbtautau_m850], + processes=[procs.graviton_hh_vbf_hbb_htt_m850], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1209,9 +1209,9 @@ # missing # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m900_madgraph", +# name="graviton_hh_vbf_hbb_htt_m900_madgraph", # id=, -# processes=[procs.graviton_hh_vbf_bbtautau_m900], +# processes=[procs.graviton_hh_vbf_hbb_htt_m900], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1220,9 +1220,9 @@ # ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1000_madgraph", + name="graviton_hh_vbf_hbb_htt_m1000_madgraph", id=14310482, - processes=[procs.graviton_hh_vbf_bbtautau_m1000], + processes=[procs.graviton_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1231,9 +1231,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1250_madgraph", + name="graviton_hh_vbf_hbb_htt_m1250_madgraph", id=14310262, - processes=[procs.graviton_hh_vbf_bbtautau_m1250], + processes=[procs.graviton_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1242,9 +1242,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1500_madgraph", + name="graviton_hh_vbf_hbb_htt_m1500_madgraph", id=14310112, - processes=[procs.graviton_hh_vbf_bbtautau_m1500], + processes=[procs.graviton_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1253,9 +1253,9 @@ ) # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m1750_madgraph", +# name="graviton_hh_vbf_hbb_htt_m1750_madgraph", # id=14312650, -# processes=[procs.graviton_hh_vbf_bbtautau_m1750], +# processes=[procs.graviton_hh_vbf_hbb_htt_m1750], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1265,9 +1265,9 @@ # cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2000_madgraph", + name="graviton_hh_vbf_hbb_htt_m2000_madgraph", id=14309946, - processes=[procs.graviton_hh_vbf_bbtautau_m2000], + processes=[procs.graviton_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1276,9 +1276,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2500_madgraph", + name="graviton_hh_vbf_hbb_htt_m2500_madgraph", id=14310162, - processes=[procs.graviton_hh_vbf_bbtautau_m2500], + processes=[procs.graviton_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -1287,9 +1287,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m3000_madgraph", + name="graviton_hh_vbf_hbb_htt_m3000_madgraph", id=14309917, - processes=[procs.graviton_hh_vbf_bbtautau_m3000], + processes=[procs.graviton_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py b/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py index 63e8b235..5110dfe0 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py @@ -14,9 +14,9 @@ # SM cpn.add_dataset( - name="hh_ggf_bbtautau_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", id=14336680, - processes=[procs.hh_ggf_bbtautau], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -26,9 +26,9 @@ # BSM scenarios cpn.add_dataset( - name="hh_ggf_bbtautau_node1_madgraph", + name="hh_ggf_hbb_htt_node1_madgraph", id=14366362, - processes=[procs.hh_ggf_bbtautau_node1], + processes=[procs.hh_ggf_hbb_htt_node1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_1_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -38,9 +38,9 @@ # missing # cpn.add_dataset( -# name="hh_ggf_bbtautau_node2_madgraph", +# name="hh_ggf_hbb_htt_node2_madgraph", # id=, -# processes=[procs.hh_ggf_bbtautau_node2], +# processes=[procs.hh_ggf_hbb_htt_node2], # keys=[ # "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_2_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -49,9 +49,9 @@ # ) cpn.add_dataset( - name="hh_ggf_bbtautau_node3_madgraph", + name="hh_ggf_hbb_htt_node3_madgraph", id=14369747, - processes=[procs.hh_ggf_bbtautau_node3], + processes=[procs.hh_ggf_hbb_htt_node3], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_3_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -60,9 +60,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node4_madgraph", + name="hh_ggf_hbb_htt_node4_madgraph", id=14368375, - processes=[procs.hh_ggf_bbtautau_node4], + processes=[procs.hh_ggf_hbb_htt_node4], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_4_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -71,9 +71,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node5_madgraph", + name="hh_ggf_hbb_htt_node5_madgraph", id=14364195, - processes=[procs.hh_ggf_bbtautau_node5], + processes=[procs.hh_ggf_hbb_htt_node5], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_5_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -82,9 +82,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node6_madgraph", + name="hh_ggf_hbb_htt_node6_madgraph", id=14368376, - processes=[procs.hh_ggf_bbtautau_node6], + processes=[procs.hh_ggf_hbb_htt_node6], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_6_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -93,9 +93,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node7_madgraph", + name="hh_ggf_hbb_htt_node7_madgraph", id=14369764, - processes=[procs.hh_ggf_bbtautau_node7], + processes=[procs.hh_ggf_hbb_htt_node7], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_7_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -104,9 +104,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node8_madgraph", + name="hh_ggf_hbb_htt_node8_madgraph", id=14370426, - processes=[procs.hh_ggf_bbtautau_node8], + processes=[procs.hh_ggf_hbb_htt_node8], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_8_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -115,9 +115,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node9_madgraph", + name="hh_ggf_hbb_htt_node9_madgraph", id=14366977, - processes=[procs.hh_ggf_bbtautau_node9], + processes=[procs.hh_ggf_hbb_htt_node9], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_9_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -126,9 +126,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node10_madgraph", + name="hh_ggf_hbb_htt_node10_madgraph", id=14369844, - processes=[procs.hh_ggf_bbtautau_node10], + processes=[procs.hh_ggf_hbb_htt_node10], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_10_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -137,9 +137,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node11_madgraph", + name="hh_ggf_hbb_htt_node11_madgraph", id=14368408, - processes=[procs.hh_ggf_bbtautau_node11], + processes=[procs.hh_ggf_hbb_htt_node11], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_11_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -148,9 +148,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node12_madgraph", + name="hh_ggf_hbb_htt_node12_madgraph", id=14368374, - processes=[procs.hh_ggf_bbtautau_node12], + processes=[procs.hh_ggf_hbb_htt_node12], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_12_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -164,9 +164,9 @@ # cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m250_madgraph", + name="radion_hh_ggf_hbb_htt_m250_madgraph", id=14302777, - processes=[procs.radion_hh_ggf_bbtautau_m250], + processes=[procs.radion_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -175,9 +175,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m260_madgraph", + name="radion_hh_ggf_hbb_htt_m260_madgraph", id=14346707, - processes=[procs.radion_hh_ggf_bbtautau_m260], + processes=[procs.radion_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -186,9 +186,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m270_madgraph", + name="radion_hh_ggf_hbb_htt_m270_madgraph", id=14308899, - processes=[procs.radion_hh_ggf_bbtautau_m270], + processes=[procs.radion_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -197,9 +197,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m280_madgraph", + name="radion_hh_ggf_hbb_htt_m280_madgraph", id=14346524, - processes=[procs.radion_hh_ggf_bbtautau_m280], + processes=[procs.radion_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -208,9 +208,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m300_madgraph", + name="radion_hh_ggf_hbb_htt_m300_madgraph", id=14305216, - processes=[procs.radion_hh_ggf_bbtautau_m300], + processes=[procs.radion_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -219,9 +219,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m320_madgraph", + name="radion_hh_ggf_hbb_htt_m320_madgraph", id=14317863, - processes=[procs.radion_hh_ggf_bbtautau_m320], + processes=[procs.radion_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -230,9 +230,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m350_madgraph", + name="radion_hh_ggf_hbb_htt_m350_madgraph", id=14305228, - processes=[procs.radion_hh_ggf_bbtautau_m350], + processes=[procs.radion_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -241,9 +241,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m400_madgraph", + name="radion_hh_ggf_hbb_htt_m400_madgraph", id=14304148, - processes=[procs.radion_hh_ggf_bbtautau_m400], + processes=[procs.radion_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -252,9 +252,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m450_madgraph", + name="radion_hh_ggf_hbb_htt_m450_madgraph", id=14327613, - processes=[procs.radion_hh_ggf_bbtautau_m450], + processes=[procs.radion_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -263,9 +263,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m500_madgraph", + name="radion_hh_ggf_hbb_htt_m500_madgraph", id=14305221, - processes=[procs.radion_hh_ggf_bbtautau_m500], + processes=[procs.radion_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -274,9 +274,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m550_madgraph", + name="radion_hh_ggf_hbb_htt_m550_madgraph", id=14302808, - processes=[procs.radion_hh_ggf_bbtautau_m550], + processes=[procs.radion_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -285,9 +285,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m600_madgraph", + name="radion_hh_ggf_hbb_htt_m600_madgraph", id=14308469, - processes=[procs.radion_hh_ggf_bbtautau_m600], + processes=[procs.radion_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -296,9 +296,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m650_madgraph", + name="radion_hh_ggf_hbb_htt_m650_madgraph", id=14346493, - processes=[procs.radion_hh_ggf_bbtautau_m650], + processes=[procs.radion_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -307,9 +307,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m700_madgraph", + name="radion_hh_ggf_hbb_htt_m700_madgraph", id=14346372, - processes=[procs.radion_hh_ggf_bbtautau_m700], + processes=[procs.radion_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -318,9 +318,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m750_madgraph", + name="radion_hh_ggf_hbb_htt_m750_madgraph", id=14346507, - processes=[procs.radion_hh_ggf_bbtautau_m750], + processes=[procs.radion_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -329,9 +329,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m800_madgraph", + name="radion_hh_ggf_hbb_htt_m800_madgraph", id=14327247, - processes=[procs.radion_hh_ggf_bbtautau_m800], + processes=[procs.radion_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -340,9 +340,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m850_madgraph", + name="radion_hh_ggf_hbb_htt_m850_madgraph", id=14329740, - processes=[procs.radion_hh_ggf_bbtautau_m850], + processes=[procs.radion_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -351,9 +351,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m900_madgraph", + name="radion_hh_ggf_hbb_htt_m900_madgraph", id=14346605, - processes=[procs.radion_hh_ggf_bbtautau_m900], + processes=[procs.radion_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -362,9 +362,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1000_madgraph", + name="radion_hh_ggf_hbb_htt_m1000_madgraph", id=14305457, - processes=[procs.radion_hh_ggf_bbtautau_m1000], + processes=[procs.radion_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -373,9 +373,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1250_madgraph", + name="radion_hh_ggf_hbb_htt_m1250_madgraph", id=14302759, - processes=[procs.radion_hh_ggf_bbtautau_m1250], + processes=[procs.radion_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -384,9 +384,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1500_madgraph", + name="radion_hh_ggf_hbb_htt_m1500_madgraph", id=14304452, - processes=[procs.radion_hh_ggf_bbtautau_m1500], + processes=[procs.radion_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -395,9 +395,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1750_madgraph", + name="radion_hh_ggf_hbb_htt_m1750_madgraph", id=14302315, - processes=[procs.radion_hh_ggf_bbtautau_m1750], + processes=[procs.radion_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -406,9 +406,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2000_madgraph", + name="radion_hh_ggf_hbb_htt_m2000_madgraph", id=14304853, - processes=[procs.radion_hh_ggf_bbtautau_m2000], + processes=[procs.radion_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -417,9 +417,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2500_madgraph", + name="radion_hh_ggf_hbb_htt_m2500_madgraph", id=14305723, - processes=[procs.radion_hh_ggf_bbtautau_m2500], + processes=[procs.radion_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -428,9 +428,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m3000_madgraph", + name="radion_hh_ggf_hbb_htt_m3000_madgraph", id=14346584, - processes=[procs.radion_hh_ggf_bbtautau_m3000], + processes=[procs.radion_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -444,9 +444,9 @@ # cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m250_madgraph", + name="graviton_hh_ggf_hbb_htt_m250_madgraph", id=14309793, - processes=[procs.graviton_hh_ggf_bbtautau_m250], + processes=[procs.graviton_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -455,9 +455,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m260_madgraph", + name="graviton_hh_ggf_hbb_htt_m260_madgraph", id=14302792, - processes=[procs.graviton_hh_ggf_bbtautau_m260], + processes=[procs.graviton_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -466,9 +466,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m270_madgraph", + name="graviton_hh_ggf_hbb_htt_m270_madgraph", id=14330676, - processes=[procs.graviton_hh_ggf_bbtautau_m270], + processes=[procs.graviton_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -477,9 +477,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m280_madgraph", + name="graviton_hh_ggf_hbb_htt_m280_madgraph", id=14330326, - processes=[procs.graviton_hh_ggf_bbtautau_m280], + processes=[procs.graviton_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -488,9 +488,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m300_madgraph", + name="graviton_hh_ggf_hbb_htt_m300_madgraph", id=14346485, - processes=[procs.graviton_hh_ggf_bbtautau_m300], + processes=[procs.graviton_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -499,9 +499,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m320_madgraph", + name="graviton_hh_ggf_hbb_htt_m320_madgraph", id=14335123, - processes=[procs.graviton_hh_ggf_bbtautau_m320], + processes=[procs.graviton_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -510,9 +510,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m350_madgraph", + name="graviton_hh_ggf_hbb_htt_m350_madgraph", id=14346502, - processes=[procs.graviton_hh_ggf_bbtautau_m350], + processes=[procs.graviton_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -521,9 +521,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m400_madgraph", + name="graviton_hh_ggf_hbb_htt_m400_madgraph", id=14346355, - processes=[procs.graviton_hh_ggf_bbtautau_m400], + processes=[procs.graviton_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -532,9 +532,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m450_madgraph", + name="graviton_hh_ggf_hbb_htt_m450_madgraph", id=14311442, - processes=[procs.graviton_hh_ggf_bbtautau_m450], + processes=[procs.graviton_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -543,9 +543,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m500_madgraph", + name="graviton_hh_ggf_hbb_htt_m500_madgraph", id=14307226, - processes=[procs.graviton_hh_ggf_bbtautau_m500], + processes=[procs.graviton_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -554,9 +554,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m550_madgraph", + name="graviton_hh_ggf_hbb_htt_m550_madgraph", id=14302414, - processes=[procs.graviton_hh_ggf_bbtautau_m550], + processes=[procs.graviton_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -565,9 +565,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m600_madgraph", + name="graviton_hh_ggf_hbb_htt_m600_madgraph", id=14302378, - processes=[procs.graviton_hh_ggf_bbtautau_m600], + processes=[procs.graviton_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -576,9 +576,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m650_madgraph", + name="graviton_hh_ggf_hbb_htt_m650_madgraph", id=14309720, - processes=[procs.graviton_hh_ggf_bbtautau_m650], + processes=[procs.graviton_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -587,9 +587,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m700_madgraph", + name="graviton_hh_ggf_hbb_htt_m700_madgraph", id=14305200, - processes=[procs.graviton_hh_ggf_bbtautau_m700], + processes=[procs.graviton_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -598,9 +598,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m750_madgraph", + name="graviton_hh_ggf_hbb_htt_m750_madgraph", id=14346504, - processes=[procs.graviton_hh_ggf_bbtautau_m750], + processes=[procs.graviton_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -609,9 +609,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m800_madgraph", + name="graviton_hh_ggf_hbb_htt_m800_madgraph", id=14346495, - processes=[procs.graviton_hh_ggf_bbtautau_m800], + processes=[procs.graviton_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -620,9 +620,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m850_madgraph", + name="graviton_hh_ggf_hbb_htt_m850_madgraph", id=14346604, - processes=[procs.graviton_hh_ggf_bbtautau_m850], + processes=[procs.graviton_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -631,9 +631,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m900_madgraph", + name="graviton_hh_ggf_hbb_htt_m900_madgraph", id=14330168, - processes=[procs.graviton_hh_ggf_bbtautau_m900], + processes=[procs.graviton_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -642,9 +642,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1000_madgraph", + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", id=14307192, - processes=[procs.graviton_hh_ggf_bbtautau_m1000], + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -653,9 +653,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1250_madgraph", + name="graviton_hh_ggf_hbb_htt_m1250_madgraph", id=14305219, - processes=[procs.graviton_hh_ggf_bbtautau_m1250], + processes=[procs.graviton_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -664,9 +664,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1500_madgraph", + name="graviton_hh_ggf_hbb_htt_m1500_madgraph", id=14302337, - processes=[procs.graviton_hh_ggf_bbtautau_m1500], + processes=[procs.graviton_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -675,9 +675,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1750_madgraph", + name="graviton_hh_ggf_hbb_htt_m1750_madgraph", id=14307183, - processes=[procs.graviton_hh_ggf_bbtautau_m1750], + processes=[procs.graviton_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -686,9 +686,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2000_madgraph", + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", id=14304912, - processes=[procs.graviton_hh_ggf_bbtautau_m2000], + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -697,9 +697,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2500_madgraph", + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", id=14306377, - processes=[procs.graviton_hh_ggf_bbtautau_m2500], + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -708,9 +708,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m3000_madgraph", + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", id=14305674, - processes=[procs.graviton_hh_ggf_bbtautau_m3000], + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -724,9 +724,9 @@ # cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m250_madgraph", + name="radion_hh_vbf_hbb_htt_m250_madgraph", id=14313383, - processes=[procs.radion_hh_vbf_bbtautau_m250], + processes=[procs.radion_hh_vbf_hbb_htt_m250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -735,9 +735,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m260_madgraph", + name="radion_hh_vbf_hbb_htt_m260_madgraph", id=14312102, - processes=[procs.radion_hh_vbf_bbtautau_m260], + processes=[procs.radion_hh_vbf_hbb_htt_m260], keys=[ "/VBFToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -746,9 +746,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m270_madgraph", + name="radion_hh_vbf_hbb_htt_m270_madgraph", id=14315423, - processes=[procs.radion_hh_vbf_bbtautau_m270], + processes=[procs.radion_hh_vbf_hbb_htt_m270], keys=[ "/VBFToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -757,9 +757,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m280_madgraph", + name="radion_hh_vbf_hbb_htt_m280_madgraph", id=14315394, - processes=[procs.radion_hh_vbf_bbtautau_m280], + processes=[procs.radion_hh_vbf_hbb_htt_m280], keys=[ "/VBFToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -768,9 +768,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m300_madgraph", + name="radion_hh_vbf_hbb_htt_m300_madgraph", id=14312259, - processes=[procs.radion_hh_vbf_bbtautau_m300], + processes=[procs.radion_hh_vbf_hbb_htt_m300], keys=[ "/VBFToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -779,9 +779,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m320_madgraph", + name="radion_hh_vbf_hbb_htt_m320_madgraph", id=14315335, - processes=[procs.radion_hh_vbf_bbtautau_m320], + processes=[procs.radion_hh_vbf_hbb_htt_m320], keys=[ "/VBFToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -790,9 +790,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m350_madgraph", + name="radion_hh_vbf_hbb_htt_m350_madgraph", id=14315249, - processes=[procs.radion_hh_vbf_bbtautau_m350], + processes=[procs.radion_hh_vbf_hbb_htt_m350], keys=[ "/VBFToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -801,9 +801,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m400_madgraph", + name="radion_hh_vbf_hbb_htt_m400_madgraph", id=14315364, - processes=[procs.radion_hh_vbf_bbtautau_m400], + processes=[procs.radion_hh_vbf_hbb_htt_m400], keys=[ "/VBFToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -813,9 +813,9 @@ # missing # cpn.add_dataset( -# name="radion_hh_vbf_bbtautau_m450_madgraph", +# name="radion_hh_vbf_hbb_htt_m450_madgraph", # id=, -# processes=[procs.radion_hh_vbf_bbtautau_m450], +# processes=[procs.radion_hh_vbf_hbb_htt_m450], # keys=[ # "/VBFToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -824,9 +824,9 @@ # ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m500_madgraph", + name="radion_hh_vbf_hbb_htt_m500_madgraph", id=14315911, - processes=[procs.radion_hh_vbf_bbtautau_m500], + processes=[procs.radion_hh_vbf_hbb_htt_m500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -835,9 +835,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m550_madgraph", + name="radion_hh_vbf_hbb_htt_m550_madgraph", id=14313492, - processes=[procs.radion_hh_vbf_bbtautau_m550], + processes=[procs.radion_hh_vbf_hbb_htt_m550], keys=[ "/VBFToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -846,9 +846,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m600_madgraph", + name="radion_hh_vbf_hbb_htt_m600_madgraph", id=14313271, - processes=[procs.radion_hh_vbf_bbtautau_m600], + processes=[procs.radion_hh_vbf_hbb_htt_m600], keys=[ "/VBFToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -857,9 +857,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m650_madgraph", + name="radion_hh_vbf_hbb_htt_m650_madgraph", id=14313413, - processes=[procs.radion_hh_vbf_bbtautau_m650], + processes=[procs.radion_hh_vbf_hbb_htt_m650], keys=[ "/VBFToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -868,9 +868,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m700_madgraph", + name="radion_hh_vbf_hbb_htt_m700_madgraph", id=14312044, - processes=[procs.radion_hh_vbf_bbtautau_m700], + processes=[procs.radion_hh_vbf_hbb_htt_m700], keys=[ "/VBFToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -879,9 +879,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m750_madgraph", + name="radion_hh_vbf_hbb_htt_m750_madgraph", id=14313296, - processes=[procs.radion_hh_vbf_bbtautau_m750], + processes=[procs.radion_hh_vbf_hbb_htt_m750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -890,9 +890,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m800_madgraph", + name="radion_hh_vbf_hbb_htt_m800_madgraph", id=14311221, - processes=[procs.radion_hh_vbf_bbtautau_m800], + processes=[procs.radion_hh_vbf_hbb_htt_m800], keys=[ "/VBFToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -901,9 +901,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m850_madgraph", + name="radion_hh_vbf_hbb_htt_m850_madgraph", id=14312594, - processes=[procs.radion_hh_vbf_bbtautau_m850], + processes=[procs.radion_hh_vbf_hbb_htt_m850], keys=[ "/VBFToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -912,9 +912,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m900_madgraph", + name="radion_hh_vbf_hbb_htt_m900_madgraph", id=14312083, - processes=[procs.radion_hh_vbf_bbtautau_m900], + processes=[procs.radion_hh_vbf_hbb_htt_m900], keys=[ "/VBFToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -923,9 +923,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1000_madgraph", + name="radion_hh_vbf_hbb_htt_m1000_madgraph", id=14311676, - processes=[procs.radion_hh_vbf_bbtautau_m1000], + processes=[procs.radion_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -934,9 +934,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1250_madgraph", + name="radion_hh_vbf_hbb_htt_m1250_madgraph", id=14313782, - processes=[procs.radion_hh_vbf_bbtautau_m1250], + processes=[procs.radion_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -945,9 +945,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1500_madgraph", + name="radion_hh_vbf_hbb_htt_m1500_madgraph", id=14315286, - processes=[procs.radion_hh_vbf_bbtautau_m1500], + processes=[procs.radion_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -956,9 +956,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1750_madgraph", + name="radion_hh_vbf_hbb_htt_m1750_madgraph", id=14314144, - processes=[procs.radion_hh_vbf_bbtautau_m1750], + processes=[procs.radion_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -967,9 +967,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2000_madgraph", + name="radion_hh_vbf_hbb_htt_m2000_madgraph", id=14319538, - processes=[procs.radion_hh_vbf_bbtautau_m2000], + processes=[procs.radion_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -978,9 +978,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2500_madgraph", + name="radion_hh_vbf_hbb_htt_m2500_madgraph", id=14316124, - processes=[procs.radion_hh_vbf_bbtautau_m2500], + processes=[procs.radion_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -989,9 +989,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m3000_madgraph", + name="radion_hh_vbf_hbb_htt_m3000_madgraph", id=14316141, - processes=[procs.radion_hh_vbf_bbtautau_m3000], + processes=[procs.radion_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1005,9 +1005,9 @@ # cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m250_madgraph", + name="graviton_hh_vbf_hbb_htt_m250_madgraph", id=14313377, - processes=[procs.graviton_hh_vbf_bbtautau_m250], + processes=[procs.graviton_hh_vbf_hbb_htt_m250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1016,9 +1016,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m260_madgraph", + name="graviton_hh_vbf_hbb_htt_m260_madgraph", id=14312620, - processes=[procs.graviton_hh_vbf_bbtautau_m260], + processes=[procs.graviton_hh_vbf_hbb_htt_m260], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1027,9 +1027,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m270_madgraph", + name="graviton_hh_vbf_hbb_htt_m270_madgraph", id=14311771, - processes=[procs.graviton_hh_vbf_bbtautau_m270], + processes=[procs.graviton_hh_vbf_hbb_htt_m270], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1038,9 +1038,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m280_madgraph", + name="graviton_hh_vbf_hbb_htt_m280_madgraph", id=14313366, - processes=[procs.graviton_hh_vbf_bbtautau_m280], + processes=[procs.graviton_hh_vbf_hbb_htt_m280], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1049,9 +1049,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m300_madgraph", + name="graviton_hh_vbf_hbb_htt_m300_madgraph", id=14312031, - processes=[procs.graviton_hh_vbf_bbtautau_m300], + processes=[procs.graviton_hh_vbf_hbb_htt_m300], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1060,9 +1060,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m320_madgraph", + name="graviton_hh_vbf_hbb_htt_m320_madgraph", id=14312181, - processes=[procs.graviton_hh_vbf_bbtautau_m320], + processes=[procs.graviton_hh_vbf_hbb_htt_m320], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1071,9 +1071,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m350_madgraph", + name="graviton_hh_vbf_hbb_htt_m350_madgraph", id=14312121, - processes=[procs.graviton_hh_vbf_bbtautau_m350], + processes=[procs.graviton_hh_vbf_hbb_htt_m350], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1082,9 +1082,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m400_madgraph", + name="graviton_hh_vbf_hbb_htt_m400_madgraph", id=14312057, - processes=[procs.graviton_hh_vbf_bbtautau_m400], + processes=[procs.graviton_hh_vbf_hbb_htt_m400], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1094,9 +1094,9 @@ # missing # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m450_madgraph", +# name="graviton_hh_vbf_hbb_htt_m450_madgraph", # id=, -# processes=[procs.graviton_hh_vbf_bbtautau_m450], +# processes=[procs.graviton_hh_vbf_hbb_htt_m450], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1105,9 +1105,9 @@ # ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m500_madgraph", + name="graviton_hh_vbf_hbb_htt_m500_madgraph", id=14312369, - processes=[procs.graviton_hh_vbf_bbtautau_m500], + processes=[procs.graviton_hh_vbf_hbb_htt_m500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1116,9 +1116,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m550_madgraph", + name="graviton_hh_vbf_hbb_htt_m550_madgraph", id=14312211, - processes=[procs.graviton_hh_vbf_bbtautau_m550], + processes=[procs.graviton_hh_vbf_hbb_htt_m550], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1127,9 +1127,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m600_madgraph", + name="graviton_hh_vbf_hbb_htt_m600_madgraph", id=14312266, - processes=[procs.graviton_hh_vbf_bbtautau_m600], + processes=[procs.graviton_hh_vbf_hbb_htt_m600], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1138,9 +1138,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m650_madgraph", + name="graviton_hh_vbf_hbb_htt_m650_madgraph", id=14312370, - processes=[procs.graviton_hh_vbf_bbtautau_m650], + processes=[procs.graviton_hh_vbf_hbb_htt_m650], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1149,9 +1149,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m700_madgraph", + name="graviton_hh_vbf_hbb_htt_m700_madgraph", id=14313347, - processes=[procs.graviton_hh_vbf_bbtautau_m700], + processes=[procs.graviton_hh_vbf_hbb_htt_m700], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1160,9 +1160,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m750_madgraph", + name="graviton_hh_vbf_hbb_htt_m750_madgraph", id=14312212, - processes=[procs.graviton_hh_vbf_bbtautau_m750], + processes=[procs.graviton_hh_vbf_hbb_htt_m750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1171,9 +1171,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m800_madgraph", + name="graviton_hh_vbf_hbb_htt_m800_madgraph", id=14312060, - processes=[procs.graviton_hh_vbf_bbtautau_m800], + processes=[procs.graviton_hh_vbf_hbb_htt_m800], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1182,9 +1182,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m850_madgraph", + name="graviton_hh_vbf_hbb_htt_m850_madgraph", id=14312295, - processes=[procs.graviton_hh_vbf_bbtautau_m850], + processes=[procs.graviton_hh_vbf_hbb_htt_m850], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1194,9 +1194,9 @@ # missing # cpn.add_dataset( -# name="graviton_hh_vbf_bbtautau_m900_madgraph", +# name="graviton_hh_vbf_hbb_htt_m900_madgraph", # id=, -# processes=[procs.graviton_hh_vbf_bbtautau_m900], +# processes=[procs.graviton_hh_vbf_hbb_htt_m900], # keys=[ # "/VBFToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -1205,9 +1205,9 @@ # ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1000_madgraph", + name="graviton_hh_vbf_hbb_htt_m1000_madgraph", id=14312631, - processes=[procs.graviton_hh_vbf_bbtautau_m1000], + processes=[procs.graviton_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1216,9 +1216,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1250_madgraph", + name="graviton_hh_vbf_hbb_htt_m1250_madgraph", id=14311308, - processes=[procs.graviton_hh_vbf_bbtautau_m1250], + processes=[procs.graviton_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1227,9 +1227,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1500_madgraph", + name="graviton_hh_vbf_hbb_htt_m1500_madgraph", id=14311279, - processes=[procs.graviton_hh_vbf_bbtautau_m1500], + processes=[procs.graviton_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1238,9 +1238,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1750_madgraph", + name="graviton_hh_vbf_hbb_htt_m1750_madgraph", id=14312650, - processes=[procs.graviton_hh_vbf_bbtautau_m1750], + processes=[procs.graviton_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1249,9 +1249,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2000_madgraph", + name="graviton_hh_vbf_hbb_htt_m2000_madgraph", id=14312081, - processes=[procs.graviton_hh_vbf_bbtautau_m2000], + processes=[procs.graviton_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1260,9 +1260,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2500_madgraph", + name="graviton_hh_vbf_hbb_htt_m2500_madgraph", id=14312147, - processes=[procs.graviton_hh_vbf_bbtautau_m2500], + processes=[procs.graviton_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -1271,9 +1271,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m3000_madgraph", + name="graviton_hh_vbf_hbb_htt_m3000_madgraph", id=14313382, - processes=[procs.graviton_hh_vbf_bbtautau_m3000], + processes=[procs.graviton_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py index ecabcfdd..192500e5 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py @@ -14,9 +14,9 @@ # SM cpn.add_dataset( - name="hh_ggf_bbtautau_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", id=14356126, - processes=[procs.hh_ggf_bbtautau], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -26,9 +26,9 @@ # BSM scenarios cpn.add_dataset( - name="hh_ggf_bbtautau_node1_madgraph", + name="hh_ggf_hbb_htt_node1_madgraph", id=14347001, - processes=[procs.hh_ggf_bbtautau_node1], + processes=[procs.hh_ggf_hbb_htt_node1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_1_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -37,9 +37,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node2_madgraph", + name="hh_ggf_hbb_htt_node2_madgraph", id=14356588, - processes=[procs.hh_ggf_bbtautau_node2], + processes=[procs.hh_ggf_hbb_htt_node2], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_2_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -48,9 +48,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node3_madgraph", + name="hh_ggf_hbb_htt_node3_madgraph", id=14356108, - processes=[procs.hh_ggf_bbtautau_node3], + processes=[procs.hh_ggf_hbb_htt_node3], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_3_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -59,9 +59,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node4_madgraph", + name="hh_ggf_hbb_htt_node4_madgraph", id=14361307, - processes=[procs.hh_ggf_bbtautau_node4], + processes=[procs.hh_ggf_hbb_htt_node4], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_4_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -70,9 +70,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node5_madgraph", + name="hh_ggf_hbb_htt_node5_madgraph", id=14356161, - processes=[procs.hh_ggf_bbtautau_node5], + processes=[procs.hh_ggf_hbb_htt_node5], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_5_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -81,9 +81,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node6_madgraph", + name="hh_ggf_hbb_htt_node6_madgraph", id=14355979, - processes=[procs.hh_ggf_bbtautau_node6], + processes=[procs.hh_ggf_hbb_htt_node6], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_6_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -92,9 +92,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node7_madgraph", + name="hh_ggf_hbb_htt_node7_madgraph", id=14332092, - processes=[procs.hh_ggf_bbtautau_node7], + processes=[procs.hh_ggf_hbb_htt_node7], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_7_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -103,9 +103,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node8_madgraph", + name="hh_ggf_hbb_htt_node8_madgraph", id=14346840, - processes=[procs.hh_ggf_bbtautau_node8], + processes=[procs.hh_ggf_hbb_htt_node8], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_8_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -114,9 +114,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node9_madgraph", + name="hh_ggf_hbb_htt_node9_madgraph", id=14366101, - processes=[procs.hh_ggf_bbtautau_node9], + processes=[procs.hh_ggf_hbb_htt_node9], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_9_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -125,9 +125,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node10_madgraph", + name="hh_ggf_hbb_htt_node10_madgraph", id=14330790, - processes=[procs.hh_ggf_bbtautau_node10], + processes=[procs.hh_ggf_hbb_htt_node10], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_10_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -136,9 +136,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node11_madgraph", + name="hh_ggf_hbb_htt_node11_madgraph", id=14332902, - processes=[procs.hh_ggf_bbtautau_node11], + processes=[procs.hh_ggf_hbb_htt_node11], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_11_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -147,9 +147,9 @@ ) cpn.add_dataset( - name="hh_ggf_bbtautau_node12_madgraph", + name="hh_ggf_hbb_htt_node12_madgraph", id=14349211, - processes=[procs.hh_ggf_bbtautau_node12], + processes=[procs.hh_ggf_hbb_htt_node12], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_12_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -159,9 +159,9 @@ # ggF -> radion -> HH cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m250_madgraph", + name="radion_hh_ggf_hbb_htt_m250_madgraph", id=14304477, - processes=[procs.radion_hh_ggf_bbtautau_m250], + processes=[procs.radion_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -170,9 +170,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m260_madgraph", + name="radion_hh_ggf_hbb_htt_m260_madgraph", id=14331329, - processes=[procs.radion_hh_ggf_bbtautau_m260], + processes=[procs.radion_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -180,9 +180,9 @@ n_events=400000, ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m270_madgraph", + name="radion_hh_ggf_hbb_htt_m270_madgraph", id=14304157, - processes=[procs.radion_hh_ggf_bbtautau_m270], + processes=[procs.radion_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -191,9 +191,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m280_madgraph", + name="radion_hh_ggf_hbb_htt_m280_madgraph", id=14336941, - processes=[procs.radion_hh_ggf_bbtautau_m280], + processes=[procs.radion_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -202,9 +202,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m300_madgraph", + name="radion_hh_ggf_hbb_htt_m300_madgraph", id=14346478, - processes=[procs.radion_hh_ggf_bbtautau_m300], + processes=[procs.radion_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -213,9 +213,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m320_madgraph", + name="radion_hh_ggf_hbb_htt_m320_madgraph", id=14327224, - processes=[procs.radion_hh_ggf_bbtautau_m320], + processes=[procs.radion_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -224,9 +224,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m350_madgraph", + name="radion_hh_ggf_hbb_htt_m350_madgraph", id=14336895, - processes=[procs.radion_hh_ggf_bbtautau_m350], + processes=[procs.radion_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -235,9 +235,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m400_madgraph", + name="radion_hh_ggf_hbb_htt_m400_madgraph", id=14346467, - processes=[procs.radion_hh_ggf_bbtautau_m400], + processes=[procs.radion_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -246,9 +246,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m450_madgraph", + name="radion_hh_ggf_hbb_htt_m450_madgraph", id=14304159, - processes=[procs.radion_hh_ggf_bbtautau_m450], + processes=[procs.radion_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -257,9 +257,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m500_madgraph", + name="radion_hh_ggf_hbb_htt_m500_madgraph", id=14307144, - processes=[procs.radion_hh_ggf_bbtautau_m500], + processes=[procs.radion_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -268,9 +268,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m550_madgraph", + name="radion_hh_ggf_hbb_htt_m550_madgraph", id=14306515, - processes=[procs.radion_hh_ggf_bbtautau_m550], + processes=[procs.radion_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -279,9 +279,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m600_madgraph", + name="radion_hh_ggf_hbb_htt_m600_madgraph", id=14346429, - processes=[procs.radion_hh_ggf_bbtautau_m600], + processes=[procs.radion_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -290,9 +290,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m650_madgraph", + name="radion_hh_ggf_hbb_htt_m650_madgraph", id=14305052, - processes=[procs.radion_hh_ggf_bbtautau_m650], + processes=[procs.radion_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -301,9 +301,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m700_madgraph", + name="radion_hh_ggf_hbb_htt_m700_madgraph", id=14346381, - processes=[procs.radion_hh_ggf_bbtautau_m700], + processes=[procs.radion_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -312,9 +312,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m750_madgraph", + name="radion_hh_ggf_hbb_htt_m750_madgraph", id=14304450, - processes=[procs.radion_hh_ggf_bbtautau_m750], + processes=[procs.radion_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -323,9 +323,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m800_madgraph", + name="radion_hh_ggf_hbb_htt_m800_madgraph", id=14304421, - processes=[procs.radion_hh_ggf_bbtautau_m800], + processes=[procs.radion_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -334,9 +334,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m850_madgraph", + name="radion_hh_ggf_hbb_htt_m850_madgraph", id=14304905, - processes=[procs.radion_hh_ggf_bbtautau_m850], + processes=[procs.radion_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -345,9 +345,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m900_madgraph", + name="radion_hh_ggf_hbb_htt_m900_madgraph", id=14313896, - processes=[procs.radion_hh_ggf_bbtautau_m900], + processes=[procs.radion_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -356,9 +356,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1000_madgraph", + name="radion_hh_ggf_hbb_htt_m1000_madgraph", id=14346481, - processes=[procs.radion_hh_ggf_bbtautau_m1000], + processes=[procs.radion_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -367,9 +367,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1250_madgraph", + name="radion_hh_ggf_hbb_htt_m1250_madgraph", id=14308354, - processes=[procs.radion_hh_ggf_bbtautau_m1250], + processes=[procs.radion_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -378,9 +378,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1500_madgraph", + name="radion_hh_ggf_hbb_htt_m1500_madgraph", id=14302066, - processes=[procs.radion_hh_ggf_bbtautau_m1500], + processes=[procs.radion_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -389,9 +389,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m1750_madgraph", + name="radion_hh_ggf_hbb_htt_m1750_madgraph", id=14346572, - processes=[procs.radion_hh_ggf_bbtautau_m1750], + processes=[procs.radion_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -400,9 +400,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2000_madgraph", + name="radion_hh_ggf_hbb_htt_m2000_madgraph", id=14318236, - processes=[procs.radion_hh_ggf_bbtautau_m2000], + processes=[procs.radion_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -411,9 +411,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m2500_madgraph", + name="radion_hh_ggf_hbb_htt_m2500_madgraph", id=14307129, - processes=[procs.radion_hh_ggf_bbtautau_m2500], + processes=[procs.radion_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -422,9 +422,9 @@ ) cpn.add_dataset( - name="radion_hh_ggf_bbtautau_m3000_madgraph", + name="radion_hh_ggf_hbb_htt_m3000_madgraph", id=14317809, - processes=[procs.radion_hh_ggf_bbtautau_m3000], + processes=[procs.radion_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -434,9 +434,9 @@ # ggF -> bulk graviton -> HH cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m250_madgraph", + name="graviton_hh_ggf_hbb_htt_m250_madgraph", id=14315749, - processes=[procs.graviton_hh_ggf_bbtautau_m250], + processes=[procs.graviton_hh_ggf_hbb_htt_m250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -445,9 +445,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m260_madgraph", + name="graviton_hh_ggf_hbb_htt_m260_madgraph", id=14302683, - processes=[procs.graviton_hh_ggf_bbtautau_m260], + processes=[procs.graviton_hh_ggf_hbb_htt_m260], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -456,9 +456,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m270_madgraph", + name="graviton_hh_ggf_hbb_htt_m270_madgraph", id=14346693, - processes=[procs.graviton_hh_ggf_bbtautau_m270], + processes=[procs.graviton_hh_ggf_hbb_htt_m270], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -467,9 +467,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m280_madgraph", + name="graviton_hh_ggf_hbb_htt_m280_madgraph", id=14346579, - processes=[procs.graviton_hh_ggf_bbtautau_m280], + processes=[procs.graviton_hh_ggf_hbb_htt_m280], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -478,9 +478,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m300_madgraph", + name="graviton_hh_ggf_hbb_htt_m300_madgraph", id=14346590, - processes=[procs.graviton_hh_ggf_bbtautau_m300], + processes=[procs.graviton_hh_ggf_hbb_htt_m300], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -489,9 +489,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m320_madgraph", + name="graviton_hh_ggf_hbb_htt_m320_madgraph", id=14346358, - processes=[procs.graviton_hh_ggf_bbtautau_m320], + processes=[procs.graviton_hh_ggf_hbb_htt_m320], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -500,9 +500,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m350_madgraph", + name="graviton_hh_ggf_hbb_htt_m350_madgraph", id=14317919, - processes=[procs.graviton_hh_ggf_bbtautau_m350], + processes=[procs.graviton_hh_ggf_hbb_htt_m350], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -511,9 +511,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m400_madgraph", + name="graviton_hh_ggf_hbb_htt_m400_madgraph", id=14346578, - processes=[procs.graviton_hh_ggf_bbtautau_m400], + processes=[procs.graviton_hh_ggf_hbb_htt_m400], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -522,9 +522,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m450_madgraph", + name="graviton_hh_ggf_hbb_htt_m450_madgraph", id=14307091, - processes=[procs.graviton_hh_ggf_bbtautau_m450], + processes=[procs.graviton_hh_ggf_hbb_htt_m450], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -533,9 +533,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m500_madgraph", + name="graviton_hh_ggf_hbb_htt_m500_madgraph", id=14346448, - processes=[procs.graviton_hh_ggf_bbtautau_m500], + processes=[procs.graviton_hh_ggf_hbb_htt_m500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -544,9 +544,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m550_madgraph", + name="graviton_hh_ggf_hbb_htt_m550_madgraph", id=14307153, - processes=[procs.graviton_hh_ggf_bbtautau_m550], + processes=[procs.graviton_hh_ggf_hbb_htt_m550], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -555,9 +555,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m600_madgraph", + name="graviton_hh_ggf_hbb_htt_m600_madgraph", id=14346863, - processes=[procs.graviton_hh_ggf_bbtautau_m600], + processes=[procs.graviton_hh_ggf_hbb_htt_m600], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -566,9 +566,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m650_madgraph", + name="graviton_hh_ggf_hbb_htt_m650_madgraph", id=14346653, - processes=[procs.graviton_hh_ggf_bbtautau_m650], + processes=[procs.graviton_hh_ggf_hbb_htt_m650], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -577,9 +577,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m700_madgraph", + name="graviton_hh_ggf_hbb_htt_m700_madgraph", id=14307198, - processes=[procs.graviton_hh_ggf_bbtautau_m700], + processes=[procs.graviton_hh_ggf_hbb_htt_m700], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -588,9 +588,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m750_madgraph", + name="graviton_hh_ggf_hbb_htt_m750_madgraph", id=14305701, - processes=[procs.graviton_hh_ggf_bbtautau_m750], + processes=[procs.graviton_hh_ggf_hbb_htt_m750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -599,9 +599,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m800_madgraph", + name="graviton_hh_ggf_hbb_htt_m800_madgraph", id=14311885, - processes=[procs.graviton_hh_ggf_bbtautau_m800], + processes=[procs.graviton_hh_ggf_hbb_htt_m800], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -610,9 +610,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m850_madgraph", + name="graviton_hh_ggf_hbb_htt_m850_madgraph", id=14315810, - processes=[procs.graviton_hh_ggf_bbtautau_m850], + processes=[procs.graviton_hh_ggf_hbb_htt_m850], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -621,9 +621,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m900_madgraph", + name="graviton_hh_ggf_hbb_htt_m900_madgraph", id=14327388, - processes=[procs.graviton_hh_ggf_bbtautau_m900], + processes=[procs.graviton_hh_ggf_hbb_htt_m900], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -632,9 +632,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1000_madgraph", + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", id=14346486, - processes=[procs.graviton_hh_ggf_bbtautau_m1000], + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -643,9 +643,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1250_madgraph", + name="graviton_hh_ggf_hbb_htt_m1250_madgraph", id=14304903, - processes=[procs.graviton_hh_ggf_bbtautau_m1250], + processes=[procs.graviton_hh_ggf_hbb_htt_m1250], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -654,9 +654,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1500_madgraph", + name="graviton_hh_ggf_hbb_htt_m1500_madgraph", id=14305049, - processes=[procs.graviton_hh_ggf_bbtautau_m1500], + processes=[procs.graviton_hh_ggf_hbb_htt_m1500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -665,9 +665,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m1750_madgraph", + name="graviton_hh_ggf_hbb_htt_m1750_madgraph", id=14307150, - processes=[procs.graviton_hh_ggf_bbtautau_m1750], + processes=[procs.graviton_hh_ggf_hbb_htt_m1750], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -676,9 +676,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2000_madgraph", + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", id=14304447, - processes=[procs.graviton_hh_ggf_bbtautau_m2000], + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -687,9 +687,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m2500_madgraph", + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", id=14327217, - processes=[procs.graviton_hh_ggf_bbtautau_m2500], + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -698,9 +698,9 @@ ) cpn.add_dataset( - name="graviton_hh_ggf_bbtautau_m3000_madgraph", + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", id=14305056, - processes=[procs.graviton_hh_ggf_bbtautau_m3000], + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], keys=[ "/GluGluToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -710,9 +710,9 @@ # vbf -> radion -> HH cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m250_madgraph", + name="radion_hh_vbf_hbb_htt_m250_madgraph", id=14311235, - processes=[procs.radion_hh_vbf_bbtautau_m250], + processes=[procs.radion_hh_vbf_hbb_htt_m250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -721,9 +721,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m260_madgraph", + name="radion_hh_vbf_hbb_htt_m260_madgraph", id=14310812, - processes=[procs.radion_hh_vbf_bbtautau_m260], + processes=[procs.radion_hh_vbf_hbb_htt_m260], keys=[ "/VBFToRadionToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -732,9 +732,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m270_madgraph", + name="radion_hh_vbf_hbb_htt_m270_madgraph", id=14310100, - processes=[procs.radion_hh_vbf_bbtautau_m270], + processes=[procs.radion_hh_vbf_hbb_htt_m270], keys=[ "/VBFToRadionToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -743,9 +743,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m280_madgraph", + name="radion_hh_vbf_hbb_htt_m280_madgraph", id=14310981, - processes=[procs.radion_hh_vbf_bbtautau_m280], + processes=[procs.radion_hh_vbf_hbb_htt_m280], keys=[ "/VBFToRadionToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -754,9 +754,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m300_madgraph", + name="radion_hh_vbf_hbb_htt_m300_madgraph", id=14311409, - processes=[procs.radion_hh_vbf_bbtautau_m300], + processes=[procs.radion_hh_vbf_hbb_htt_m300], keys=[ "/VBFToRadionToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -765,9 +765,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m320_madgraph", + name="radion_hh_vbf_hbb_htt_m320_madgraph", id=14309931, - processes=[procs.radion_hh_vbf_bbtautau_m320], + processes=[procs.radion_hh_vbf_hbb_htt_m320], keys=[ "/VBFToRadionToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -776,9 +776,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m350_madgraph", + name="radion_hh_vbf_hbb_htt_m350_madgraph", id=14310420, - processes=[procs.radion_hh_vbf_bbtautau_m350], + processes=[procs.radion_hh_vbf_hbb_htt_m350], keys=[ "/VBFToRadionToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -787,9 +787,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m400_madgraph", + name="radion_hh_vbf_hbb_htt_m400_madgraph", id=14310226, - processes=[procs.radion_hh_vbf_bbtautau_m400], + processes=[procs.radion_hh_vbf_hbb_htt_m400], keys=[ "/VBFToRadionToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -798,9 +798,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m450_madgraph", + name="radion_hh_vbf_hbb_htt_m450_madgraph", id=14310924, - processes=[procs.radion_hh_vbf_bbtautau_m450], + processes=[procs.radion_hh_vbf_hbb_htt_m450], keys=[ "/VBFToRadionToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -809,9 +809,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m500_madgraph", + name="radion_hh_vbf_hbb_htt_m500_madgraph", id=14311215, - processes=[procs.radion_hh_vbf_bbtautau_m500], + processes=[procs.radion_hh_vbf_hbb_htt_m500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -820,9 +820,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m550_madgraph", + name="radion_hh_vbf_hbb_htt_m550_madgraph", id=14310983, - processes=[procs.radion_hh_vbf_bbtautau_m550], + processes=[procs.radion_hh_vbf_hbb_htt_m550], keys=[ "/VBFToRadionToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -831,9 +831,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m600_madgraph", + name="radion_hh_vbf_hbb_htt_m600_madgraph", id=14310965, - processes=[procs.radion_hh_vbf_bbtautau_m600], + processes=[procs.radion_hh_vbf_hbb_htt_m600], keys=[ "/VBFToRadionToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -842,9 +842,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m650_madgraph", + name="radion_hh_vbf_hbb_htt_m650_madgraph", id=14310036, - processes=[procs.radion_hh_vbf_bbtautau_m650], + processes=[procs.radion_hh_vbf_hbb_htt_m650], keys=[ "/VBFToRadionToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -853,9 +853,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m700_madgraph", + name="radion_hh_vbf_hbb_htt_m700_madgraph", id=14310380, - processes=[procs.radion_hh_vbf_bbtautau_m700], + processes=[procs.radion_hh_vbf_hbb_htt_m700], keys=[ "/VBFToRadionToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -864,9 +864,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m750_madgraph", + name="radion_hh_vbf_hbb_htt_m750_madgraph", id=14310859, - processes=[procs.radion_hh_vbf_bbtautau_m750], + processes=[procs.radion_hh_vbf_hbb_htt_m750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -875,9 +875,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m800_madgraph", + name="radion_hh_vbf_hbb_htt_m800_madgraph", id=14310297, - processes=[procs.radion_hh_vbf_bbtautau_m800], + processes=[procs.radion_hh_vbf_hbb_htt_m800], keys=[ "/VBFToRadionToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -886,9 +886,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m850_madgraph", + name="radion_hh_vbf_hbb_htt_m850_madgraph", id=14310949, - processes=[procs.radion_hh_vbf_bbtautau_m850], + processes=[procs.radion_hh_vbf_hbb_htt_m850], keys=[ "/VBFToRadionToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -897,9 +897,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m900_madgraph", + name="radion_hh_vbf_hbb_htt_m900_madgraph", id=14310341, - processes=[procs.radion_hh_vbf_bbtautau_m900], + processes=[procs.radion_hh_vbf_hbb_htt_m900], keys=[ "/VBFToRadionToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -908,9 +908,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1000_madgraph", + name="radion_hh_vbf_hbb_htt_m1000_madgraph", id=14311345, - processes=[procs.radion_hh_vbf_bbtautau_m1000], + processes=[procs.radion_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -919,9 +919,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1250_madgraph", + name="radion_hh_vbf_hbb_htt_m1250_madgraph", id=14310805, - processes=[procs.radion_hh_vbf_bbtautau_m1250], + processes=[procs.radion_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -930,9 +930,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1500_madgraph", + name="radion_hh_vbf_hbb_htt_m1500_madgraph", id=14311124, - processes=[procs.radion_hh_vbf_bbtautau_m1500], + processes=[procs.radion_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -941,9 +941,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m1750_madgraph", + name="radion_hh_vbf_hbb_htt_m1750_madgraph", id=14310945, - processes=[procs.radion_hh_vbf_bbtautau_m1750], + processes=[procs.radion_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToRadionToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -952,9 +952,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2000_madgraph", + name="radion_hh_vbf_hbb_htt_m2000_madgraph", id=14310579, - processes=[procs.radion_hh_vbf_bbtautau_m2000], + processes=[procs.radion_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -963,9 +963,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m2500_madgraph", + name="radion_hh_vbf_hbb_htt_m2500_madgraph", id=14311168, - processes=[procs.radion_hh_vbf_bbtautau_m2500], + processes=[procs.radion_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToRadionToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -974,9 +974,9 @@ ) cpn.add_dataset( - name="radion_hh_vbf_bbtautau_m3000_madgraph", + name="radion_hh_vbf_hbb_htt_m3000_madgraph", id=14311447, - processes=[procs.radion_hh_vbf_bbtautau_m3000], + processes=[procs.radion_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToRadionToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -986,9 +986,9 @@ # vbf -> bulk graviton -> HH cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m250_madgraph", + name="graviton_hh_vbf_hbb_htt_m250_madgraph", id=14310533, - processes=[procs.graviton_hh_vbf_bbtautau_m250], + processes=[procs.graviton_hh_vbf_hbb_htt_m250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -997,9 +997,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m260_madgraph", + name="graviton_hh_vbf_hbb_htt_m260_madgraph", id=14311370, - processes=[procs.graviton_hh_vbf_bbtautau_m260], + processes=[procs.graviton_hh_vbf_hbb_htt_m260], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-260_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1008,9 +1008,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m270_madgraph", + name="graviton_hh_vbf_hbb_htt_m270_madgraph", id=14310664, - processes=[procs.graviton_hh_vbf_bbtautau_m270], + processes=[procs.graviton_hh_vbf_hbb_htt_m270], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-270_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1019,9 +1019,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m280_madgraph", + name="graviton_hh_vbf_hbb_htt_m280_madgraph", id=14311242, - processes=[procs.graviton_hh_vbf_bbtautau_m280], + processes=[procs.graviton_hh_vbf_hbb_htt_m280], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-280_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1030,9 +1030,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m300_madgraph", + name="graviton_hh_vbf_hbb_htt_m300_madgraph", id=14309982, - processes=[procs.graviton_hh_vbf_bbtautau_m300], + processes=[procs.graviton_hh_vbf_hbb_htt_m300], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-300_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1041,9 +1041,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m320_madgraph", + name="graviton_hh_vbf_hbb_htt_m320_madgraph", id=14311297, - processes=[procs.graviton_hh_vbf_bbtautau_m320], + processes=[procs.graviton_hh_vbf_hbb_htt_m320], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-320_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1052,9 +1052,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m350_madgraph", + name="graviton_hh_vbf_hbb_htt_m350_madgraph", id=14310572, - processes=[procs.graviton_hh_vbf_bbtautau_m350], + processes=[procs.graviton_hh_vbf_hbb_htt_m350], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-350_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1063,9 +1063,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m400_madgraph", + name="graviton_hh_vbf_hbb_htt_m400_madgraph", id=14311230, - processes=[procs.graviton_hh_vbf_bbtautau_m400], + processes=[procs.graviton_hh_vbf_hbb_htt_m400], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-400_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1074,9 +1074,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m450_madgraph", + name="graviton_hh_vbf_hbb_htt_m450_madgraph", id=14311274, - processes=[procs.graviton_hh_vbf_bbtautau_m450], + processes=[procs.graviton_hh_vbf_hbb_htt_m450], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-450_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1085,9 +1085,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m500_madgraph", + name="graviton_hh_vbf_hbb_htt_m500_madgraph", id=14310249, - processes=[procs.graviton_hh_vbf_bbtautau_m500], + processes=[procs.graviton_hh_vbf_hbb_htt_m500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1096,9 +1096,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m550_madgraph", + name="graviton_hh_vbf_hbb_htt_m550_madgraph", id=14311264, - processes=[procs.graviton_hh_vbf_bbtautau_m550], + processes=[procs.graviton_hh_vbf_hbb_htt_m550], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-550_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1107,9 +1107,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m600_madgraph", + name="graviton_hh_vbf_hbb_htt_m600_madgraph", id=14311268, - processes=[procs.graviton_hh_vbf_bbtautau_m600], + processes=[procs.graviton_hh_vbf_hbb_htt_m600], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-600_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1118,9 +1118,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m650_madgraph", + name="graviton_hh_vbf_hbb_htt_m650_madgraph", id=14309787, - processes=[procs.graviton_hh_vbf_bbtautau_m650], + processes=[procs.graviton_hh_vbf_hbb_htt_m650], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-650_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1129,9 +1129,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m700_madgraph", + name="graviton_hh_vbf_hbb_htt_m700_madgraph", id=14311344, - processes=[procs.graviton_hh_vbf_bbtautau_m700], + processes=[procs.graviton_hh_vbf_hbb_htt_m700], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-700_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1140,9 +1140,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m750_madgraph", + name="graviton_hh_vbf_hbb_htt_m750_madgraph", id=14309923, - processes=[procs.graviton_hh_vbf_bbtautau_m750], + processes=[procs.graviton_hh_vbf_hbb_htt_m750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1151,9 +1151,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m800_madgraph", + name="graviton_hh_vbf_hbb_htt_m800_madgraph", id=14310500, - processes=[procs.graviton_hh_vbf_bbtautau_m800], + processes=[procs.graviton_hh_vbf_hbb_htt_m800], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-800_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1162,9 +1162,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m850_madgraph", + name="graviton_hh_vbf_hbb_htt_m850_madgraph", id=14310560, - processes=[procs.graviton_hh_vbf_bbtautau_m850], + processes=[procs.graviton_hh_vbf_hbb_htt_m850], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-850_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1173,9 +1173,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m900_madgraph", + name="graviton_hh_vbf_hbb_htt_m900_madgraph", id=14309934, - processes=[procs.graviton_hh_vbf_bbtautau_m900], + processes=[procs.graviton_hh_vbf_hbb_htt_m900], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-900_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1184,9 +1184,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1000_madgraph", + name="graviton_hh_vbf_hbb_htt_m1000_madgraph", id=14310535, - processes=[procs.graviton_hh_vbf_bbtautau_m1000], + processes=[procs.graviton_hh_vbf_hbb_htt_m1000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1195,9 +1195,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1250_madgraph", + name="graviton_hh_vbf_hbb_htt_m1250_madgraph", id=14310728, - processes=[procs.graviton_hh_vbf_bbtautau_m1250], + processes=[procs.graviton_hh_vbf_hbb_htt_m1250], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1250_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1206,9 +1206,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1500_madgraph", + name="graviton_hh_vbf_hbb_htt_m1500_madgraph", id=14310657, - processes=[procs.graviton_hh_vbf_bbtautau_m1500], + processes=[procs.graviton_hh_vbf_hbb_htt_m1500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1217,9 +1217,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m1750_madgraph", + name="graviton_hh_vbf_hbb_htt_m1750_madgraph", id=14310681, - processes=[procs.graviton_hh_vbf_bbtautau_m1750], + processes=[procs.graviton_hh_vbf_hbb_htt_m1750], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-1750_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1228,9 +1228,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2000_madgraph", + name="graviton_hh_vbf_hbb_htt_m2000_madgraph", id=14311423, - processes=[procs.graviton_hh_vbf_bbtautau_m2000], + processes=[procs.graviton_hh_vbf_hbb_htt_m2000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1239,9 +1239,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m2500_madgraph", + name="graviton_hh_vbf_hbb_htt_m2500_madgraph", id=14310911, - processes=[procs.graviton_hh_vbf_bbtautau_m2500], + processes=[procs.graviton_hh_vbf_hbb_htt_m2500], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-2500_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -1250,9 +1250,9 @@ ) cpn.add_dataset( - name="graviton_hh_vbf_bbtautau_m3000_madgraph", + name="graviton_hh_vbf_hbb_htt_m3000_madgraph", id=14311366, - processes=[procs.graviton_hh_vbf_bbtautau_m3000], + processes=[procs.graviton_hh_vbf_hbb_htt_m3000], keys=[ "/VBFToBulkGravitonToHHTo2B2Tau_M-3000_TuneCP5_PSWeights_narrow_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 254041dc..be116065 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -5,63 +5,64 @@ """ __all__ = [ - "hh_ggf_bbtautau", - "hh_ggf_bbtautau_node1", "hh_ggf_bbtautau_node2", "hh_ggf_bbtautau_node3", - "hh_ggf_bbtautau_node4", "hh_ggf_bbtautau_node5", "hh_ggf_bbtautau_node6", - "hh_ggf_bbtautau_node7", "hh_ggf_bbtautau_node8", "hh_ggf_bbtautau_node9", - "hh_ggf_bbtautau_node10", "hh_ggf_bbtautau_node11", "hh_ggf_bbtautau_node12", - "radion_hh_ggf_bbtautau", - "radion_hh_ggf_bbtautau_m250", "radion_hh_ggf_bbtautau_m260", "radion_hh_ggf_bbtautau_m270", - "radion_hh_ggf_bbtautau_m280", "radion_hh_ggf_bbtautau_m300", "radion_hh_ggf_bbtautau_m320", - "radion_hh_ggf_bbtautau_m350", "radion_hh_ggf_bbtautau_m400", "radion_hh_ggf_bbtautau_m450", - "radion_hh_ggf_bbtautau_m500", "radion_hh_ggf_bbtautau_m550", "radion_hh_ggf_bbtautau_m600", - "radion_hh_ggf_bbtautau_m650", "radion_hh_ggf_bbtautau_m700", "radion_hh_ggf_bbtautau_m750", - "radion_hh_ggf_bbtautau_m800", "radion_hh_ggf_bbtautau_m850", "radion_hh_ggf_bbtautau_m900", - "radion_hh_ggf_bbtautau_m1000", "radion_hh_ggf_bbtautau_m1250", "radion_hh_ggf_bbtautau_m1500", - "radion_hh_ggf_bbtautau_m1750", "radion_hh_ggf_bbtautau_m2000", "radion_hh_ggf_bbtautau_m2500", - "radion_hh_ggf_bbtautau_m3000", "radion_hh_ggf_bbtautau_m1100", "radion_hh_ggf_bbtautau_m2400", - "radion_hh_ggf_bbtautau_m1300", "radion_hh_ggf_bbtautau_m1700", "radion_hh_ggf_bbtautau_m1200", - "radion_hh_ggf_bbtautau_m2200", "radion_hh_ggf_bbtautau_m2600", "radion_hh_ggf_bbtautau_m1400", - "radion_hh_ggf_bbtautau_m2800", "radion_hh_ggf_bbtautau_m1600", "radion_hh_ggf_bbtautau_m1900", - "radion_hh_ggf_bbtautau_m1800", - "graviton_hh_ggf_bbtautau", - "graviton_hh_ggf_bbtautau_m250", "graviton_hh_ggf_bbtautau_m260", - "graviton_hh_ggf_bbtautau_m270", "graviton_hh_ggf_bbtautau_m280", - "graviton_hh_ggf_bbtautau_m300", "graviton_hh_ggf_bbtautau_m320", - "graviton_hh_ggf_bbtautau_m350", "graviton_hh_ggf_bbtautau_m400", - "graviton_hh_ggf_bbtautau_m450", "graviton_hh_ggf_bbtautau_m500", - "graviton_hh_ggf_bbtautau_m550", "graviton_hh_ggf_bbtautau_m600", - "graviton_hh_ggf_bbtautau_m650", "graviton_hh_ggf_bbtautau_m700", - "graviton_hh_ggf_bbtautau_m750", "graviton_hh_ggf_bbtautau_m800", - "graviton_hh_ggf_bbtautau_m850", "graviton_hh_ggf_bbtautau_m900", - "graviton_hh_ggf_bbtautau_m1000", "graviton_hh_ggf_bbtautau_m1250", - "graviton_hh_ggf_bbtautau_m1500", "graviton_hh_ggf_bbtautau_m1750", - "graviton_hh_ggf_bbtautau_m2000", "graviton_hh_ggf_bbtautau_m2500", - "graviton_hh_ggf_bbtautau_m3000", - "radion_hh_vbf_bbtautau", - "radion_hh_vbf_bbtautau_m250", "radion_hh_vbf_bbtautau_m260", "radion_hh_vbf_bbtautau_m270", - "radion_hh_vbf_bbtautau_m280", "radion_hh_vbf_bbtautau_m300", "radion_hh_vbf_bbtautau_m320", - "radion_hh_vbf_bbtautau_m350", "radion_hh_vbf_bbtautau_m400", "radion_hh_vbf_bbtautau_m450", - "radion_hh_vbf_bbtautau_m500", "radion_hh_vbf_bbtautau_m550", "radion_hh_vbf_bbtautau_m600", - "radion_hh_vbf_bbtautau_m650", "radion_hh_vbf_bbtautau_m700", "radion_hh_vbf_bbtautau_m750", - "radion_hh_vbf_bbtautau_m800", "radion_hh_vbf_bbtautau_m850", "radion_hh_vbf_bbtautau_m900", - "radion_hh_vbf_bbtautau_m1000", "radion_hh_vbf_bbtautau_m1250", "radion_hh_vbf_bbtautau_m1500", - "radion_hh_vbf_bbtautau_m1750", "radion_hh_vbf_bbtautau_m2000", "radion_hh_vbf_bbtautau_m2500", - "radion_hh_vbf_bbtautau_m3000", - "graviton_hh_vbf_bbtautau", - "graviton_hh_vbf_bbtautau_m250", "graviton_hh_vbf_bbtautau_m260", - "graviton_hh_vbf_bbtautau_m270", "graviton_hh_vbf_bbtautau_m280", - "graviton_hh_vbf_bbtautau_m300", "graviton_hh_vbf_bbtautau_m320", - "graviton_hh_vbf_bbtautau_m350", "graviton_hh_vbf_bbtautau_m400", - "graviton_hh_vbf_bbtautau_m450", "graviton_hh_vbf_bbtautau_m500", - "graviton_hh_vbf_bbtautau_m550", "graviton_hh_vbf_bbtautau_m600", - "graviton_hh_vbf_bbtautau_m650", "graviton_hh_vbf_bbtautau_m700", - "graviton_hh_vbf_bbtautau_m750", "graviton_hh_vbf_bbtautau_m800", - "graviton_hh_vbf_bbtautau_m850", "graviton_hh_vbf_bbtautau_m900", - "graviton_hh_vbf_bbtautau_m1000", "graviton_hh_vbf_bbtautau_m1250", - "graviton_hh_vbf_bbtautau_m1500", "graviton_hh_vbf_bbtautau_m1750", - "graviton_hh_vbf_bbtautau_m2000", "graviton_hh_vbf_bbtautau_m2500", - "graviton_hh_vbf_bbtautau_m3000", + "hh_ggf_hbb_htt", + "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", + "hh_ggf_hbb_htt_node1", "hh_ggf_hbb_htt_node2", "hh_ggf_hbb_htt_node3", + "hh_ggf_hbb_htt_node4", "hh_ggf_hbb_htt_node5", "hh_ggf_hbb_htt_node6", + "hh_ggf_hbb_htt_node7", "hh_ggf_hbb_htt_node8", "hh_ggf_hbb_htt_node9", + "hh_ggf_hbb_htt_node10", "hh_ggf_hbb_htt_node11", "hh_ggf_hbb_htt_node12", + "radion_hh_ggf_hbb_htt", + "radion_hh_ggf_hbb_htt_m250", "radion_hh_ggf_hbb_htt_m260", "radion_hh_ggf_hbb_htt_m270", + "radion_hh_ggf_hbb_htt_m280", "radion_hh_ggf_hbb_htt_m300", "radion_hh_ggf_hbb_htt_m320", + "radion_hh_ggf_hbb_htt_m350", "radion_hh_ggf_hbb_htt_m400", "radion_hh_ggf_hbb_htt_m450", + "radion_hh_ggf_hbb_htt_m500", "radion_hh_ggf_hbb_htt_m550", "radion_hh_ggf_hbb_htt_m600", + "radion_hh_ggf_hbb_htt_m650", "radion_hh_ggf_hbb_htt_m700", "radion_hh_ggf_hbb_htt_m750", + "radion_hh_ggf_hbb_htt_m800", "radion_hh_ggf_hbb_htt_m850", "radion_hh_ggf_hbb_htt_m900", + "radion_hh_ggf_hbb_htt_m1000", "radion_hh_ggf_hbb_htt_m1250", "radion_hh_ggf_hbb_htt_m1500", + "radion_hh_ggf_hbb_htt_m1750", "radion_hh_ggf_hbb_htt_m2000", "radion_hh_ggf_hbb_htt_m2500", + "radion_hh_ggf_hbb_htt_m3000", "radion_hh_ggf_hbb_htt_m1100", "radion_hh_ggf_hbb_htt_m2400", + "radion_hh_ggf_hbb_htt_m1300", "radion_hh_ggf_hbb_htt_m1700", "radion_hh_ggf_hbb_htt_m1200", + "radion_hh_ggf_hbb_htt_m2200", "radion_hh_ggf_hbb_htt_m2600", "radion_hh_ggf_hbb_htt_m1400", + "radion_hh_ggf_hbb_htt_m2800", "radion_hh_ggf_hbb_htt_m1600", "radion_hh_ggf_hbb_htt_m1900", + "radion_hh_ggf_hbb_htt_m1800", + "graviton_hh_ggf_hbb_htt", + "graviton_hh_ggf_hbb_htt_m250", "graviton_hh_ggf_hbb_htt_m260", + "graviton_hh_ggf_hbb_htt_m270", "graviton_hh_ggf_hbb_htt_m280", + "graviton_hh_ggf_hbb_htt_m300", "graviton_hh_ggf_hbb_htt_m320", + "graviton_hh_ggf_hbb_htt_m350", "graviton_hh_ggf_hbb_htt_m400", + "graviton_hh_ggf_hbb_htt_m450", "graviton_hh_ggf_hbb_htt_m500", + "graviton_hh_ggf_hbb_htt_m550", "graviton_hh_ggf_hbb_htt_m600", + "graviton_hh_ggf_hbb_htt_m650", "graviton_hh_ggf_hbb_htt_m700", + "graviton_hh_ggf_hbb_htt_m750", "graviton_hh_ggf_hbb_htt_m800", + "graviton_hh_ggf_hbb_htt_m850", "graviton_hh_ggf_hbb_htt_m900", + "graviton_hh_ggf_hbb_htt_m1000", "graviton_hh_ggf_hbb_htt_m1250", + "graviton_hh_ggf_hbb_htt_m1500", "graviton_hh_ggf_hbb_htt_m1750", + "graviton_hh_ggf_hbb_htt_m2000", "graviton_hh_ggf_hbb_htt_m2500", + "graviton_hh_ggf_hbb_htt_m3000", + "radion_hh_vbf_hbb_htt", + "radion_hh_vbf_hbb_htt_m250", "radion_hh_vbf_hbb_htt_m260", "radion_hh_vbf_hbb_htt_m270", + "radion_hh_vbf_hbb_htt_m280", "radion_hh_vbf_hbb_htt_m300", "radion_hh_vbf_hbb_htt_m320", + "radion_hh_vbf_hbb_htt_m350", "radion_hh_vbf_hbb_htt_m400", "radion_hh_vbf_hbb_htt_m450", + "radion_hh_vbf_hbb_htt_m500", "radion_hh_vbf_hbb_htt_m550", "radion_hh_vbf_hbb_htt_m600", + "radion_hh_vbf_hbb_htt_m650", "radion_hh_vbf_hbb_htt_m700", "radion_hh_vbf_hbb_htt_m750", + "radion_hh_vbf_hbb_htt_m800", "radion_hh_vbf_hbb_htt_m850", "radion_hh_vbf_hbb_htt_m900", + "radion_hh_vbf_hbb_htt_m1000", "radion_hh_vbf_hbb_htt_m1250", "radion_hh_vbf_hbb_htt_m1500", + "radion_hh_vbf_hbb_htt_m1750", "radion_hh_vbf_hbb_htt_m2000", "radion_hh_vbf_hbb_htt_m2500", + "radion_hh_vbf_hbb_htt_m3000", + "graviton_hh_vbf_hbb_htt", + "graviton_hh_vbf_hbb_htt_m250", "graviton_hh_vbf_hbb_htt_m260", + "graviton_hh_vbf_hbb_htt_m270", "graviton_hh_vbf_hbb_htt_m280", + "graviton_hh_vbf_hbb_htt_m300", "graviton_hh_vbf_hbb_htt_m320", + "graviton_hh_vbf_hbb_htt_m350", "graviton_hh_vbf_hbb_htt_m400", + "graviton_hh_vbf_hbb_htt_m450", "graviton_hh_vbf_hbb_htt_m500", + "graviton_hh_vbf_hbb_htt_m550", "graviton_hh_vbf_hbb_htt_m600", + "graviton_hh_vbf_hbb_htt_m650", "graviton_hh_vbf_hbb_htt_m700", + "graviton_hh_vbf_hbb_htt_m750", "graviton_hh_vbf_hbb_htt_m800", + "graviton_hh_vbf_hbb_htt_m850", "graviton_hh_vbf_hbb_htt_m900", + "graviton_hh_vbf_hbb_htt_m1000", "graviton_hh_vbf_hbb_htt_m1250", + "graviton_hh_vbf_hbb_htt_m1500", "graviton_hh_vbf_hbb_htt_m1750", + "graviton_hh_vbf_hbb_htt_m2000", "graviton_hh_vbf_hbb_htt_m2500", + "graviton_hh_vbf_hbb_htt_m3000", ] from scinum import Number @@ -75,8 +76,8 @@ # ggF -> H -> HH # -hh_ggf_bbtautau = hh_ggf.add_process( - name="hh_ggf_bbtautau", +hh_ggf_hbb_htt = hh_ggf.add_process( + name="hh_ggf_hbb_htt", id=21100, label=r"$HH_{ggf} \rightarrow bb\tau\tau$", xsecs={ @@ -85,111 +86,130 @@ }, # TODO ) -hh_ggf_bbtautau_node1 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node1", +hh_ggf_hbb_htt_kl1_kt1_c20 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c20", + id=21200, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ (SM)", + xsecs={ + 13: hh_ggf_hbb_htt.get_xsec(13), + 13.6: hh_ggf_hbb_htt.get_xsec(13.6), + }, +) + +hh_ggf_hbb_htt_kl0_kt1_c20 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl0_kt1_c20", + id=21201, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 0$, $\kappa_t = 1, C_2 = 0$)", + xsecs={ + 13.6: Number(0.1), # TODO + }, +) + +hh_ggf_hbb_htt_node1 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node1", id=21101, - label=f"{hh_ggf_bbtautau.label} (node 1)", + label=f"{hh_ggf_hbb_htt.label} (node 1)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=1), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=1), }, ) -hh_ggf_bbtautau_node2 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node2", +hh_ggf_hbb_htt_node2 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node2", id=21102, - label=f"{hh_ggf_bbtautau.label} (node 2)", + label=f"{hh_ggf_hbb_htt.label} (node 2)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=2), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=2), }, ) -hh_ggf_bbtautau_node3 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node3", +hh_ggf_hbb_htt_node3 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node3", id=21103, - label=f"{hh_ggf_bbtautau.label} (node 3)", + label=f"{hh_ggf_hbb_htt.label} (node 3)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=3), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=3), }, ) -hh_ggf_bbtautau_node4 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node4", +hh_ggf_hbb_htt_node4 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node4", id=21104, - label=f"{hh_ggf_bbtautau.label} (node 4)", + label=f"{hh_ggf_hbb_htt.label} (node 4)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=4), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=4), }, ) -hh_ggf_bbtautau_node5 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node5", +hh_ggf_hbb_htt_node5 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node5", id=21105, - label=f"{hh_ggf_bbtautau.label} (node 5)", + label=f"{hh_ggf_hbb_htt.label} (node 5)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=5), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=5), }, ) -hh_ggf_bbtautau_node6 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node6", +hh_ggf_hbb_htt_node6 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node6", id=21106, - label=f"{hh_ggf_bbtautau.label} (node 6)", + label=f"{hh_ggf_hbb_htt.label} (node 6)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=6), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=6), }, ) -hh_ggf_bbtautau_node7 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node7", +hh_ggf_hbb_htt_node7 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node7", id=21107, - label=f"{hh_ggf_bbtautau.label} (node 7)", + label=f"{hh_ggf_hbb_htt.label} (node 7)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=7), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=7), }, ) -hh_ggf_bbtautau_node8 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node8", +hh_ggf_hbb_htt_node8 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node8", id=21108, - label=f"{hh_ggf_bbtautau.label} (node 8)", + label=f"{hh_ggf_hbb_htt.label} (node 8)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=8), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=8), }, ) -hh_ggf_bbtautau_node9 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node9", +hh_ggf_hbb_htt_node9 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node9", id=21109, - label=f"{hh_ggf_bbtautau.label} (node 9)", + label=f"{hh_ggf_hbb_htt.label} (node 9)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=9), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=9), }, ) -hh_ggf_bbtautau_node10 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node10", +hh_ggf_hbb_htt_node10 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node10", id=21110, - label=f"{hh_ggf_bbtautau.label} (node 10)", + label=f"{hh_ggf_hbb_htt.label} (node 10)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=10), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=10), }, ) -hh_ggf_bbtautau_node11 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node11", +hh_ggf_hbb_htt_node11 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node11", id=21111, - label=f"{hh_ggf_bbtautau.label} (node 11)", + label=f"{hh_ggf_hbb_htt.label} (node 11)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=11), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=11), }, ) -hh_ggf_bbtautau_node12 = hh_ggf.add_process( - name="hh_ggf_bbtautau_node12", +hh_ggf_hbb_htt_node12 = hh_ggf.add_process( + name="hh_ggf_hbb_htt_node12", id=21112, - label=f"{hh_ggf_bbtautau.label} (node 12)", + label=f"{hh_ggf_hbb_htt.label} (node 12)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_bbtautau.get_xsec(13), node_number=12), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=12), }, ) @@ -198,232 +218,232 @@ # ggF -> radion -> HH # -radion_hh_ggf_bbtautau = radion_hh_ggf.add_process( - name="radion_hh_ggf_bbtautau", +radion_hh_ggf_hbb_htt = radion_hh_ggf.add_process( + name="radion_hh_ggf_hbb_htt", id=23100, label=rf"{radion_hh_ggf.label} $\rightarrow bb\tau\tau$", xsecs={13: radion_hh_ggf.get_xsec(13) * const.br_hh.bbtt}, # TODO ) -radion_hh_ggf_bbtautau_m250 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m250", +radion_hh_ggf_hbb_htt_m250 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m250", id=23101, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m260 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m260", +radion_hh_ggf_hbb_htt_m260 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m260", id=23102, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m270 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m270", +radion_hh_ggf_hbb_htt_m270 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m270", id=23103, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m280 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m280", +radion_hh_ggf_hbb_htt_m280 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m280", id=23104, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m300 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m300", +radion_hh_ggf_hbb_htt_m300 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m300", id=23105, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m320 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m320", +radion_hh_ggf_hbb_htt_m320 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m320", id=23106, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m350 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m350", +radion_hh_ggf_hbb_htt_m350 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m350", id=23107, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m400 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m400", +radion_hh_ggf_hbb_htt_m400 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m400", id=23108, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m450 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m450", +radion_hh_ggf_hbb_htt_m450 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m450", id=23109, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m500 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m500", +radion_hh_ggf_hbb_htt_m500 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m500", id=23110, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m550 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m550", +radion_hh_ggf_hbb_htt_m550 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m550", id=23111, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m600 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m600", +radion_hh_ggf_hbb_htt_m600 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m600", id=23112, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m650 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m650", +radion_hh_ggf_hbb_htt_m650 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m650", id=23113, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m700 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m700", +radion_hh_ggf_hbb_htt_m700 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m700", id=23114, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m750 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m750", +radion_hh_ggf_hbb_htt_m750 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m750", id=23115, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m800 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m800", +radion_hh_ggf_hbb_htt_m800 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m800", id=23116, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m850 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m850", +radion_hh_ggf_hbb_htt_m850 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m850", id=23117, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m900 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m900", +radion_hh_ggf_hbb_htt_m900 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m900", id=23118, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1000 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1000", +radion_hh_ggf_hbb_htt_m1000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1000", id=23119, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1250 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1250", +radion_hh_ggf_hbb_htt_m1250 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1250", id=23120, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1500 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1500", +radion_hh_ggf_hbb_htt_m1500 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1500", id=23121, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1750 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1750", +radion_hh_ggf_hbb_htt_m1750 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1750", id=23122, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2000 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2000", +radion_hh_ggf_hbb_htt_m2000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2000", id=23123, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2500 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2500", +radion_hh_ggf_hbb_htt_m2500 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2500", id=23124, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m3000 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m3000", +radion_hh_ggf_hbb_htt_m3000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m3000", id=23125, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1100 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1100", +radion_hh_ggf_hbb_htt_m1100 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1100", id=23126, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2400 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2400", +radion_hh_ggf_hbb_htt_m2400 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2400", id=23127, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1300 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1300", +radion_hh_ggf_hbb_htt_m1300 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1300", id=23128, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1700 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1700", +radion_hh_ggf_hbb_htt_m1700 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1700", id=23129, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1200 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1200", +radion_hh_ggf_hbb_htt_m1200 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1200", id=23130, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2200 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2200", +radion_hh_ggf_hbb_htt_m2200 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2200", id=23131, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2600 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2600", +radion_hh_ggf_hbb_htt_m2600 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2600", id=23132, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1400 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1400", +radion_hh_ggf_hbb_htt_m1400 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1400", id=23133, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m2800 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m2800", +radion_hh_ggf_hbb_htt_m2800 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2800", id=23134, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1600 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1600", +radion_hh_ggf_hbb_htt_m1600 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1600", id=23135, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1900 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1900", +radion_hh_ggf_hbb_htt_m1900 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1900", id=23136, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_ggf_bbtautau_m1800 = radion_hh_ggf_bbtautau.add_process( - name="radion_hh_ggf_bbtautau_m1800", +radion_hh_ggf_hbb_htt_m1800 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1800", id=23137, xsecs={13: Number(0.1)}, # TODO ) @@ -432,159 +452,159 @@ # ggF -> bulk graviton -> HH # -graviton_hh_ggf_bbtautau = graviton_hh_ggf.add_process( - name="graviton_hh_ggf_bbtautau", +graviton_hh_ggf_hbb_htt = graviton_hh_ggf.add_process( + name="graviton_hh_ggf_hbb_htt", id=24100, label=rf"{graviton_hh_ggf.label} $\rightarrow bb\tau\tau$", xsecs={13: graviton_hh_ggf.get_xsec(13) * const.br_hh.bbtt}, # TODO ) -graviton_hh_ggf_bbtautau_m250 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m250", +graviton_hh_ggf_hbb_htt_m250 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m250", id=24101, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m260 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m260", +graviton_hh_ggf_hbb_htt_m260 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m260", id=24102, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m270 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m270", +graviton_hh_ggf_hbb_htt_m270 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m270", id=24103, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m280 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m280", +graviton_hh_ggf_hbb_htt_m280 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m280", id=24104, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m300 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m300", +graviton_hh_ggf_hbb_htt_m300 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m300", id=24105, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m320 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m320", +graviton_hh_ggf_hbb_htt_m320 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m320", id=24106, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m350 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m350", +graviton_hh_ggf_hbb_htt_m350 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m350", id=24107, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m400 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m400", +graviton_hh_ggf_hbb_htt_m400 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m400", id=24108, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m450 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m450", +graviton_hh_ggf_hbb_htt_m450 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m450", id=24109, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m500 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m500", +graviton_hh_ggf_hbb_htt_m500 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m500", id=24110, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m550 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m550", +graviton_hh_ggf_hbb_htt_m550 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m550", id=24111, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m600 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m600", +graviton_hh_ggf_hbb_htt_m600 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m600", id=24112, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m650 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m650", +graviton_hh_ggf_hbb_htt_m650 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m650", id=24113, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m700 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m700", +graviton_hh_ggf_hbb_htt_m700 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m700", id=24114, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m750 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m750", +graviton_hh_ggf_hbb_htt_m750 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m750", id=24115, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m800 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m800", +graviton_hh_ggf_hbb_htt_m800 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m800", id=24116, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m850 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m850", +graviton_hh_ggf_hbb_htt_m850 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m850", id=24117, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m900 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m900", +graviton_hh_ggf_hbb_htt_m900 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m900", id=24118, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m1000 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m1000", +graviton_hh_ggf_hbb_htt_m1000 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1000", id=24119, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m1250 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m1250", +graviton_hh_ggf_hbb_htt_m1250 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1250", id=24120, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m1500 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m1500", +graviton_hh_ggf_hbb_htt_m1500 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1500", id=24121, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m1750 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m1750", +graviton_hh_ggf_hbb_htt_m1750 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1750", id=24122, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m2000 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m2000", +graviton_hh_ggf_hbb_htt_m2000 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m2000", id=24123, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m2500 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m2500", +graviton_hh_ggf_hbb_htt_m2500 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m2500", id=24124, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_ggf_bbtautau_m3000 = graviton_hh_ggf_bbtautau.add_process( - name="graviton_hh_ggf_bbtautau_m3000", +graviton_hh_ggf_hbb_htt_m3000 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m3000", id=24125, xsecs={13: Number(0.1)}, # TODO ) @@ -594,159 +614,159 @@ # vbf -> radion -> HH # -radion_hh_vbf_bbtautau = radion_hh_vbf.add_process( - name="radion_hh_vbf_bbtautau", +radion_hh_vbf_hbb_htt = radion_hh_vbf.add_process( + name="radion_hh_vbf_hbb_htt", id=25100, label=rf"{radion_hh_vbf.label} $\rightarrow bb\tau\tau$", xsecs={13: radion_hh_vbf.get_xsec(13) * const.br_hh.bbtt}, # TODO ) -radion_hh_vbf_bbtautau_m250 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m250", +radion_hh_vbf_hbb_htt_m250 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m250", id=25101, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m260 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m260", +radion_hh_vbf_hbb_htt_m260 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m260", id=25102, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m270 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m270", +radion_hh_vbf_hbb_htt_m270 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m270", id=25103, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m280 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m280", +radion_hh_vbf_hbb_htt_m280 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m280", id=25104, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m300 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m300", +radion_hh_vbf_hbb_htt_m300 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m300", id=25105, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m320 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m320", +radion_hh_vbf_hbb_htt_m320 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m320", id=25106, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m350 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m350", +radion_hh_vbf_hbb_htt_m350 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m350", id=25107, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m400 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m400", +radion_hh_vbf_hbb_htt_m400 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m400", id=25108, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m450 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m450", +radion_hh_vbf_hbb_htt_m450 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m450", id=25109, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m500 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m500", +radion_hh_vbf_hbb_htt_m500 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m500", id=25110, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m550 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m550", +radion_hh_vbf_hbb_htt_m550 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m550", id=25111, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m600 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m600", +radion_hh_vbf_hbb_htt_m600 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m600", id=25112, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m650 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m650", +radion_hh_vbf_hbb_htt_m650 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m650", id=25113, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m700 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m700", +radion_hh_vbf_hbb_htt_m700 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m700", id=25114, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m750 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m750", +radion_hh_vbf_hbb_htt_m750 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m750", id=25115, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m800 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m800", +radion_hh_vbf_hbb_htt_m800 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m800", id=25116, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m850 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m850", +radion_hh_vbf_hbb_htt_m850 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m850", id=25117, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m900 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m900", +radion_hh_vbf_hbb_htt_m900 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m900", id=25118, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m1000 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m1000", +radion_hh_vbf_hbb_htt_m1000 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m1000", id=25119, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m1250 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m1250", +radion_hh_vbf_hbb_htt_m1250 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m1250", id=25120, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m1500 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m1500", +radion_hh_vbf_hbb_htt_m1500 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m1500", id=25121, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m1750 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m1750", +radion_hh_vbf_hbb_htt_m1750 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m1750", id=25122, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m2000 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m2000", +radion_hh_vbf_hbb_htt_m2000 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m2000", id=25123, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m2500 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m2500", +radion_hh_vbf_hbb_htt_m2500 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m2500", id=25124, xsecs={13: Number(0.1)}, # TODO ) -radion_hh_vbf_bbtautau_m3000 = radion_hh_vbf_bbtautau.add_process( - name="radion_hh_vbf_bbtautau_m3000", +radion_hh_vbf_hbb_htt_m3000 = radion_hh_vbf_hbb_htt.add_process( + name="radion_hh_vbf_hbb_htt_m3000", id=25125, xsecs={13: Number(0.1)}, # TODO ) @@ -756,159 +776,159 @@ # vbf -> bulk graviton -> HH # -graviton_hh_vbf_bbtautau = graviton_hh_vbf.add_process( - name="graviton_hh_vbf_bbtautau", +graviton_hh_vbf_hbb_htt = graviton_hh_vbf.add_process( + name="graviton_hh_vbf_hbb_htt", id=26100, label=rf"{graviton_hh_vbf.label} $\rightarrow bb\tau\tau$", xsecs={13: graviton_hh_vbf.get_xsec(13) * const.br_hh.bbtt}, # TODO ) -graviton_hh_vbf_bbtautau_m250 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m250", +graviton_hh_vbf_hbb_htt_m250 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m250", id=26101, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m260 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m260", +graviton_hh_vbf_hbb_htt_m260 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m260", id=26102, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m270 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m270", +graviton_hh_vbf_hbb_htt_m270 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m270", id=26103, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m280 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m280", +graviton_hh_vbf_hbb_htt_m280 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m280", id=26104, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m300 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m300", +graviton_hh_vbf_hbb_htt_m300 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m300", id=26105, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m320 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m320", +graviton_hh_vbf_hbb_htt_m320 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m320", id=26106, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m350 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m350", +graviton_hh_vbf_hbb_htt_m350 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m350", id=26107, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m400 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m400", +graviton_hh_vbf_hbb_htt_m400 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m400", id=26108, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m450 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m450", +graviton_hh_vbf_hbb_htt_m450 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m450", id=26109, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m500 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m500", +graviton_hh_vbf_hbb_htt_m500 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m500", id=26110, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m550 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m550", +graviton_hh_vbf_hbb_htt_m550 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m550", id=26111, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m600 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m600", +graviton_hh_vbf_hbb_htt_m600 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m600", id=26112, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m650 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m650", +graviton_hh_vbf_hbb_htt_m650 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m650", id=26113, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m700 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m700", +graviton_hh_vbf_hbb_htt_m700 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m700", id=26114, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m750 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m750", +graviton_hh_vbf_hbb_htt_m750 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m750", id=26115, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m800 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m800", +graviton_hh_vbf_hbb_htt_m800 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m800", id=26116, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m850 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m850", +graviton_hh_vbf_hbb_htt_m850 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m850", id=26117, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m900 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m900", +graviton_hh_vbf_hbb_htt_m900 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m900", id=26118, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m1000 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m1000", +graviton_hh_vbf_hbb_htt_m1000 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m1000", id=26119, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m1250 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m1250", +graviton_hh_vbf_hbb_htt_m1250 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m1250", id=26120, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m1500 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m1500", +graviton_hh_vbf_hbb_htt_m1500 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m1500", id=26121, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m1750 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m1750", +graviton_hh_vbf_hbb_htt_m1750 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m1750", id=26122, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m2000 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m2000", +graviton_hh_vbf_hbb_htt_m2000 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m2000", id=26123, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m2500 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m2500", +graviton_hh_vbf_hbb_htt_m2500 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m2500", id=26124, xsecs={13: Number(0.1)}, # TODO ) -graviton_hh_vbf_bbtautau_m3000 = graviton_hh_vbf_bbtautau.add_process( - name="graviton_hh_vbf_bbtautau_m3000", +graviton_hh_vbf_hbb_htt_m3000 = graviton_hh_vbf_hbb_htt.add_process( + name="graviton_hh_vbf_hbb_htt_m3000", id=26125, xsecs={13: Number(0.1)}, # TODO ) From 7f1676d3e89e02f4e1a2aebfd60938ca2e225c10 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 10 Jun 2024 08:10:20 +0200 Subject: [PATCH 10/42] Update merging, comment non-working datasets for now. --- .../run3_2022_preEE_nano_uhh_v12/data.py | 48 +- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 73 +- .../hh2bbtautau.py | 1872 +++++++++-------- .../run3_2022_preEE_nano_uhh_v12/higgs.py | 78 +- .../run3_2022_preEE_nano_uhh_v12/top.py | 253 ++- cmsdb/processes/hh2bbtautau.py | 23 +- 6 files changed, 1322 insertions(+), 1025 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index e55d0239..45bc2b26 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -21,10 +21,12 @@ keys=[ "/Muon/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=177, + n_files=94, n_events=138_329_693, aux={ - "nominal_merging_factor": 10, + "merging_factors": { + "nominal": 19, + }, "era": "C", }, ) @@ -37,10 +39,12 @@ keys=[ "/Muon/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=101, + n_files=51, n_events=75_440_027, aux={ - "nominal_merging_factor": 10, + "merging_factors": { + "nominal": 20, + }, "era": "D", }, ) @@ -58,10 +62,12 @@ keys=[ "/EGamma/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=373, + n_files=198, n_events=263_549_470, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 17, + }, "era": "C", }, ) @@ -74,10 +80,12 @@ keys=[ "/EGamma/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=136, + n_files=72, n_events=89_134_996, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 17, + }, "era": "D", }, ) @@ -96,10 +104,12 @@ keys=[ "/Tau/Run2022C-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=46, + n_files=23, n_events=25_903_135, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 16, + }, "era": "C", }, ) @@ -112,10 +122,12 @@ keys=[ "/Tau/Run2022D-22Sep2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=28, + n_files=16, n_events=16_686_692, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 16, + }, "era": "D", "jec_era": "RunCD", }, @@ -134,10 +146,12 @@ keys=[ "/JetMET/Run2022C-19Dec2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=359, + n_files=193, n_events=169_968_073, aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 13, + }, "era": "C", }, ) @@ -150,10 +164,12 @@ keys=[ "/JetMET/Run2022D-19Dec2023_NanoAODv12UHH-v1/NANOAOD", # noqa ], - n_files=224, + n_files=121, n_events=101_270_969, aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 13, + }, "era": "D", }, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index a4ce5365..2b1a8e95 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -12,6 +12,7 @@ # # Drell-Yan # + cpn.add_dataset( name="dy_m4to10_amcatnlo", id=14950079, @@ -19,10 +20,12 @@ keys=[ "/DYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=104, + n_files=52, n_events=99_060_810, aux={ - "nominal_merging_factor": 19, + "merging_factors": { + "nominal": 38, + }, }, ) @@ -34,10 +37,13 @@ "/DYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/DYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v1/NANOAODSIM", # noqa ], - n_files=78 + 56, + n_files=43 + 30, n_events=70_444_327 + 48_841_388, aux={ - "nominal_merging_factor": 12, + "merging_factors": { + "nominal": 22, + "nominal_ext1": 23, + }, }, ) @@ -50,10 +56,14 @@ "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v1/NANOAODSIM", # noqa "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext2-v2/NANOAODSIM", # noqa ], - n_files=136 + 186 + 200, + n_files=72 + 103 + 104, n_events=72_913_933 + 100_280_322 + 103_042_871, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 17, + "nominal_ext1": 18, + "nominal_ext2": 25, + }, }, ) @@ -69,10 +79,12 @@ keys=[ "/WtoLNu-2Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=140, + n_files=70, n_events=87_502_461, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 16, + }, }, ) @@ -89,7 +101,6 @@ # Di-boson # -# WW cpn.add_dataset( name="ww_pythia", id=14800066, @@ -97,14 +108,15 @@ keys=[ "/WW_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=30, + n_files=16, n_events=15_405_496, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 15, + }, }, ) -# WZ cpn.add_dataset( name="wz_pythia", id=14803893, @@ -112,14 +124,15 @@ keys=[ "/WZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=8, n_events=7_527_043, aux={ - "nominal_merging_factor": 10, + "merging_factors": { + "nominal": 19, + }, }, ) -# ZZ cpn.add_dataset( name="zz_pythia", id=14807788, @@ -127,10 +140,12 @@ keys=[ "/ZZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=3, + n_files=2, n_events=1_181_750, aux={ - "nominal_merging_factor": 11, + "merging_factors": { + "nominal": 16, + }, }, ) @@ -145,10 +160,12 @@ keys=[ "/WWW_4F_TuneCP5_13p6TeV_amcatnlo-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=2, + n_files=1, n_events=450_000, aux={ - "nominal_merging_factor": 13, + "merging_factors": { + "nominal": 26, + }, }, ) @@ -159,10 +176,12 @@ keys=[ "/WWZ_4F_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=1_950_044, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 15, + }, }, ) @@ -173,10 +192,12 @@ keys=[ "/WZZ_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=1_987_058, aux={ - "nominal_merging_factor": 6, + "merging_factors": { + "nominal": 12, + }, }, ) @@ -187,9 +208,11 @@ keys=[ "/ZZZ_TuneCP5_13p6TeV_amcatnlo-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=7, + n_files=4, n_events=1_970_234, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 13, + }, }, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py index 45d00d01..7f1ef5f6 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -21,14 +21,16 @@ keys=[ "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=4, + n_files=2, n_events=913_840, aux={ - "nominal_merging_factor": 30, + "merging_factors": { + "nominal": 59, + }, }, ) -# different couplings +# different couplings, keeping c2 = 0 cpn.add_dataset( name="hh_ggf_hbb_htt_kl0_kt1_c20_powheg", id=14796367, @@ -39,77 +41,9 @@ n_files=1, n_events=98_380, aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="hh_ggf_hbb_htt_kl0_kt1_c21_powheg", - id=14802513, - processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c21], - keys=[ - "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-1p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=98_902, - aux={ - "nominal_merging_factor": 4, - }, -) - -cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20p10_powheg", - id=14808587, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p10], - keys=[ - "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p10_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=98_551, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20p35_powheg", - id=14802756, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p35], - keys=[ - "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p35_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=98_705, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c23_powheg", - id=14800332, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c23], - keys=[ - "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-3p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=100_000, - aux={ - "nominal_merging_factor": 2, - }, -) - -cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c2m2_powheg", - id=14797893, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c2m2], - keys=[ - "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-m2p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=100_000, - aux={ - "nominal_merging_factor": 2, + "merging_factors": { + "nominal": 3, + }, }, ) @@ -123,7 +57,9 @@ n_files=1, n_events=97_635, aux={ - "nominal_merging_factor": 2, + "merging_factors": { + "nominal": 2, + }, }, ) @@ -137,806 +73,998 @@ n_files=1, n_events=99_647, aux={ - "nominal_merging_factor": 2, - }, -) + "merging_factors": { + "nominal": 2, + }, + }, +) + +# different bsm couplings, with c2 != 0 +# cpn.add_dataset( +# name="hh_ggf_hbb_htt_kl0_kt1_c21_powheg", +# id=14802513, +# processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c21], +# keys=[ +# "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-1p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=98_902, +# aux={ +# "merging_factors": { +# "nominal": 4, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_ggf_hbb_htt_kl1_kt1_c20p10_powheg", +# id=14808587, +# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p10], +# keys=[ +# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p10_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=98_551, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_ggf_hbb_htt_kl1_kt1_c20p35_powheg", +# id=14802756, +# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p35], +# keys=[ +# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p35_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=98_705, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_ggf_hbb_htt_kl1_kt1_c23_powheg", +# id=14800332, +# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c23], +# keys=[ +# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-3p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=100_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_ggf_hbb_htt_kl1_kt1_c2m2_powheg", +# id=14797893, +# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c2m2], +# keys=[ +# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-m2p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=100_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) # # vbf -> H -> HH # -# SM -cpn.add_dataset( - name="hh_vbf_hbb_htt_kv1_k2v1_kl1_madgraph", - id=14790613, - processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl1], - keys=[ - "/VBFHHto2B2Tau_CV_1_C2V_1_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=981_154, - aux={ - "nominal_merging_factor": 9, - }, -) - -# different couplings - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kv1_k2v0_kl1_madgraph", - id=14792505, - processes=[procs.hh_vbf_hbb_htt_kv1_k2v0_kl1], - keys=[ - "/VBFHHto2B2Tau_CV_1_C2V_0_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=988_736, - aux={ - "nominal_merging_factor": 8, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kv1_k2v1_kl2_madgraph", - id=14788949, - processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl2], - keys=[ - "/VBFHHto2B2Tau_CV-1_C2V-1_C3-2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=100_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kv1_k2v2_kl1_madgraph", - id=14805327, - processes=[procs.hh_vbf_hbb_htt_kv1_k2v2_kl1], - keys=[ - "/VBFHHto2B2Tau_CV-1_C2V-2_C3-1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=100_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4_madgraph", - id=14870775, - processes=[procs.hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4], - keys=[ - "/VBFHHto2B2Tau_CV-1p74_C2V-1p37_C3-14p4_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=994_424, - aux={ - "nominal_merging_factor": 16, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2_madgraph", - id=14874480, - processes=[procs.hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2], - keys=[ - "/VBFHHto2B2Tau_CV-m0p012_C2V-0p030_C3-10p2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=994_967, - aux={ - "nominal_merging_factor": 17, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3_madgraph", - id=14878149, - processes=[procs.hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3], - keys=[ - "/VBFHHto2B2Tau_CV-m0p758_C2V-1p44_C3-m19p3_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=998_602, - aux={ - "nominal_merging_factor": 12, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43_madgraph", - id=14873950, - processes=[procs.hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43], - keys=[ - "/VBFHHto2B2Tau_CV-m0p962_C2V-0p959_C3-m1p43_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=996_515, - aux={ - "nominal_merging_factor": 16, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94_madgraph", - id=14876058, - processes=[procs.hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94], - keys=[ - "/VBFHHto2B2Tau_CV-m1p21_C2V-1p94_C3-m0p94_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=995_107, - aux={ - "nominal_merging_factor": 13, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36_madgraph", - id=14870882, - processes=[procs.hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36], - keys=[ - "/VBFHHto2B2Tau_CV-m1p60_C2V-2p72_C3-m1p36_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=995_824, - aux={ - "nominal_merging_factor": 15, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39_madgraph", - id=14961165, - processes=[procs.hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39], - keys=[ - "/VBFHHto2B2Tau_CV-m1p83_C2V-3p57_C3-m3p39_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=1, - n_events=220_000, - aux={ - "nominal_merging_factor": 13, - }, -) - -cpn.add_dataset( - name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96_madgraph", - id=14877633, - processes=[procs.hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96], - keys=[ - "/VBFHHto2B2Tau_CV-m2p12_C2V-3p87_C3-m5p96_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - ], - n_files=4, - n_events=979_120, - aux={ - "nominal_merging_factor": 16, - }, -) - -# -# ggf -> graviton -> HH -# - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m250_madgraph", - id=14856827, - processes=[procs.graviton_hh_ggf_hbb_htt_m250], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m260_madgraph", - id=14873688, - processes=[procs.graviton_hh_ggf_hbb_htt_m260], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=84_490, - aux={ - "nominal_merging_factor": 21, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m270_madgraph", - id=14858113, - processes=[procs.graviton_hh_ggf_hbb_htt_m270], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 7, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m280_madgraph", - id=14867634, - processes=[procs.graviton_hh_ggf_hbb_htt_m280], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 21, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m300_madgraph", - id=14867934, - processes=[procs.graviton_hh_ggf_hbb_htt_m300], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_304, - aux={ - "nominal_merging_factor": 21, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m350_madgraph", - id=14868051, - processes=[procs.graviton_hh_ggf_hbb_htt_m350], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_303, - aux={ - "nominal_merging_factor": 17, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m450_madgraph", - id=14857139, - processes=[procs.graviton_hh_ggf_hbb_htt_m450], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 7, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m550_madgraph", - id=14875152, - processes=[procs.graviton_hh_ggf_hbb_htt_m550], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_312, - aux={ - "nominal_merging_factor": 20, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m600_madgraph", - id=14858155, - processes=[procs.graviton_hh_ggf_hbb_htt_m600], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 8, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m650_madgraph", - id=14856595, - processes=[procs.graviton_hh_ggf_hbb_htt_m650], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m700_madgraph", - id=14872537, - processes=[procs.graviton_hh_ggf_hbb_htt_m700], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_310, - aux={ - "nominal_merging_factor": 20, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m800_madgraph", - id=14856808, - processes=[procs.graviton_hh_ggf_hbb_htt_m800], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m1000_madgraph", - id=14854546, - processes=[procs.graviton_hh_ggf_hbb_htt_m1000], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 7, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m1200_madgraph", - id=14872343, - processes=[procs.graviton_hh_ggf_hbb_htt_m1200], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=21_332, - aux={ - "nominal_merging_factor": 12, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m1400_madgraph", - id=14856666, - processes=[procs.graviton_hh_ggf_hbb_htt_m1400], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 2, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m1600_madgraph", - id=14856941, - processes=[procs.graviton_hh_ggf_hbb_htt_m1600], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 10, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m1800_madgraph", - id=14858127, - processes=[procs.graviton_hh_ggf_hbb_htt_m1800], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 5, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m2000_madgraph", - id=14854608, - processes=[procs.graviton_hh_ggf_hbb_htt_m2000], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m2500_madgraph", - id=14865095, - processes=[procs.graviton_hh_ggf_hbb_htt_m2500], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 14, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m3000_madgraph", - id=14858129, - processes=[procs.graviton_hh_ggf_hbb_htt_m3000], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 2, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m4000_madgraph", - id=14885096, - processes=[procs.graviton_hh_ggf_hbb_htt_m4000], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa - ], - n_files=1, - n_events=21_342, - aux={ - "nominal_merging_factor": 9, - }, -) - -cpn.add_dataset( - name="graviton_hh_ggf_hbb_htt_m5000_madgraph", - id=14857131, - processes=[procs.graviton_hh_ggf_hbb_htt_m5000], - keys=[ - "/GluGlutoBulkGravitontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 10, - }, -) - -# -# ggf -> radion -> HH -# - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m250_madgraph", - id=14857343, - processes=[procs.radion_hh_ggf_hbb_htt_m250], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=85_196, - aux={ - "nominal_merging_factor": 17, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m260_madgraph", - id=14856713, - processes=[procs.radion_hh_ggf_hbb_htt_m260], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_279, - aux={ - "nominal_merging_factor": 6, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m270_madgraph", - id=14865091, - processes=[procs.radion_hh_ggf_hbb_htt_m270], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=87_298, - aux={ - "nominal_merging_factor": 17, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m280_madgraph", - id=14853129, - processes=[procs.radion_hh_ggf_hbb_htt_m280], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 19, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m300_madgraph", - id=14856618, - processes=[procs.radion_hh_ggf_hbb_htt_m300], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 5, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m350_madgraph", - id=14865104, - processes=[procs.radion_hh_ggf_hbb_htt_m350], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 16, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m450_madgraph", - id=14856872, - processes=[procs.radion_hh_ggf_hbb_htt_m450], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m550_madgraph", - id=14852999, - processes=[procs.radion_hh_ggf_hbb_htt_m550], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=85_915, - aux={ - "nominal_merging_factor": 16, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m600_madgraph", - id=14857113, - processes=[procs.radion_hh_ggf_hbb_htt_m600], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 5, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m650_madgraph", - id=14856968, - processes=[procs.radion_hh_ggf_hbb_htt_m650], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 5, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m700_madgraph", - id=14855971, - processes=[procs.radion_hh_ggf_hbb_htt_m700], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 6, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m800_madgraph", - id=14856917, - processes=[procs.radion_hh_ggf_hbb_htt_m800], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m1000_madgraph", - id=14856932, - processes=[procs.radion_hh_ggf_hbb_htt_m1000], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=88_000, - aux={ - "nominal_merging_factor": 6, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m1200_madgraph", - id=14856857, - processes=[procs.radion_hh_ggf_hbb_htt_m1200], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 3, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m1400_madgraph", - id=14856881, - processes=[procs.radion_hh_ggf_hbb_htt_m1400], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 2, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m1600_madgraph", - id=14872393, - processes=[procs.radion_hh_ggf_hbb_htt_m1600], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=21_345, - aux={ - "nominal_merging_factor": 13, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m1800_madgraph", - id=14856885, - processes=[procs.radion_hh_ggf_hbb_htt_m1800], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 2, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m2000_madgraph", - id=14854659, - processes=[procs.radion_hh_ggf_hbb_htt_m2000], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 15, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m2500_madgraph", - id=14874111, - processes=[procs.radion_hh_ggf_hbb_htt_m2500], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 14, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m3000_madgraph", - id=14874977, - processes=[procs.radion_hh_ggf_hbb_htt_m3000], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 17, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m4000_madgraph", - id=14856844, - processes=[procs.radion_hh_ggf_hbb_htt_m4000], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 4, - }, -) - -cpn.add_dataset( - name="radion_hh_ggf_hbb_htt_m5000_madgraph", - id=14854551, - processes=[procs.radion_hh_ggf_hbb_htt_m5000], - keys=[ - "/GluGlutoRadiontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa - ], - n_files=1, - n_events=22_000, - aux={ - "nominal_merging_factor": 4, - }, -) +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kv1_k2v1_kl1_madgraph", +# id=14790613, +# processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl1], +# keys=[ +# "/VBFHHto2B2Tau_CV_1_C2V_1_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=981_154, +# aux={ +# "merging_factors": { +# "nominal": 17, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kv1_k2v0_kl1_madgraph", +# id=14792505, +# processes=[procs.hh_vbf_hbb_htt_kv1_k2v0_kl1], +# keys=[ +# "/VBFHHto2B2Tau_CV_1_C2V_0_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=988_736, +# aux={ +# "merging_factors": { +# "nominal": 15, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kv1_k2v1_kl2_madgraph", +# id=14788949, +# processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl2], +# keys=[ +# "/VBFHHto2B2Tau_CV-1_C2V-1_C3-2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=100_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kv1_k2v2_kl1_madgraph", +# id=14805327, +# processes=[procs.hh_vbf_hbb_htt_kv1_k2v2_kl1], +# keys=[ +# "/VBFHHto2B2Tau_CV-1_C2V-2_C3-1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=100_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4_madgraph", +# id=14870775, +# processes=[procs.hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4], +# keys=[ +# "/VBFHHto2B2Tau_CV-1p74_C2V-1p37_C3-14p4_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=994_424, +# aux={ +# "merging_factors": { +# "nominal": 32, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2_madgraph", +# id=14874480, +# processes=[procs.hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2], +# keys=[ +# "/VBFHHto2B2Tau_CV-m0p012_C2V-0p030_C3-10p2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=994_967, +# aux={ +# "merging_factors": { +# "nominal": 33, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3_madgraph", +# id=14878149, +# processes=[procs.hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3], +# keys=[ +# "/VBFHHto2B2Tau_CV-m0p758_C2V-1p44_C3-m19p3_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=998_602, +# aux={ +# "merging_factors": { +# "nominal": 23, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43_madgraph", +# id=14873950, +# processes=[procs.hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43], +# keys=[ +# "/VBFHHto2B2Tau_CV-m0p962_C2V-0p959_C3-m1p43_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=996_515, +# aux={ +# "merging_factors": { +# "nominal": 31, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94_madgraph", +# id=14876058, +# processes=[procs.hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94], +# keys=[ +# "/VBFHHto2B2Tau_CV-m1p21_C2V-1p94_C3-m0p94_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=995_107, +# aux={ +# "merging_factors": { +# "nominal": 25, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36_madgraph", +# id=14870882, +# processes=[procs.hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36], +# keys=[ +# "/VBFHHto2B2Tau_CV-m1p60_C2V-2p72_C3-m1p36_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=995_824, +# aux={ +# "merging_factors": { +# "nominal": 29, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39_madgraph", +# id=14961165, +# processes=[procs.hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39], +# keys=[ +# "/VBFHHto2B2Tau_CV-m1p83_C2V-3p57_C3-m3p39_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=220_000, +# aux={ +# "merging_factors": { +# "nominal": 13, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96_madgraph", +# id=14877633, +# processes=[procs.hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96], +# keys=[ +# "/VBFHHto2B2Tau_CV-m2p12_C2V-3p87_C3-m5p96_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa +# ], +# n_files=2, +# n_events=979_120, +# aux={ +# "merging_factors": { +# "nominal": 32, +# }, +# }, +# ) + +# # +# # ggf -> graviton -> HH +# # + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m250_madgraph", +# id=14856827, +# processes=[procs.graviton_hh_ggf_hbb_htt_m250], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m260_madgraph", +# id=14873688, +# processes=[procs.graviton_hh_ggf_hbb_htt_m260], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=84_490, +# aux={ +# "merging_factors": { +# "nominal": 21, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m270_madgraph", +# id=14858113, +# processes=[procs.graviton_hh_ggf_hbb_htt_m270], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 7, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m280_madgraph", +# id=14867634, +# processes=[procs.graviton_hh_ggf_hbb_htt_m280], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 21, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m300_madgraph", +# id=14867934, +# processes=[procs.graviton_hh_ggf_hbb_htt_m300], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_304, +# aux={ +# "merging_factors": { +# "nominal": 21, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m350_madgraph", +# id=14868051, +# processes=[procs.graviton_hh_ggf_hbb_htt_m350], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_303, +# aux={ +# "merging_factors": { +# "nominal": 17, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m450_madgraph", +# id=14857139, +# processes=[procs.graviton_hh_ggf_hbb_htt_m450], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 7, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m550_madgraph", +# id=14875152, +# processes=[procs.graviton_hh_ggf_hbb_htt_m550], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_312, +# aux={ +# "merging_factors": { +# "nominal": 20, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m600_madgraph", +# id=14858155, +# processes=[procs.graviton_hh_ggf_hbb_htt_m600], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 8, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m650_madgraph", +# id=14856595, +# processes=[procs.graviton_hh_ggf_hbb_htt_m650], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m700_madgraph", +# id=14872537, +# processes=[procs.graviton_hh_ggf_hbb_htt_m700], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_310, +# aux={ +# "merging_factors": { +# "nominal": 20, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m800_madgraph", +# id=14856808, +# processes=[procs.graviton_hh_ggf_hbb_htt_m800], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m1000_madgraph", +# id=14854546, +# processes=[procs.graviton_hh_ggf_hbb_htt_m1000], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 7, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m1200_madgraph", +# id=14872343, +# processes=[procs.graviton_hh_ggf_hbb_htt_m1200], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=21_332, +# aux={ +# "merging_factors": { +# "nominal": 12, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m1400_madgraph", +# id=14856666, +# processes=[procs.graviton_hh_ggf_hbb_htt_m1400], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m1600_madgraph", +# id=14856941, +# processes=[procs.graviton_hh_ggf_hbb_htt_m1600], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 10, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m1800_madgraph", +# id=14858127, +# processes=[procs.graviton_hh_ggf_hbb_htt_m1800], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 5, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m2000_madgraph", +# id=14854608, +# processes=[procs.graviton_hh_ggf_hbb_htt_m2000], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m2500_madgraph", +# id=14865095, +# processes=[procs.graviton_hh_ggf_hbb_htt_m2500], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 14, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m3000_madgraph", +# id=14858129, +# processes=[procs.graviton_hh_ggf_hbb_htt_m3000], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m4000_madgraph", +# id=14885096, +# processes=[procs.graviton_hh_ggf_hbb_htt_m4000], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=21_342, +# aux={ +# "merging_factors": { +# "nominal": 9, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="graviton_hh_ggf_hbb_htt_m5000_madgraph", +# id=14857131, +# processes=[procs.graviton_hh_ggf_hbb_htt_m5000], +# keys=[ +# "/GluGlutoBulkGravitontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 10, +# }, +# }, +# ) + +# # +# # ggf -> radion -> HH +# # + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m250_madgraph", +# id=14857343, +# processes=[procs.radion_hh_ggf_hbb_htt_m250], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=85_196, +# aux={ +# "merging_factors": { +# "nominal": 17, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m260_madgraph", +# id=14856713, +# processes=[procs.radion_hh_ggf_hbb_htt_m260], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_279, +# aux={ +# "merging_factors": { +# "nominal": 6, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m270_madgraph", +# id=14865091, +# processes=[procs.radion_hh_ggf_hbb_htt_m270], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=87_298, +# aux={ +# "merging_factors": { +# "nominal": 17, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m280_madgraph", +# id=14853129, +# processes=[procs.radion_hh_ggf_hbb_htt_m280], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 19, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m300_madgraph", +# id=14856618, +# processes=[procs.radion_hh_ggf_hbb_htt_m300], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 5, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m350_madgraph", +# id=14865104, +# processes=[procs.radion_hh_ggf_hbb_htt_m350], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 16, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m450_madgraph", +# id=14856872, +# processes=[procs.radion_hh_ggf_hbb_htt_m450], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m550_madgraph", +# id=14852999, +# processes=[procs.radion_hh_ggf_hbb_htt_m550], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=85_915, +# aux={ +# "merging_factors": { +# "nominal": 16, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m600_madgraph", +# id=14857113, +# processes=[procs.radion_hh_ggf_hbb_htt_m600], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 5, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m650_madgraph", +# id=14856968, +# processes=[procs.radion_hh_ggf_hbb_htt_m650], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 5, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m700_madgraph", +# id=14855971, +# processes=[procs.radion_hh_ggf_hbb_htt_m700], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 6, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m800_madgraph", +# id=14856917, +# processes=[procs.radion_hh_ggf_hbb_htt_m800], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m1000_madgraph", +# id=14856932, +# processes=[procs.radion_hh_ggf_hbb_htt_m1000], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=88_000, +# aux={ +# "merging_factors": { +# "nominal": 6, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m1200_madgraph", +# id=14856857, +# processes=[procs.radion_hh_ggf_hbb_htt_m1200], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 3, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m1400_madgraph", +# id=14856881, +# processes=[procs.radion_hh_ggf_hbb_htt_m1400], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m1600_madgraph", +# id=14872393, +# processes=[procs.radion_hh_ggf_hbb_htt_m1600], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=21_345, +# aux={ +# "merging_factors": { +# "nominal": 13, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m1800_madgraph", +# id=14856885, +# processes=[procs.radion_hh_ggf_hbb_htt_m1800], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 2, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m2000_madgraph", +# id=14854659, +# processes=[procs.radion_hh_ggf_hbb_htt_m2000], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 15, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m2500_madgraph", +# id=14874111, +# processes=[procs.radion_hh_ggf_hbb_htt_m2500], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 14, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m3000_madgraph", +# id=14874977, +# processes=[procs.radion_hh_ggf_hbb_htt_m3000], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 17, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m4000_madgraph", +# id=14856844, +# processes=[procs.radion_hh_ggf_hbb_htt_m4000], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 4, +# }, +# }, +# ) + +# cpn.add_dataset( +# name="radion_hh_ggf_hbb_htt_m5000_madgraph", +# id=14854551, +# processes=[procs.radion_hh_ggf_hbb_htt_m5000], +# keys=[ +# "/GluGlutoRadiontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa +# ], +# n_files=1, +# n_events=22_000, +# aux={ +# "merging_factors": { +# "nominal": 4, +# }, +# }, +# ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py index 445b9a2a..f03ad397 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/higgs.py @@ -13,7 +13,6 @@ # Single Higgs # -# ggf cpn.add_dataset( name="h_ggf_htt_powheg", id=14802020, @@ -24,11 +23,12 @@ n_files=1, n_events=295_722, aux={ - "nominal_merging_factor": 16, + "merging_factors": { + "nominal": 16, + }, }, ) -# vbf cpn.add_dataset( name="h_vbf_htt_powheg", id=14792119, @@ -39,11 +39,12 @@ n_files=1, n_events=299_337, aux={ - "nominal_merging_factor": 12, + "merging_factors": { + "nominal": 12, + }, }, ) -# H radiation cpn.add_dataset( name="vh_hnonbb_amcatnlo", id=14836666, @@ -54,7 +55,9 @@ n_files=1, n_events=147_250, aux={ - "nominal_merging_factor": 6, + "merging_factors": { + "nominal": 6, + }, }, ) @@ -66,10 +69,13 @@ "/ZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/ZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=2 + 15, + n_files=1 + 8, n_events=599_100 + 4_363_648, aux={ - "nominal_merging_factor": 20, + "merging_factors": { + "nominal": 40, + "nominal_ext1": 22, + }, }, ) @@ -81,10 +87,13 @@ "/ZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/ZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa ], - n_files=4 + 10, + n_files=2 + 5, n_events=1_144_560 + 3_177_722, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 16, + "nominal_ext1": 26, + }, }, ) @@ -96,10 +105,13 @@ "/WminusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/WminusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=2 + 13, + n_files=1 + 7, n_events=590_044 + 4_400_000, aux={ - "nominal_merging_factor": 12, + "merging_factors": { + "nominal": 24, + "nominal_ext1": 38, + }, }, ) @@ -111,14 +123,16 @@ "/WplusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/WplusH_Hto2B_WtoLNu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=2 + 13, + n_files=1 + 7, n_events=565_746 + 4_186_150, aux={ - "nominal_merging_factor": 13, + "merging_factors": { + "nominal": 25, + "nominal_ext1": 37, + }, }, ) -# ggZH cpn.add_dataset( name="zh_gg_zll_hbb_powheg", id=14801535, @@ -127,10 +141,13 @@ "/ggZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/ggZH_Hto2B_Zto2L_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa ], - n_files=3 + 14, + n_files=1 + 8, n_events=582_250 + 3_782_190, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 26, + "nominal_ext1": 18, + }, }, ) @@ -142,10 +159,13 @@ "/ggZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/ggZH_Hto2B_Zto2Nu_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa ], - n_files=2 + 11, + n_files=1 + 6, n_events=581_016 + 3_785_194, aux={ - "nominal_merging_factor": 11, + "merging_factors": { + "nominal": 22, + "nominal_ext1": 19, + }, }, ) @@ -157,14 +177,16 @@ "/ggZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/ggZH_Hto2B_Zto2Q_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v3/NANOAODSIM", # noqa ], - n_files=2 + 14, + n_files=1 + 7, n_events=578_672 + 3_796_788, aux={ - "nominal_merging_factor": 13, + "merging_factors": { + "nominal": 26, + "nominal_ext1": 18, + }, }, ) -# ttH cpn.add_dataset( name="tth_hbb_powheg", id=14857728, @@ -172,10 +194,12 @@ keys=[ "/TTHto2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa ], - n_files=16, + n_files=9, n_events=3_180_918, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 15, + }, }, ) @@ -186,9 +210,11 @@ keys=[ "/TTHtoNon2B_M-125_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa ], - n_files=20, + n_files=11, n_events=3_958_795, aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 15, + }, }, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index 4c5be671..ceb7caa7 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -25,54 +25,63 @@ "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TTtoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=316 + 306, + n_files=176 + 153, n_events=89_455_475 + 77_002_090, ), hdamp_down=DatasetInfo( keys=[ "/TTtoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=116, + n_files=58, n_events=32_008_786, ), hdamp_up=DatasetInfo( keys=[ "/TTtoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=93, + n_files=47, n_events=31_628_880, ), mtop_down=DatasetInfo( keys=[ "/TTtoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=122, + n_files=61, n_events=32_577_200, ), mtop_up=DatasetInfo( keys=[ "/TTtoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=100, + n_files=55, n_events=31_244_178, ), tune_down=DatasetInfo( keys=[ "/TTtoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=113, + n_files=63, n_events=32_337_000, ), tune_up=DatasetInfo( keys=[ "/TTtoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=94, + n_files=47, n_events=31_647_140, ), ), aux={ - "nominal_merging_factor": 5, + "merging_factors": { + "nominal": 9, + "nominal_ext1": 18, + "hdamp_down": 10, + "hdamp_up": 14, + "mtop_down": 10, + "mtop_up": 11, + "tune_down": 9, + "tune_up": 16, + }, }, ) @@ -86,54 +95,63 @@ "/TTto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TTto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=86 + 91, + n_files=43 + 46, n_events=23_802_613 + 24_084_800, ), hdamp_down=DatasetInfo( keys=[ "/TTto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=36, + n_files=19, n_events=9_793_943, ), hdamp_up=DatasetInfo( keys=[ "/TTto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=33, + n_files=18, n_events=9_795_550, ), mtop_down=DatasetInfo( keys=[ "/TTto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=35, + n_files=19, n_events=9_728_780, ), mtop_up=DatasetInfo( keys=[ "/TTto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=35, + n_files=18, n_events=9_410_032, ), tune_down=DatasetInfo( keys=[ "/TTto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=32, + n_files=18, n_events=9_891_000, ), tune_up=DatasetInfo( keys=[ "/TTto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=37, + n_files=19, n_events=9_793_728, ), ), aux={ - "nominal_merging_factor": 5, + "merging_factors": { + "nominal": 10, + "nominal_ext1": 22, + "hdamp_down": 13, + "hdamp_up": 13, + "mtop_down": 13, + "mtop_up": 14, + "tune_down": 11, + "tune_up": 14, + }, }, ) @@ -147,54 +165,63 @@ "/TTto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TTto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=210 + 215, + n_files=105 + 108, n_events=53_475_524 + 52_573_597, ), hdamp_down=DatasetInfo( keys=[ "/TTto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=82, + n_files=46, n_events=23_150_671, ), hdamp_up=DatasetInfo( keys=[ "/TTto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=78, + n_files=44, n_events=21_580_076, ), mtop_down=DatasetInfo( keys=[ "/TTto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=93, + n_files=47, n_events=23_170_000, ), mtop_up=DatasetInfo( keys=[ "/TTto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=80, + n_files=44, n_events=22_750_854, ), tune_down=DatasetInfo( keys=[ "/TTto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=77, + n_files=43, n_events=22_159_608, ), tune_up=DatasetInfo( keys=[ "/TTto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=81, + n_files=45, n_events=22_414_958, ), ), aux={ - "nominal_merging_factor": 6, + "merging_factors": { + "nominal": 12, + "nominal_ext1": 18, + "hdamp_down": 9, + "hdamp_up": 9, + "mtop_down": 10, + "mtop_up": 11, + "tune_down": 9, + "tune_up": 9, + }, }, ) @@ -213,10 +240,12 @@ keys=[ "/TTWW_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=3, + n_files=2, n_events=450_000, aux={ - "nominal_merging_factor": 10, + "merging_factors": { + "nominal": 14, + }, }, ) @@ -227,10 +256,12 @@ keys=[ "/TTZZ_TuneCP5_13p6TeV_madgraph-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=3, + n_files=2, n_events=443_238, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 13, + }, }, ) @@ -238,7 +269,6 @@ # single top # -# no variations available cpn.add_dataset( name="st_tchannel_tbar_powheg", id=14803988, @@ -246,14 +276,15 @@ keys=[ "/TbarBQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=4, + n_files=2, n_events=1_433_215, aux={ - "nominal_merging_factor": 12, + "merging_factors": { + "nominal": 23, + }, }, ) -# no variations available cpn.add_dataset( name="st_tchannel_t_powheg", id=14801389, @@ -261,10 +292,12 @@ keys=[ "/TBbarQ_t-channel_4FS_TuneCP5_13p6TeV_powheg-madspin-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=5, n_events=2_973_675, aux={ - "nominal_merging_factor": 9, + "merging_factors": { + "nominal": 16, + }, }, ) @@ -278,54 +311,63 @@ "/TbarWplusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TbarWplusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=8 + 8, + n_files=4 + 4, n_events=2_465_972 + 2_435_737, ), hdamp_down=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_499_291, ), hdamp_up=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=2_436_721, ), mtop_down=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_524_255, ), mtop_up=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_497_188, ), tune_down=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=2_363_085, ), tune_up=DatasetInfo( keys=[ "/TbarWplusto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_536_835, ), ), aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 14, + "nominal_ext1": 32, + "hdamp_down": 18, + "hdamp_up": 16, + "mtop_down": 19, + "mtop_up": 17, + "tune_down": 14, + "tune_up": 17, + }, }, ) @@ -339,54 +381,63 @@ "/TbarWplusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TbarWplusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=13 + 15, + n_files=7 + 8, n_events=3_762_952 + 4_000_000, ), hdamp_down=DatasetInfo( keys=[ "/TbarWplusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=14, + n_files=7, n_events=3_963_854, ), hdamp_up=DatasetInfo( keys=[ "/TbarWplusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=13, + n_files=7, n_events=3_895_220, ), mtop_down=DatasetInfo( keys=[ "/TbarWplusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=7, n_events=3_938_484, ), mtop_up=DatasetInfo( keys=[ "/TbarWplusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=13, + n_files=7, n_events=3_898_600, ), tune_down=DatasetInfo( keys=[ "/TbarWplusto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=14, + n_files=7, n_events=3_971_608, ), tune_up=DatasetInfo( keys=[ "/TbarWplusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=14, + n_files=7, n_events=3_920_656, ), ), aux={ - "nominal_merging_factor": 6, + "merging_factors": { + "nominal": 11, + "nominal_ext1": 22, + "hdamp_down": 12, + "hdamp_up": 13, + "mtop_down": 15, + "mtop_up": 13, + "tune_down": 14, + "tune_up": 14, + }, }, ) @@ -398,56 +449,63 @@ nominal=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa - "/TbarWplustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=15 + 17, - n_events=4_407_845 + 4_816_562, + n_files=8, + n_events=4_407_845, ), hdamp_down=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=4_930_632, ), hdamp_up=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=4_865_573, ), mtop_down=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=5_133_770, ), mtop_up=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=4_995_477, ), tune_down=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=8, n_events=4_659_748, ), tune_up=DatasetInfo( keys=[ "/TbarWplustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=8, n_events=4_661_358, ), ), aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 13, + "hdamp_down": 15, + "hdamp_up": 15, + "mtop_down": 15, + "mtop_up": 13, + "tune_down": 19, + "tune_up": 14, + }, }, ) @@ -461,54 +519,63 @@ "/TWminusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TWminusto2L2Nu_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=8 + 9, + n_files=4 + 4, n_events=2_387_056 + 2_500_000, ), hdamp_down=DatasetInfo( keys=[ "/TWminusto2L2Nu_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_501_382, ), hdamp_up=DatasetInfo( keys=[ "/TWminusto2L2Nu_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=5, n_events=2_538_826, ), mtop_down=DatasetInfo( keys=[ "/TWminusto2L2Nu_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_513_281, ), mtop_up=DatasetInfo( keys=[ "/TWminusto2L2Nu_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=9, + n_files=4, n_events=2_497_924, ), tune_down=DatasetInfo( keys=[ "/TWminusto2L2Nu_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=2_361_903, ), tune_up=DatasetInfo( keys=[ "/TWminusto2L2Nu_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=8, + n_files=4, n_events=2_375_416, ), ), aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 13, + "nominal_ext1": 31, + "hdamp_down": 21, + "hdamp_up": 15, + "mtop_down": 24, + "mtop_up": 25, + "tune_down": 15, + "tune_up": 20, + }, }, ) @@ -522,54 +589,63 @@ "/TWminusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TWminusto4Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=14 + 14, + n_files=7 + 7, n_events=3_862_005 + 3_909_550, ), hdamp_down=DatasetInfo( keys=[ "/TWminusto4Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=7, n_events=3_976_914, ), hdamp_up=DatasetInfo( keys=[ "/TWminusto4Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=14, + n_files=7, n_events=3_916_606, ), mtop_down=DatasetInfo( keys=[ "/TWminusto4Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=8, n_events=4_020_863, ), mtop_up=DatasetInfo( keys=[ "/TWminusto4Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=13, + n_files=7, n_events=3_870_500, ), tune_down=DatasetInfo( keys=[ "/TWminusto4Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=14, + n_files=7, n_events=3_793_280, ), tune_up=DatasetInfo( keys=[ "/TWminusto4Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=13, + n_files=7, n_events=3_853_959, ), ), aux={ - "nominal_merging_factor": 7, + "merging_factors": { + "nominal": 14, + "nominal_ext1": 22, + "hdamp_down": 13, + "hdamp_up": 12, + "mtop_down": 11, + "mtop_up": 17, + "tune_down": 16, + "tune_up": 13, + }, }, ) @@ -583,53 +659,62 @@ "/TWminustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa "/TWminustoLNu2Q_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5_ext1-v2/NANOAODSIM", # noqa ], - n_files=16 + 18, + n_files=9 + 9, n_events=4_743_971 + 4_900_350, ), hdamp_down=DatasetInfo( keys=[ "/TWminustoLNu2Q_Hdamp-158_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=4_903_597, ), hdamp_up=DatasetInfo( keys=[ "/TWminustoLNu2Q_Hdamp-418_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=16, + n_files=9, n_events=4_801_624, ), mtop_down=DatasetInfo( keys=[ "/TWminustoLNu2Q_MT-171p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=9, n_events=4_904_011, ), mtop_up=DatasetInfo( keys=[ "/TWminustoLNu2Q_MT-173p5_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=15, + n_files=8, n_events=4_522_843, ), tune_down=DatasetInfo( keys=[ "/TWminustoLNu2Q_TuneCP5Down_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=17, + n_files=9, n_events=5_090_154, ), tune_up=DatasetInfo( keys=[ "/TWminustoLNu2Q_TuneCP5Up_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], - n_files=18, + n_files=9, n_events=4_902_158, ), ), aux={ - "nominal_merging_factor": 8, + "merging_factors": { + "nominal": 14, + "nominal_ext1": 26, + "hdamp_down": 15, + "hdamp_up": 15, + "mtop_down": 12, + "mtop_up": 15, + "tune_down": 13, + "tune_up": 14, + }, }, ) diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index be116065..5de49650 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -6,7 +6,8 @@ __all__ = [ "hh_ggf_hbb_htt", - "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", + "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", "hh_ggf_hbb_htt_kl2p45_kt1_c20", + "hh_ggf_hbb_htt_kl5_kt1_c20", "hh_ggf_hbb_htt_node1", "hh_ggf_hbb_htt_node2", "hh_ggf_hbb_htt_node3", "hh_ggf_hbb_htt_node4", "hh_ggf_hbb_htt_node5", "hh_ggf_hbb_htt_node6", "hh_ggf_hbb_htt_node7", "hh_ggf_hbb_htt_node8", "hh_ggf_hbb_htt_node9", @@ -99,7 +100,25 @@ hh_ggf_hbb_htt_kl0_kt1_c20 = hh_ggf_hbb_htt.add_process( name="hh_ggf_hbb_htt_kl0_kt1_c20", id=21201, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 0$, $\kappa_t = 1, C_2 = 0$)", + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=0$, $\kappa_{t}=1$)", + xsecs={ + 13.6: Number(0.1), # TODO + }, +) + +hh_ggf_hbb_htt_kl2p45_kt1_c20 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl2p45_kt1_c20", + id=21202, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=2.45$, $\kappa_{t}=1$)", + xsecs={ + 13.6: Number(0.1), # TODO + }, +) + +hh_ggf_hbb_htt_kl5_kt1_c20 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl5_kt1_c20", + id=21203, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=5$, $\kappa_{t}=1$)", xsecs={ 13.6: Number(0.1), # TODO }, From 371dc981802f43cfab5cf879a6aea4725a5c5e2c Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 10 Jun 2024 17:55:11 +0200 Subject: [PATCH 11/42] merge branch master into uhh_22pre_v12 --- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 6 +- cmsdb/processes/ewk.py | 278 +++++++++--------- cmsdb/processes/hh2bbtautau.py | 134 +++++++-- cmsdb/processes/qcd.py | 36 +-- 4 files changed, 267 insertions(+), 187 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index 2b1a8e95..922f83e3 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -104,7 +104,7 @@ cpn.add_dataset( name="ww_pythia", id=14800066, - processes=[procs.ww_pythia], + processes=[procs.ww], keys=[ "/WW_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -120,7 +120,7 @@ cpn.add_dataset( name="wz_pythia", id=14803893, - processes=[procs.wz_pythia], + processes=[procs.wz], keys=[ "/WZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -136,7 +136,7 @@ cpn.add_dataset( name="zz_pythia", id=14807788, - processes=[procs.zz_pythia], + processes=[procs.zz], keys=[ "/ZZ_TuneCP5_13p6TeV_pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index d208de4b..18449fd3 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -6,36 +6,35 @@ __all__ = [ "dy", - "dy_lep", - "dy_lep_m4to10", - "dy_lep_m10to50", - "dy_lep_m50", "dy_lep_m50_0j", "dy_lep_m50_1j", "dy_lep_m50_2j", "dy_lep_m50_3j", "dy_lep_m50_4j", - "dy_lep_0j", "dy_lep_1j", "dy_lep_2j", - "dy_lep_m50_ht70to100", "dy_lep_m50_ht100to200", "dy_lep_m50_ht200to400", - "dy_lep_m50_ht400to600", "dy_lep_m50_ht600to800", "dy_lep_m50_ht800to1200", - "dy_lep_m50_ht1200to2500", "dy_lep_m50_ht2500", - "dy_lep_pt0to50", "dy_lep_pt50to100", "dy_lep_pt100to250", "dy_lep_pt250to400", - "dy_lep_pt400to650", "dy_lep_pt650", + "dy_m4to10", + "dy_m10to50", + "dy_m50toinf", "dy_m50toinf_0j", "dy_m50toinf_1j", "dy_m50toinf_2j", "dy_m50toinf_3j", "dy_m50toinf_4j", + "dy_0j", "dy_1j", "dy_2j", + "dy_m50toinf_ht70to100", "dy_m50toinf_ht100to200", "dy_m50toinf_ht200to400", + "dy_m50toinf_ht400to600", "dy_m50toinf_ht600to800", "dy_m50toinf_ht800to1200", + "dy_m50toinf_ht1200to2500", "dy_m50toinf_ht2500toinf", + "dy_pt0to50", "dy_pt50to100", "dy_pt100to250", "dy_pt250to400", + "dy_pt400to650", "dy_pt650toinf", "z", "z_nunu", "z_nunu_ht100to200", "z_nunu_ht200to400", "z_nunu_ht400to600", "z_nunu_ht600to800", "z_nunu_ht800to1200", "z_nunu_ht1200to2500", - "z_nunu_ht2500", + "z_nunu_ht2500toinf", "z_qq", - "z_qq_ht200to400", "z_qq_ht400to600", "z_qq_ht600to800", "z_qq_ht800", + "z_qq_ht200to400", "z_qq_ht400to600", "z_qq_ht600to800", "z_qq_ht800toinf", "w", "w_taunu", "w_munu", "w_lnu", "w_lnu_ht70to100", "w_lnu_ht100to200", "w_lnu_ht200to400", "w_lnu_ht400to600", - "w_lnu_ht600to800", "w_lnu_ht800to1200", "w_lnu_ht1200to2500", "w_lnu_ht2500", + "w_lnu_ht600to800", "w_lnu_ht800to1200", "w_lnu_ht1200to2500", "w_lnu_ht2500toinf", "ewk", - "ewk_wp_lnu_m50", "ewk_wm_lnu_m50", "ewk_z_ll_m50", + "ewk_wp_lnu_m50toinf", "ewk_wm_lnu_m50toinf", "ewk_z_ll_m50toinf", "vv", "zz", - "zz_qqll_m4", "zz_llnunu_m4", "zz_llll_m4", "zz_qqqq", "zz_nunuqq", - "wz", "wz_lllnu_m4", "wz_qqll_m4", "wz_lnuqq", + "zz_zqq_zll_m4toinf", "zz_zll_znunu_m4toinf", "zz_zll_zll_m4toinf", "zz_zqq_zqq", "zz_znunu_zqq", + "wz", "wz_wlnu_zll_m4toinf", "wz_wqq_zll_m4toinf", "wz_wlnu_zqq", "ww", - "ww_lnulnu", "ww_lnuqq", "ww_qqqq", + "ww_dl", "ww_sl", "ww_fh", "vvv", "zzz", "wzz", "wwz", "www", @@ -59,13 +58,6 @@ xsecs={13: Number(0.1)}, # TODO ) -dy_lep = dy.add_process( - name="dy_lep", - id=51000, - label=rf"{dy.label} ($Z \rightarrow ll$)", - xsecs={13: Number(0.1)}, # TODO -) - # NNLO cross section, based on: # https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat13TeV?rev=28 # and for 13.6 TeV, based on: @@ -75,28 +67,28 @@ # NLO cross section, based on GenXSecAnalyzer for # DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_lep_m50_nlo_13TeV_xsec = Number(6421.0, {"tot": 11.25}) +dy_m50toinf_nlo_13TeV_xsec = Number(6421.0, {"tot": 11.25}) # if needed for scaling from LO to NNLO: # LO cross section, based on GenXSecAnalyzer for DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_lep_m50_lo_13TeV_xsec = Number(5395.0, {"tot": 1.858}) +dy_m50toinf_lo_13TeV_xsec = Number(5395.0, {"tot": 1.858}) # 13.6 TeV LO and NLO cross sections are based on the XSDB # https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_lep_m4to10_nlo_13p6TeV_xsec = Number(141500, {"tot": 301.9}) +dy_m4to10_nlo_13p6TeV_xsec = Number(141500, {"tot": 301.9}) # https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_lep_m10to50_nlo_13p6TeV_xsec = Number(20950.0, {"tot": 183.5}) +dy_m10to50_nlo_13p6TeV_xsec = Number(20950.0, {"tot": 183.5}) # https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_lep_m50_nlo_13p6TeV_xsec = Number(6688.0, {"tot": 83.99}) +dy_m50toinf_nlo_13p6TeV_xsec = Number(6688.0, {"tot": 83.99}) # https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-4Jets_MLL-10to50_TuneCP5_13p6TeV_madgraphMLM-pythia8 # noqa -dy_lep_m10to50_lo_13p6TeV_xsec = Number(17380, {"tot": 26.57}) +dy_m10to50_lo_13p6TeV_xsec = Number(17380, {"tot": 26.57}) # https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-4Jets_MLL-50_TuneCP5_13p6TeV_madgraphMLM-pythia8 # noqa -dy_lep_m50_lo_13p6TeV_xsec = Number(5467, {"tot": 13.22}) +dy_m50toinf_lo_13p6TeV_xsec = Number(5467, {"tot": 13.22}) -dy_lep_m50 = dy_lep.add_process( - name="dy_lep_m50", +dy_m50toinf = dy.add_process( + name="dy_m50toinf", id=51100, xsecs={ 13: Number(6077.22, { @@ -111,29 +103,30 @@ }, ) -dy_lep_k_factor_LO_to_NNLO = { - 13: dy_lep_m50.get_xsec(13) / dy_lep_m50_lo_13TeV_xsec, - 13.6: dy_lep_m50.get_xsec(13.6) / dy_lep_m50_lo_13p6TeV_xsec, +dy_k_factor_LO_to_NNLO = { + 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_lo_13TeV_xsec, + 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_lo_13p6TeV_xsec, } -dy_lep_k_factor_NLO_to_NNLO = { - 13: dy_lep_m50.get_xsec(13) / dy_lep_m50_nlo_13TeV_xsec, - 13.6: dy_lep_m50.get_xsec(13.6) / dy_lep_m50_nlo_13p6TeV_xsec, +dy_k_factor_NLO_to_NNLO = { + 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_nlo_13TeV_xsec, + 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_nlo_13p6TeV_xsec, } -dy_lep_m4to10 = dy_lep.add_process( - name="dy_lep_m4to10", + +dy_m4to10 = dy.add_process( + name="dy_m4to10", id=51002, xsecs={ 13: Number(0.1), # TODO - 13.6: dy_lep_m4to10_nlo_13p6TeV_xsec * dy_lep_k_factor_NLO_to_NNLO[13.6], + 13.6: dy_m4to10_nlo_13p6TeV_xsec * dy_k_factor_NLO_to_NNLO[13.6], }, ) -dy_lep_m10to50 = dy_lep.add_process( - name="dy_lep_m10to50", +dy_m10to50 = dy.add_process( + name="dy_m10to50", id=51001, xsecs={ 13: Number(0.1), # TODO - 13.6: dy_lep_m10to50_nlo_13p6TeV_xsec * dy_lep_k_factor_NLO_to_NNLO[13.6], + 13.6: dy_m10to50_nlo_13p6TeV_xsec * dy_k_factor_NLO_to_NNLO[13.6], }, ) @@ -146,66 +139,67 @@ # 13 TeV: based on GenXSecAnalyzer # for datasets DY{i}JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_lep_m50_0j = dy_lep_m50.add_process( - name="dy_lep_m50_0j", + +dy_m50toinf_0j = dy_m50toinf.add_process( + name="dy_m50_0j", id=51110, xsecs={ # NLO xsec taken from https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa - 13.6: Number(5378, {"tot": 8.007}) * dy_lep_k_factor_NLO_to_NNLO[13.6], + 13.6: Number(5378, {"tot": 8.007}) * dy_k_factor_NLO_to_NNLO[13.6], }, ) -dy_lep_m50_1j = dy_lep_m50.add_process( - name="dy_lep_m50_1j", +dy_m50toinf_1j = dy_m50toinf.add_process( + name="dy_m50toinf_1j", id=51111, xsecs={ 13: Number(926.8, { "tot": 0.3597, - }) * dy_lep_k_factor_LO_to_NNLO[13], - # 13.6: Number(1017, {"tot": 6.264}) * dy_lep_k_factor_NLO_to_NNLO[13.6], - 13.6: Number(973.1, {"tot": 2.613}) * dy_lep_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_LO_to_NNLO[13], + # 13.6: Number(1017, {"tot": 6.264}) * dy_k_factor_NLO_to_NNLO[13.6], + 13.6: Number(973.1, {"tot": 2.613}) * dy_k_factor_LO_to_NNLO[13.6], }, ) -dy_lep_m50_2j = dy_lep_m50.add_process( - name="dy_lep_m50_2j", +dy_m50toinf_2j = dy_m50toinf.add_process( + name="dy_m50toinf_2j", id=51112, xsecs={ 13: Number(294.5, { "tot": 0.1223, - }) * dy_lep_k_factor_LO_to_NNLO[13], - # 13.6: Number(385.5, {"tot": 3.858}) * dy_lep_k_factor_NLO_to_NNLO[13.6], - 13.6: Number(312.4, {"tot": 0.915}) * dy_lep_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_LO_to_NNLO[13], + # 13.6: Number(385.5, {"tot": 3.858}) * dy_k_factor_NLO_to_NNLO[13.6], + 13.6: Number(312.4, {"tot": 0.915}) * dy_k_factor_LO_to_NNLO[13.6], }, ) -dy_lep_m50_3j = dy_lep_m50.add_process( - name="dy_lep_m50_3j", +dy_m50toinf_3j = dy_m50toinf.add_process( + name="dy_m50toinf_3j", id=51113, xsecs={ 13: Number(86.53, { "tot": 0.03853, - }) * dy_lep_k_factor_LO_to_NNLO[13], - 13.6: Number(93.93, {"tot": 0.2858}) * dy_lep_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_LO_to_NNLO[13], + 13.6: Number(93.93, {"tot": 0.2858}) * dy_k_factor_LO_to_NNLO[13.6], }, ) -dy_lep_m50_4j = dy_lep_m50.add_process( - name="dy_lep_m50_4j", +dy_m50toinf_4j = dy_m50toinf.add_process( + name="dy_m50toinf_4j", id=51114, xsecs={ 13: Number(41.21, { "tot": 0.02392, - }) * dy_lep_k_factor_LO_to_NNLO[13], - 13.6: Number(45.43, {"tot": 0.1393}) * dy_lep_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_LO_to_NNLO[13], + 13.6: Number(45.43, {"tot": 0.1393}) * dy_k_factor_LO_to_NNLO[13.6], }, ) # based on GenXSecAnalyzer # for DYJetsToLL_{i}J_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_lep_0j = dy_lep.add_process( - name="dy_lep_0j", +dy_0j = dy.add_process( + name="dy_0j", id=51200, xsecs={ 13: Number(5134.0, { @@ -214,8 +208,8 @@ }, ) -dy_lep_1j = dy_lep.add_process( - name="dy_lep_1j", +dy_1j = dy.add_process( + name="dy_1j", id=51300, xsecs={ 13: Number(952.7, { @@ -224,8 +218,8 @@ }, ) -dy_lep_2j = dy_lep.add_process( - name="dy_lep_2j", +dy_2j = dy.add_process( + name="dy_2j", id=51400, xsecs={ 13: Number(359.1, { @@ -239,75 +233,75 @@ # based on GenXSecAnalyzer # for DYJetsToLL_M-50_HT-{i}to{j}_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -dy_lep_m50_ht70to100 = dy_lep_m50.add_process( - name="dy_lep_m50_ht70to100", +dy_m50toinf_ht70to100 = dy_m50toinf.add_process( + name="dy_m50toinf_ht70to100", id=51121, xsecs={ - 13: Number(139.9, {"tot": 0.5747}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(139.9, {"tot": 0.5747}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht100to200 = dy_lep_m50.add_process( - name="dy_lep_m50_ht100to200", +dy_m50toinf_ht100to200 = dy_m50toinf.add_process( + name="dy_m50toinf_ht100to200", id=51122, xsecs={ - 13: Number(140.1, {"tot": 0.5875}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(140.1, {"tot": 0.5875}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht200to400 = dy_lep_m50.add_process( - name="dy_lep_m50_ht200to400", +dy_m50toinf_ht200to400 = dy_m50toinf.add_process( + name="dy_m50toinf_ht200to400", id=51123, xsecs={ - 13: Number(38.38, {"tot": 0.01628}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(38.38, {"tot": 0.01628}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht400to600 = dy_lep_m50.add_process( - name="dy_lep_m50_ht400to600", +dy_m50toinf_ht400to600 = dy_m50toinf.add_process( + name="dy_m50toinf_ht400to600", id=51124, xsecs={ - 13: Number(5.212, {"tot": 0.003149}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(5.212, {"tot": 0.003149}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht600to800 = dy_lep_m50.add_process( - name="dy_lep_m50_ht600to800", +dy_m50toinf_ht600to800 = dy_m50toinf.add_process( + name="dy_m50toinf_ht600to800", id=51125, xsecs={ - 13: Number(1.266, {"tot": 0.0007976}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(1.266, {"tot": 0.0007976}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht800to1200 = dy_lep_m50.add_process( - name="dy_lep_m50_ht800to1200", +dy_m50toinf_ht800to1200 = dy_m50toinf.add_process( + name="dy_m50toinf_ht800to1200", id=51126, xsecs={ - 13: Number(0.5684, {"tot": 0.0003515}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(0.5684, {"tot": 0.0003515}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht1200to2500 = dy_lep_m50.add_process( - name="dy_lep_m50_ht1200to2500", +dy_m50toinf_ht1200to2500 = dy_m50toinf.add_process( + name="dy_m50toinf_ht1200to2500", id=51127, xsecs={ - 13: Number(0.1332, {"tot": 0.00009084}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(0.1332, {"tot": 0.00009084}) * dy_k_factor_LO_to_NNLO[13], }, ) -dy_lep_m50_ht2500 = dy_lep_m50.add_process( - name="dy_lep_m50_ht2500", +dy_m50toinf_ht2500toinf = dy_m50toinf.add_process( + name="dy_m50toinf_ht2500toinf", id=51128, xsecs={ - 13: Number(0.002977, {"tot": 0.000003412}) * dy_lep_k_factor_LO_to_NNLO[13], + 13: Number(0.002977, {"tot": 0.000003412}) * dy_k_factor_LO_to_NNLO[13], }, ) # based on GenXSecAnalyzer # for DYJetsToLL_LHEFilterPtZ-{i}To{j}_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -dy_lep_pt0to50 = dy_lep.add_process( - name="dy_lep_pt0to50", +dy_pt0to50 = dy.add_process( + name="dy_pt0to50", id=51510, xsecs={ 13: Number(1494.0, { @@ -316,8 +310,8 @@ }, ) -dy_lep_pt50to100 = dy_lep.add_process( - name="dy_lep_pt50to100", +dy_pt50to100 = dy.add_process( + name="dy_pt50to100", id=51520, xsecs={ 13: Number(398.3, { @@ -326,8 +320,8 @@ }, ) -dy_lep_pt100to250 = dy_lep.add_process( - name="dy_lep_pt100to250", +dy_pt100to250 = dy.add_process( + name="dy_pt100to250", id=51530, xsecs={ 13: Number(96.58, { @@ -336,8 +330,8 @@ }, ) -dy_lep_pt250to400 = dy_lep.add_process( - name="dy_lep_pt250to400", +dy_pt250to400 = dy.add_process( + name="dy_pt250to400", id=51540, xsecs={ 13: Number(3.738, { @@ -346,8 +340,8 @@ }, ) -dy_lep_pt400to650 = dy_lep.add_process( - name="dy_lep_pt400to650", +dy_pt400to650 = dy.add_process( + name="dy_pt400to650", id=51550, xsecs={ 13: Number(0.5050, { @@ -356,8 +350,8 @@ }, ) -dy_lep_pt650 = dy_lep.add_process( - name="dy_lep_pt650", +dy_pt650toinf = dy.add_process( + name="dy_pt650toinf", id=51560, xsecs={ 13: Number(0.04763, { @@ -461,8 +455,8 @@ }, ) -z_nunu_ht2500 = z_nunu.add_process( - name="z_nunu_ht2500", +z_nunu_ht2500toinf = z_nunu.add_process( + name="z_nunu_ht2500toinf", id=55170, xsecs={ 13: Number(0.005614, { @@ -520,8 +514,8 @@ }, ) -z_qq_ht800 = z_qq.add_process( - name="z_qq_ht800", +z_qq_ht800toinf = z_qq.add_process( + name="z_qq_ht800toinf", id=55240, xsecs={ 13: Number(12.92, { @@ -660,8 +654,8 @@ # this ht bin needs the command: # ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -w_lnu_ht2500 = w_lnu.add_process( - name="w_lnu_ht2500", +w_lnu_ht2500toinf = w_lnu.add_process( + name="w_lnu_ht2500toinf", id=6180, xsecs={ 13: Number(0.02624, {"tot": 0.00002981}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, @@ -682,8 +676,8 @@ # based on GenXSecAnalyzer # for EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -ewk_wp_lnu_m50 = ewk.add_process( - name="ewk_wp_lnu_m50", +ewk_wp_lnu_m50toinf = ewk.add_process( + name="ewk_wp_lnu_m50toinf", id=7100, xsecs={ 13: Number(39.07, {"tot": 0.006454}), @@ -693,8 +687,8 @@ # based on GenXSecAnalyzer # for EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -ewk_wm_lnu_m50 = ewk.add_process( - name="ewk_wm_lnu_m50", +ewk_wm_lnu_m50toinf = ewk.add_process( + name="ewk_wm_lnu_m50toinf", id=7200, xsecs={ 13: Number(32.10, {"tot": 0.005308}), @@ -704,8 +698,8 @@ # based on GenXSecAnalyzer # for EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -ewk_z_ll_m50 = ewk.add_process( - name="ewk_z_ll_m50", +ewk_z_ll_m50toinf = ewk.add_process( + name="ewk_z_ll_m50toinf", id=7300, xsecs={ 13: Number(6.206, {"tot": 0.002081}), @@ -740,8 +734,8 @@ # based on GenXSecAnalyzer # for ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -zz_qqll_m4 = zz.add_process( - name="zz_qqll_m4", +zz_zqq_zll_m4toinf = zz.add_process( + name="zz_zqq_zll_m4toinf", id=8110, xsecs={ 13: Number(3.697, {"tot": 0.002713}), @@ -754,8 +748,8 @@ # therefore values from GenXSecAnalyzer # for ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -zz_llnunu_m4 = zz.add_process( - name="zz_llnunu_m4", +zz_zll_znunu_m4toinf = zz.add_process( + name="zz_zll_znunu_m4toinf", id=8120, xsecs={ 13: Number(0.9738, {"tot": 0.0009971}), @@ -768,8 +762,8 @@ # therefore values from GenXSecAnalyzer # from ZZTo4L_TuneCP5_13TeV_powheg_pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -zz_llll_m4 = zz.add_process( - name="zz_llll_m4", +zz_zll_zll_m4toinf = zz.add_process( + name="zz_zll_zll_m4toinf", id=8130, xsecs={ 13: Number(1.325, {"tot": 0.00122}), @@ -782,8 +776,8 @@ # Log for GenXSecAnalyzer of # for ZZTo4Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -> value : Number(3.287, {"tot": 0.006298}) # also available, but not used here -zz_qqqq = zz.add_process( - name="zz_qqqq", +zz_zqq_zqq = zz.add_process( + name="zz_zqq_zqq", id=8140, xsecs={ 13: zz.get_xsec(13) * const.br_z["qq"] * const.br_z["qq"], # value around 7.8 @@ -793,8 +787,8 @@ # no branching ratio Z->nunu available, so taking values from GenXSecAnalyzer # for ZZTo2Nu2Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -zz_nunuqq = zz.add_process( - name="zz_nunuqq", +zz_znunu_zqq = zz.add_process( + name="zz_znunu_zqq", id=8150, xsecs={ 13: Number(4.557, {"tot": 0.004843}), @@ -831,8 +825,8 @@ # therefore values from GenXSecAnalyzer # for WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -wz_lllnu_m4 = wz.add_process( - name="wz_lllnu_m4", +wz_wlnu_zll_m4toinf = wz.add_process( + name="wz_wlnun_zll_m4toinf", id=8210, xsecs={ 13: Number(5.218, {"tot": 0.00525}), @@ -842,8 +836,8 @@ # based on GenXSecAnalyzer # for WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -wz_qqll_m4 = wz.add_process( - name="wz_qqll_m4", +wz_wqq_zll_m4toinf = wz.add_process( + name="wz_wqq_zll_m4toinf", id=8220, xsecs={ 13: Number(6.431, {"tot": 0.007851}), @@ -857,8 +851,8 @@ # Log for GenXSecAnalyzer of # for WZTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -> value : Number(9.159, {"tot": 0.008259}) # also available, but not used here -wz_lnuqq = wz.add_process( - name="wz_lnuqq", +wz_wlnu_zqq = wz.add_process( + name="wz_wlnu_zqq", id=8230, xsecs={ 13: wz.get_xsec(13) * const.br_w["lep"] * const.br_z["qq"], # value around 10.65 @@ -889,8 +883,8 @@ # Log for GenXSecAnalyzer of # WWTo2L2Nu_TuneCP5_13TeV-powheg-pythia8 (Summer20UL16, NLO) with Number(11.09, {"tot": 0.00704}) # also available, but not used here -ww_lnulnu = ww.add_process( - name="ww_lnulnu", +ww_dl = ww.add_process( + name="ww_dl", id=8310, xsecs={ 13: ww.get_xsec(13) * const.br_ww.dl, # value around 12.6 for comparison to GenXSecAnalyzer NLO result @@ -903,8 +897,8 @@ # Log for GenXSecAnalyzer of # for WWTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -> value : Number(50.94, {"tot": 0.042}) # also available, but not used here -ww_lnuqq = ww.add_process( - name="ww_lnuqq", +ww_sl = ww.add_process( + name="ww_sl", id=8320, xsecs={ 13: ww.get_xsec(13) * const.br_ww.sl, # value around 50.06 for comparison to GenXSecAnalyzer NLO result @@ -917,8 +911,8 @@ # Log for GenXSecAnalyzer of # for WWTo4Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -> value : Number(51.53, {"tot": 0.04349}) # also available, but not used here -ww_qqqq = ww.add_process( - name="ww_qqqq", +ww_fh = ww.add_process( + name="ww_fh", id=8330, xsecs={ 13: ww.get_xsec(13) * const.br_ww.fh, # value around 53.94 for comparison to GenXSecAnalyzer NLO result diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 5de49650..855e6cc7 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -6,8 +6,9 @@ __all__ = [ "hh_ggf_hbb_htt", - "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", "hh_ggf_hbb_htt_kl2p45_kt1_c20", - "hh_ggf_hbb_htt_kl5_kt1_c20", + "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c21", + "hh_ggf_hbb_htt_kl1_kt1_c20p10", "hh_ggf_hbb_htt_kl1_kt1_c20p35", "hh_ggf_hbb_htt_kl1_kt1_c23", + "hh_ggf_hbb_htt_kl1_kt1_c2m2", "hh_ggf_hbb_htt_kl2p45_kt1_c20", "hh_ggf_hbb_htt_kl5_kt1_c20", "hh_ggf_hbb_htt_node1", "hh_ggf_hbb_htt_node2", "hh_ggf_hbb_htt_node3", "hh_ggf_hbb_htt_node4", "hh_ggf_hbb_htt_node5", "hh_ggf_hbb_htt_node6", "hh_ggf_hbb_htt_node7", "hh_ggf_hbb_htt_node8", "hh_ggf_hbb_htt_node9", @@ -40,6 +41,13 @@ "graviton_hh_ggf_hbb_htt_m1500", "graviton_hh_ggf_hbb_htt_m1750", "graviton_hh_ggf_hbb_htt_m2000", "graviton_hh_ggf_hbb_htt_m2500", "graviton_hh_ggf_hbb_htt_m3000", + "hh_vbf_hbb_htt", + "hh_vbf_hbb_htt_kv1_k2v1_kl1",# "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", + #"hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", + #"hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", + #"hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", "hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", + #"hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", "hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", + #"hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", "radion_hh_vbf_hbb_htt", "radion_hh_vbf_hbb_htt_m250", "radion_hh_vbf_hbb_htt_m260", "radion_hh_vbf_hbb_htt_m270", "radion_hh_vbf_hbb_htt_m280", "radion_hh_vbf_hbb_htt_m300", "radion_hh_vbf_hbb_htt_m320", @@ -71,56 +79,110 @@ from cmsdb.processes.higgs import ( hh_ggf, radion_hh_ggf, graviton_hh_ggf, radion_hh_vbf, graviton_hh_vbf, + hh_ggf_kl1_kt1_c20, hh_ggf_kl0_kt1_c20, hh_ggf_kl0_kt1_c21, ) from cmsdb.xsec_bsm_nodes import calculate_xsec_node # # ggF -> H -> HH # -hh_ggf_hbb_htt = hh_ggf.add_process( - name="hh_ggf_hbb_htt", - id=21100, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: Number(0.1), - }, # TODO -) - -hh_ggf_hbb_htt_kl1_kt1_c20 = hh_ggf_hbb_htt.add_process( +# hh_ggf_hbb_htt = hh_ggf.add_process( +# name="hh_ggf_hbb_htt", +# id=21100, +# label=r"$HH_{ggf} \rightarrow bb\tau\tau$", +# xsecs={ +# 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, +# 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, +# }, +# ) + +hh_ggf_hbb_htt_kl1_kt1_c20 = hh_ggf_kl1_kt1_c20.add_process( name="hh_ggf_hbb_htt_kl1_kt1_c20", id=21200, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ (SM)", + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=1$, $\kappa_{t}=1$)", xsecs={ - 13: hh_ggf_hbb_htt.get_xsec(13), - 13.6: hh_ggf_hbb_htt.get_xsec(13.6), + 13: hh_ggf_kl1_kt1_c20.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1_c20.get_xsec(13.6)* const.br_hh.bbtt, }, ) -hh_ggf_hbb_htt_kl0_kt1_c20 = hh_ggf_hbb_htt.add_process( +hh_ggf_hbb_htt_kl0_kt1_c20 = hh_ggf_kl0_kt1_c20.add_process( name="hh_ggf_hbb_htt_kl0_kt1_c20", id=21201, label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=0$, $\kappa_{t}=1$)", xsecs={ - 13.6: Number(0.1), # TODO + 13: hh_ggf_kl0_kt1_c20.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl0_kt1_c20.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl0_kt1_c21 = hh_ggf_kl0_kt1_c21.add_process( + name="hh_ggf_hbb_htt_kl0_kt1_c21", + id=21202, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 0$, $\kappa_t = 1, C_2 = 1$)", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c20p10 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c20p10", + id=21203, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.1$)", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c20p35 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c20p35", + id=21204, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.35$)", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c23 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c23", + id=21205, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 3$)", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c2m2 = hh_ggf_hbb_htt.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c2m2", + id=21206, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = -2$)", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, }, ) hh_ggf_hbb_htt_kl2p45_kt1_c20 = hh_ggf_hbb_htt.add_process( name="hh_ggf_hbb_htt_kl2p45_kt1_c20", - id=21202, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=2.45$, $\kappa_{t}=1$)", + id=21207, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 2.45$, $\kappa_t = 1, C_2 = 0$)", xsecs={ - 13.6: Number(0.1), # TODO + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, }, ) hh_ggf_hbb_htt_kl5_kt1_c20 = hh_ggf_hbb_htt.add_process( name="hh_ggf_hbb_htt_kl5_kt1_c20", - id=21203, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=5$, $\kappa_{t}=1$)", + id=21208, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 5$, $\kappa_t = 1, C_2 = 0$)", xsecs={ - 13.6: Number(0.1), # TODO + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -628,6 +690,30 @@ xsecs={13: Number(0.1)}, # TODO ) +# +# vbf -> H -> HH +# + +hh_vbf_hbb_htt = hh_ggf.add_process( + name="hh_vbf_hbb_htt", + id=25000, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$", + xsecs={ + 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: Number(0.1), + }, # TODO +) + +hh_vbf_hbb_htt_kv1_k2v1_kl1 = hh_vbf_hbb_htt.add_process( + name="hh_vbf_hbb_htt_kv1_k2v1_kl1", + id=25010, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ (SM)", + xsecs={ + 13: hh_vbf_hbb_htt.get_xsec(13), + 13.6: hh_vbf_hbb_htt.get_xsec(13.6), + }, +) + # # vbf -> radion -> HH diff --git a/cmsdb/processes/qcd.py b/cmsdb/processes/qcd.py index af8c5ddd..a05dc20d 100644 --- a/cmsdb/processes/qcd.py +++ b/cmsdb/processes/qcd.py @@ -15,7 +15,7 @@ "qcd_ht700to1000", "qcd_ht1000to1500", "qcd_ht1500to2000", - "qcd_ht2000", + "qcd_ht2000toinf", "qcd_pt15to30", "qcd_pt30to50", "qcd_pt50to80", @@ -30,7 +30,7 @@ "qcd_pt1400to1800", "qcd_pt1800to2400", "qcd_pt2400to3200", - "qcd_pt3200", + "qcd_pt3200toinf", "qcd_mu", "qcd_mu_pt15to20", "qcd_mu_pt20to30", @@ -43,7 +43,7 @@ "qcd_mu_pt470to600", "qcd_mu_pt600to800", "qcd_mu_pt800to1000", - "qcd_mu_pt1000", + "qcd_mu_pt1000toinf", "qcd_em", "qcd_em_pt15to20", "qcd_em_pt20to30", @@ -62,9 +62,9 @@ "qcd_bctoe_pt170to250", "qcd_bctoe_pt250toinf", "qcd_doubleem", - "qcd_doubleem_pt30to40_mgg80", - "qcd_doubleem_pt40_mgg80", - "qcd_doubleem_pt30_mgg40to80", + "qcd_doubleem_pt30to40_mgg80toinf", + "qcd_doubleem_pt40toinf_mgg80toinf", + "qcd_doubleem_pt30toinf_mgg40to80", ] from order import Process @@ -171,8 +171,8 @@ }, ) -qcd_ht2000 = qcd.add_process( - name="qcd_ht2000", +qcd_ht2000toinf = qcd.add_process( + name="qcd_ht2000toinf", id=31009, xsecs={ # https://cms.cern.ch/iCMS/jsp/db_notes/noteInfo.jsp?cmsnoteid=CMS%20AN-2019/197 (v3) @@ -299,8 +299,8 @@ }, ) -qcd_pt3200 = qcd.add_process( - name="qcd_pt3200", +qcd_pt3200toinf = qcd.add_process( + name="qcd_pt3200toinf", id=31915, xsecs={ 13: Number(0.0001623), @@ -419,8 +419,8 @@ }, ) -qcd_mu_pt1000 = qcd_mu.add_process( - name="qcd_mu_pt1000", +qcd_mu_pt1000toinf = qcd_mu.add_process( + name="qcd_mu_pt1000toinf", id=31112, xsecs={ 13: Number(1.08), # NOTE: not found via XSDB, taken from an old reference @@ -580,24 +580,24 @@ xsecs={13: Number(0.1)}, # TODO ) -qcd_doubleem_pt30to40_mgg80 = qcd_doubleem.add_process( - name="qcd_doubleem_pt30to40_mgg80", +qcd_doubleem_pt30to40_mgg80toinf = qcd_doubleem.add_process( + name="qcd_doubleem_pt30to40_mgg80toinf", id=31401, xsecs={ 13: Number(0.1), # TODO }, ) -qcd_doubleem_pt40_mgg80 = qcd_doubleem.add_process( - name="qcd_doubleem_pt40_mgg80", +qcd_doubleem_pt40toinf_mgg80toinf = qcd_doubleem.add_process( + name="qcd_doubleem_pt40toinf_mgg80toinf", id=31402, xsecs={ 13: Number(0.1), # TODO }, ) -qcd_doubleem_pt30_mgg40to80 = qcd_doubleem.add_process( - name="qcd_doubleem_pt30_mgg40to80", +qcd_doubleem_pt30toinf_mgg40to80 = qcd_doubleem.add_process( + name="qcd_doubleem_pt30toinf_mgg40to80", id=31403, xsecs={ 13: Number(0.1), # TODO From 52a22521141419f726aecad9ff094923eafd93e2 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 10 Jun 2024 17:56:05 +0200 Subject: [PATCH 12/42] adapt names top processes --- cmsdb/processes/top.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/cmsdb/processes/top.py b/cmsdb/processes/top.py index 2e76279b..d5b0cda3 100644 --- a/cmsdb/processes/top.py +++ b/cmsdb/processes/top.py @@ -17,8 +17,8 @@ "st_schannel_t", "st_schannel_t_lep", "st_schannel_t_had", "st_schannel_tbar", "st_schannel_tbar_lep", "st_schannel_tbar_had", "ttv", - "ttz", "ttz_llnunu_m10", - "ttw", "ttw_lnu", "ttw_qq", + "ttz", "ttz_zlep_m10toinf", + "ttw", "ttw_wlnu", "ttw_wqq", "ttvv", "ttzz", "ttwz", "ttww", ] @@ -362,8 +362,10 @@ # based on GenXSecAnalyzer # for TTZToLLNuNu_M-10_TuneCP5_13TeV-amcatnlo-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -ttz_llnunu_m10 = ttz.add_process( - name="ttz_llnunu_m10", # non-hadronically decaying Z + +# zlep = zll or znunu, both decays present in samples +ttz_zlep_m10toinf = ttz.add_process( + name="ttz_zlep_m10toinf", # non-hadronically decaying Z id=3110, xsecs={ 13: Number(0.2439, { @@ -395,14 +397,14 @@ for ecm in (13, 14): ttv.set_xsec(ecm, ttw.get_xsec(ecm) + ttz.get_xsec(ecm)) -ttw_lnu = ttw.add_process( - name="ttw_lnu", +ttw_wlnu = ttw.add_process( + name="ttw_wlnu", id=3210, xsecs=multiply_xsecs(ttw, const.br_w.lep), ) -ttw_qq = ttw.add_process( - name="ttw_qq", +ttw_wqq = ttw.add_process( + name="ttw_wqq", id=3220, xsecs=multiply_xsecs(ttw, const.br_w.had), ) From 51b8cdf82ca4eadfbcfeafb6a76b70fe5b7fa525 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 15:18:12 +0200 Subject: [PATCH 13/42] correct process and dataset names ewk, top, qcd in campaigns --- .../run2_2016_HIPM_nano_uhh_v12/ewk.py | 195 +++++++++--------- .../run2_2016_HIPM_nano_uhh_v12/ttbar.py | 12 +- cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py | 108 +++++----- cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py | 12 +- cmsdb/campaigns/run2_2017_JMEnano_v9/qcd.py | 4 +- cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py | 128 ++++++------ cmsdb/campaigns/run2_2017_nano_uhh_v11/qcd.py | 4 +- cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py | 12 +- cmsdb/campaigns/run2_2017_nano_v9/ewk.py | 100 ++++----- cmsdb/campaigns/run2_2017_nano_v9/qcd.py | 12 +- cmsdb/campaigns/run2_2017_nano_v9/top.py | 12 +- cmsdb/campaigns/run2_2018_JMEnano_v9/qcd.py | 4 +- cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py | 164 +++++++-------- cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py | 12 +- .../run3_2022_postEE_nano_v11/ewk.py | 8 +- .../run3_2022_postEE_nano_v11/qcd.py | 8 +- .../run3_2022_postEE_nano_v12/ewk.py | 148 ++++++------- .../run3_2022_postEE_nano_v12/qcd.py | 16 +- .../campaigns/run3_2022_preEE_nano_v11/ewk.py | 8 +- .../campaigns/run3_2022_preEE_nano_v11/qcd.py | 8 +- .../campaigns/run3_2022_preEE_nano_v12/ewk.py | 144 ++++++------- .../campaigns/run3_2022_preEE_nano_v12/qcd.py | 14 +- 22 files changed, 568 insertions(+), 565 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py index 2d8b9ce0..e50a4f09 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py @@ -10,9 +10,9 @@ # EWK cpn.add_dataset( - name="ewk_wm_lnu_m50_madgraph", + name="ewk_wm_lnu_m50toinf_madgraph", id=14217420, - processes=[procs.ewk_wm_lnu_m50], + processes=[procs.ewk_wm_lnu_m50toinf], keys=[ "/EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -21,9 +21,9 @@ ) cpn.add_dataset( - name="ewk_w_lnu_m50_madgraph", + name="ewk_w_lnu_m50toinf_madgraph", id=14216470, - processes=[procs.ewk_wp_lnu_m50], + processes=[procs.ewk_wp_lnu_m50toinf], keys=[ "/EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -32,9 +32,9 @@ ) cpn.add_dataset( - name="ewk_z_ll_m50_madgraph", + name="ewk_z_ll_m50toinf_madgraph", id=14214791, - processes=[procs.ewk_z_ll_m50], + processes=[procs.ewk_z_ll_m50toinf], keys=[ "/EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -45,9 +45,9 @@ # DY cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14212297, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -56,9 +56,9 @@ ) cpn.add_dataset( - name="dy_lep_0j_amcatnlo", + name="dy_0j_amcatnlo", id=14212804, - processes=[procs.dy_lep_0j], + processes=[procs.dy_0j], keys=[ "/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -67,9 +67,9 @@ ) cpn.add_dataset( - name="dy_lep_1j_amcatnlo", + name="dy_1j_amcatnlo", id=14238480, - processes=[procs.dy_lep_1j], + processes=[procs.dy_1j], keys=[ "/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -78,9 +78,9 @@ ) cpn.add_dataset( - name="dy_lep_2j_amcatnlo", + name="dy_2j_amcatnlo", id=14212211, - processes=[procs.dy_lep_2j], + processes=[procs.dy_2j], keys=[ "/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -89,31 +89,20 @@ ) cpn.add_dataset( - name="dy_lep_pt100to250_amcatnlo", - id=14342843, - processes=[procs.dy_lep_pt100to250], - keys=[ - "/DYJetsToLL_LHEFilterPtZ-100To250_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa - ], - n_files=1_273, - n_events=40_115_413, -) - -cpn.add_dataset( - name="dy_lep_pt250to400_amcatnlo", - id=14346965, - processes=[procs.dy_lep_pt250to400], + name="dy_pt0to50_amcatnlo", + id=14339864, + processes=[procs.dy_pt0to50], keys=[ - "/DYJetsToLL_LHEFilterPtZ-250To400_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa + "/DYJetsToLL_LHEFilterPtZ-0To50_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], - n_files=356, - n_events=12_085_183, + n_files=2_335, + n_events=101_338_633, ) cpn.add_dataset( - name="dy_lep_pt50to100_amcatnlo", + name="dy_pt50to100_amcatnlo", id=14335914, - processes=[procs.dy_lep_pt50to100], + processes=[procs.dy_pt50to100], keys=[ "/DYJetsToLL_LHEFilterPtZ-50To100_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -122,31 +111,31 @@ ) cpn.add_dataset( - name="dy_lep_pt0to50_amcatnlo", - id=14339864, - processes=[procs.dy_lep_pt0to50], + name="dy_pt100to250_amcatnlo", + id=14342843, + processes=[procs.dy_pt100to250], keys=[ - "/DYJetsToLL_LHEFilterPtZ-0To50_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa + "/DYJetsToLL_LHEFilterPtZ-100To250_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], - n_files=2_335, - n_events=101_338_633, + n_files=1_273, + n_events=40_115_413, ) cpn.add_dataset( - name="dy_lep_pt650_amcatnlo", - id=14349654, - processes=[procs.dy_lep_pt650], + name="dy_pt250to400_amcatnlo", + id=14346965, + processes=[procs.dy_pt250to400], keys=[ - "/DYJetsToLL_LHEFilterPtZ-650ToInf_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa + "/DYJetsToLL_LHEFilterPtZ-250To400_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], - n_files=82, - n_events=1_999_583, + n_files=356, + n_events=12_085_183, ) cpn.add_dataset( - name="dy_lep_pt400to650_amcatnlo", + name="dy_pt400to650_amcatnlo", id=14350490, - processes=[procs.dy_lep_pt400to650], + processes=[procs.dy_pt400to650], keys=[ "/DYJetsToLL_LHEFilterPtZ-400To650_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -154,6 +143,18 @@ n_events=1_993_002, ) +cpn.add_dataset( + name="dy_pt650toinf_amcatnlo", + id=14349654, + processes=[procs.dy_pt650toinf], + keys=[ + "/DYJetsToLL_LHEFilterPtZ-650ToInf_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa + ], + n_files=82, + n_events=1_999_583, +) + + # multi boson cpn.add_dataset( @@ -269,16 +270,6 @@ n_events=74_676_454, ) -cpn.add_dataset( - name="w_lnu_ht2500_madgraph", - id=14266888, - processes=[procs.w_lnu_ht2500], - keys=[ - "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa - ], - n_files=31, - n_events=808_649, -) cpn.add_dataset( name="w_lnu_ht70to100_madgraph", @@ -303,14 +294,14 @@ ) cpn.add_dataset( - name="w_lnu_ht1200to2500_madgraph", - id=14226935, - processes=[procs.w_lnu_ht1200to2500], + name="w_lnu_ht200to400_madgraph", + id=14212310, + processes=[procs.w_lnu_ht200to400], keys=[ - "/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa + "/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], - n_files=71, - n_events=2_119_975, + n_files=283, + n_events=17_870_845, ) cpn.add_dataset( @@ -346,28 +337,51 @@ n_events=2_510_487, ) + cpn.add_dataset( - name="w_lnu_ht200to400_madgraph", - id=14212310, - processes=[procs.w_lnu_ht200to400], + name="w_lnu_ht1200to2500_madgraph", + id=14226935, + processes=[procs.w_lnu_ht1200to2500], keys=[ - "/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa + "/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], - n_files=283, - n_events=17_870_845, + n_files=71, + n_events=2_119_975, +) + +cpn.add_dataset( + name="w_lnu_ht2500toinf_madgraph", + id=14266888, + processes=[procs.w_lnu_ht2500toinf], + keys=[ + "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa + ], + n_files=31, + n_events=808_649, ) # Z # cpn.add_dataset( -# name="z_nunu_ht600to800_madgraph", -# id=14238483, -# processes=[procs.z_nunu_ht600to800], +# name="z_nunu_ht100to200_madgraph", +# id=14212946, +# processes=[procs.z_nunu_ht100to200], # keys=[ -# "/ZJetsToNuNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa +# "/ZJetsToNuNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa # ], -# n_files=2, -# n_events=2030858, +# n_files=5, +# n_events=7784090, +# ) + +# cpn.add_dataset( +# name="z_nunu_ht200to400_madgraph", +# id=14216548, +# processes=[procs.z_nunu_ht200to400], +# keys=[ +# "/ZJetsToNuNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa +# ], +# n_files=5, +# n_events=7531529, # ) # cpn.add_dataset( @@ -382,14 +396,14 @@ # ) # cpn.add_dataset( -# name="z_nunu_ht200to400_madgraph", -# id=14216548, -# processes=[procs.z_nunu_ht200to400], +# name="z_nunu_ht600to800_madgraph", +# id=14238483, +# processes=[procs.z_nunu_ht600to800], # keys=[ -# "/ZJetsToNuNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa +# "/ZJetsToNuNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], -# n_files=5, -# n_events=7531529, +# n_files=2, +# n_events=2030858, # ) # cpn.add_dataset( @@ -415,9 +429,9 @@ # ) # cpn.add_dataset( -# name="z_nunu_ht2500_madgraph", +# name="z_nunu_ht2500toinf_madgraph", # id=14242842, -# processes=[procs.z_nunu_ht2500], +# processes=[procs.z_nunu_ht2500toinf], # keys=[ # "/ZJetsToNuNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], @@ -425,17 +439,6 @@ # n_events=111838, # ) -# cpn.add_dataset( -# name="z_nunu_ht100to200_madgraph", -# id=14212946, -# processes=[procs.z_nunu_ht100to200], -# keys=[ -# "/ZJetsToNuNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa -# ], -# n_files=5, -# n_events=7784090, -# ) - # cpn.add_dataset( # name="z_qq_ht200to400_madgraph", # id=14303395, @@ -470,9 +473,9 @@ # ) # cpn.add_dataset( -# name="z_qq_ht800_madgraph", +# name="z_qq_ht800toinf_madgraph", # id=14305027, -# processes=[procs.z_qq_ht800], +# processes=[procs.z_qq_ht800toinf], # keys=[ # "/ZJetsToQQ_HT-800toInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa # ], diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ttbar.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ttbar.py index ebc54d16..0ad4f0c2 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ttbar.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ttbar.py @@ -25,9 +25,9 @@ # TTZToLLNuNu cpn.add_dataset( - name="ttz_llnunu_m10_amcatnlo", + name="ttz_zlep_m10toinf_amcatnlo", id=14213080, - processes=[procs.ttz_llnunu_m10], + processes=[procs.ttz_zlep_m10toinf], keys=[ "/TTZToLLNuNu_M-10_TuneCP5_13TeV-amcatnlo-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v1/NANOAODSIM", # noqa ], @@ -37,9 +37,9 @@ # TTWJetsToQQ cpn.add_dataset( - name="ttw_qq_amcatnlo", + name="ttw_wqq_amcatnlo", id=14286376, - processes=[procs.ttw_qq], + processes=[procs.ttw_wqq], keys=[ "/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], @@ -49,9 +49,9 @@ # TTWJetsToLNu cpn.add_dataset( - name="ttw_lnu_amcatnlo", + name="ttw_wlnu_amcatnlo", id=14251563, - processes=[procs.ttw_lnu], + processes=[procs.ttw_wlnu], keys=[ "/TTWJetsToLNu_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py index fadb5f53..8a275a87 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py @@ -13,9 +13,9 @@ # Drell-Yan # cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14284445, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -25,9 +25,9 @@ # jet binned, amcatnlo cpn.add_dataset( - name="dy_lep_0j_amcatnlo", + name="dy_0j_amcatnlo", id=14300634, - processes=[procs.dy_lep_0j], + processes=[procs.dy_0j], keys=[ "/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -36,9 +36,9 @@ ) cpn.add_dataset( - name="dy_lep_1j_amcatnlo", + name="dy_1j_amcatnlo", id=14300598, - processes=[procs.dy_lep_1j], + processes=[procs.dy_1j], keys=[ "/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -47,9 +47,9 @@ ) cpn.add_dataset( - name="dy_lep_2j_amcatnlo", + name="dy_2j_amcatnlo", id=14212537, - processes=[procs.dy_lep_2j], + processes=[procs.dy_2j], keys=[ "/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -60,9 +60,9 @@ # pt binned cpn.add_dataset( - name="dy_lep_pt0to50_amcatnlo", + name="dy_pt0to50_amcatnlo", id=14338354, - processes=[procs.dy_lep_pt0to50], + processes=[procs.dy_pt0to50], keys=[ "/DYJetsToLL_LHEFilterPtZ-0To50_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -71,9 +71,9 @@ ) cpn.add_dataset( - name="dy_lep_pt50to100_amcatnlo", + name="dy_pt50to100_amcatnlo", id=14336830, - processes=[procs.dy_lep_pt50to100], + processes=[procs.dy_pt50to100], keys=[ "/DYJetsToLL_LHEFilterPtZ-50To100_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -82,9 +82,9 @@ ) cpn.add_dataset( - name="dy_lep_pt100to250_amcatnlo", + name="dy_pt100to250_amcatnlo", id=14337510, - processes=[procs.dy_lep_pt100to250], + processes=[procs.dy_pt100to250], keys=[ "/DYJetsToLL_LHEFilterPtZ-100To250_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -93,9 +93,9 @@ ) cpn.add_dataset( - name="dy_lep_pt250to400_amcatnlo", + name="dy_pt250to400_amcatnlo", id=14337403, - processes=[procs.dy_lep_pt250to400], + processes=[procs.dy_pt250to400], keys=[ "/DYJetsToLL_LHEFilterPtZ-250To400_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -104,9 +104,9 @@ ) cpn.add_dataset( - name="dy_lep_pt400to650_amcatnlo", + name="dy_pt400to650_amcatnlo", id=14338401, - processes=[procs.dy_lep_pt400to650], + processes=[procs.dy_pt400to650], keys=[ "/DYJetsToLL_LHEFilterPtZ-400To650_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -115,9 +115,9 @@ ) cpn.add_dataset( - name="dy_lep_pt650_amcatnlo", + name="dy_pt650toinf_amcatnlo", id=14338815, - processes=[procs.dy_lep_pt650], + processes=[procs.dy_pt650toinf], keys=[ "/DYJetsToLL_LHEFilterPtZ-650ToInf_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -220,9 +220,9 @@ ) cpn.add_dataset( - name="w_lnu_ht2500_madgraph", + name="w_lnu_ht2500toinf_madgraph", id=14237764, - processes=[procs.w_lnu_ht2500], + processes=[procs.w_lnu_ht2500toinf], keys=[ "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -301,9 +301,9 @@ ) cpn.add_dataset( - name="z_nunu_ht2500_madgraph", + name="z_nunu_ht2500toinf_madgraph", id=14241375, - processes=[procs.z_nunu_ht2500], + processes=[procs.z_nunu_ht2500toinf], keys=[ "/ZJetsToNuNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -345,9 +345,9 @@ ) cpn.add_dataset( - name="z_qq_ht800_madgraph", + name="z_qq_ht800toinf_madgraph", id=14275730, - processes=[procs.z_qq_ht800], + processes=[procs.z_qq_ht800toinf], keys=[ "/ZJetsToQQ_HT-800toInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -362,9 +362,9 @@ # cpn.add_dataset( - name="ewk_wm_lnu_m50_madgraph", + name="ewk_wm_lnu_m50toinf_madgraph", id=14215052, - processes=[procs.ewk_wm_lnu_m50], + processes=[procs.ewk_wm_lnu_m50toinf], keys=[ "/EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -373,9 +373,9 @@ ) cpn.add_dataset( - name="ewk_w_lnu_m50_madgraph", + name="ewk_w_lnu_m50toinf_madgraph", id=14216740, - processes=[procs.ewk_wp_lnu_m50], + processes=[procs.ewk_wp_lnu_m50toinf], keys=[ "/EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -384,9 +384,9 @@ ) cpn.add_dataset( - name="ewk_z_ll_m50_madgraph", + name="ewk_z_ll_m50toinf_madgraph", id=14216471, - processes=[procs.ewk_z_ll_m50], + processes=[procs.ewk_z_ll_m50toinf], keys=[ "/EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -412,9 +412,9 @@ ) cpn.add_dataset( - name="zz_qqll_m4_amcatnlo", + name="zz_zqq_zll_m4toinf_amcatnlo", id=14284244, - processes=[procs.zz_qqll_m4], + processes=[procs.zz_zqq_zll_m4toinf], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -427,9 +427,9 @@ # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="zz_llnunu_powheg", + name="zz_zll_znunu_m4toinf_powheg", id=14212205, - processes=[procs.zz_llnunu_m4], + processes=[procs.zz_zll_znunu_m4toinf], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -442,9 +442,9 @@ # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="zz_llll_powheg", + name="zz_zll_zll_m4toinf_powheg", id=14344450, - processes=[procs.zz_llll_m4], + processes=[procs.zz_zll_zll_m4toinf], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -453,9 +453,9 @@ ) cpn.add_dataset( - name="zz_qqqq_amcatnlo", + name="zz_zqq_zqq_amcatnlo", id=14373200, - processes=[procs.zz_qqqq], + processes=[procs.zz_zqq_zqq], keys=[ "/ZZTo4Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -464,9 +464,9 @@ ) cpn.add_dataset( - name="zz_nunuqq_amcatnlo", + name="zz_znunu_zqq_amcatnlo", id=14373276, - processes=[procs.zz_nunuqq], + processes=[procs.zz_znunu_zqq], keys=[ "/ZZTo2Nu2Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -492,9 +492,9 @@ # it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="wz_lllnu_amcatnlo", + name="wz_wlnu_zll_m4toinf_amcatnlo", id=14212844, - processes=[procs.wz_lllnu_m4], + processes=[procs.wz_wlnu_zll_m4toinf], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -503,9 +503,9 @@ ) cpn.add_dataset( - name="wz_qqll_m4_amcatnlo", + name="wz_wqq_zll_m4toinf_amcatnlo", id=14283305, - processes=[procs.wz_qqll_m4], + processes=[procs.wz_wqq_zll_m4toinf], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -514,9 +514,9 @@ ) cpn.add_dataset( - name="wz_lnuqq_amcatnlo", + name="wz_wlnu_zqq_amcatnlo", id=14373428, - processes=[procs.wz_lnuqq], + processes=[procs.wz_wlnu_zqq], keys=[ "/WZTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -537,9 +537,9 @@ ) cpn.add_dataset( - name="ww_lnuqq_amcatnlo", + name="ww_sl_amcatnlo", id=14373365, - processes=[procs.ww_lnuqq], + processes=[procs.ww_sl], keys=[ "/WWTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -548,9 +548,9 @@ ) cpn.add_dataset( - name="ww_lnulnu_powheg", + name="ww_dl_powheg", id=14215099, - processes=[procs.ww_lnulnu], + processes=[procs.ww_dl], keys=[ "/WWTo2L2Nu_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -559,9 +559,9 @@ ) cpn.add_dataset( - name="ww_qqqq_amcatnlo", + name="ww_fh_amcatnlo", id=14373147, - processes=[procs.ww_qqqq], + processes=[procs.ww_fh], keys=[ "/WWTo4Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v3/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py index 3fd67e29..cf75b05d 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py @@ -192,9 +192,9 @@ # cpn.add_dataset( - name="ttz_llnunu_m10_amcatnlo", + name="ttz_zlep_m10toinf_amcatnlo", id=14213407, - processes=[procs.ttz_llnunu_m10], + processes=[procs.ttz_zlep_m10toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -221,9 +221,9 @@ ) cpn.add_dataset( - name="ttw_lnu_amcatnlo", + name="ttw_wlnu_amcatnlo", id=14212801, - processes=[procs.ttw_lnu], + processes=[procs.ttw_wlnu], info=dict( nominal=DatasetInfo( keys=[ @@ -250,9 +250,9 @@ ) cpn.add_dataset( - name="ttw_qq_amcatnlo", + name="ttw_wqq_amcatnlo", id=14213083, - processes=[procs.ttw_qq], + processes=[procs.ttw_wqq], keys=[ "/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_JMEnano_v9/qcd.py b/cmsdb/campaigns/run2_2017_JMEnano_v9/qcd.py index 396f8eca..c59d6fba 100644 --- a/cmsdb/campaigns/run2_2017_JMEnano_v9/qcd.py +++ b/cmsdb/campaigns/run2_2017_JMEnano_v9/qcd.py @@ -106,9 +106,9 @@ ) cpn.add_dataset( - name="qcd_ht2000_madgraph", + name="qcd_ht2000toinf_madgraph", id=14296752, - processes=[procs.qcd_ht2000], + processes=[procs.qcd_ht2000toinf], keys=[ f"/QCD_HT2000toInf_{generator}/RunIISummer20UL17NanoAODv9-20UL17JMENano_{cmssw}/NANOAODSIM", ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py index e8ef6a86..3004c953 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py @@ -14,9 +14,9 @@ # cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14262131, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -26,9 +26,9 @@ # jet binned, madgraph # cpn.add_dataset( -# name="dy_lep_m50_1j_madgraph", +# name="dy_m50toinf_1j_madgraph", # id=14242968, -# processes=[procs.dy_lep_m50_1j], +# processes=[procs.dy_m50toinf_1j], # keys=[ # "/DY1JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -37,9 +37,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_2j_madgraph", +# name="dy_m50toinf_2j_madgraph", # id=14235404, -# processes=[procs.dy_lep_m50_2j], +# processes=[procs.dy_m50toinf_2j], # keys=[ # "/DY2JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -48,9 +48,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_3j_madgraph", +# name="dy_m50toinf_3j_madgraph", # id=14235548, -# processes=[procs.dy_lep_m50_3j], +# processes=[procs.dy_m50toinf_3j], # keys=[ # "/DY3JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -59,9 +59,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_4j_madgraph", +# name="dy_m50toinf_4j_madgraph", # id=14235551, -# processes=[procs.dy_lep_m50_4j], +# processes=[procs.dy_m50toinf_4j], # keys=[ # "/DY4JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -72,9 +72,9 @@ # jet binned, amcatnlo cpn.add_dataset( - name="dy_lep_0j_amcatnlo", + name="dy_0j_amcatnlo", id=14222486, - processes=[procs.dy_lep_0j], + processes=[procs.dy_0j], keys=[ "/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -83,9 +83,9 @@ ) cpn.add_dataset( - name="dy_lep_1j_amcatnlo", + name="dy_1j_amcatnlo", id=14241548, - processes=[procs.dy_lep_1j], + processes=[procs.dy_1j], keys=[ "/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -94,9 +94,9 @@ ) cpn.add_dataset( - name="dy_lep_2j_amcatnlo", + name="dy_2j_amcatnlo", id=14196906, - processes=[procs.dy_lep_2j], + processes=[procs.dy_2j], keys=[ "/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -106,9 +106,9 @@ # ht binned # cpn.add_dataset( -# name="dy_lep_m50_ht70to100_madgraph", +# name="dy_m50toinf_ht70to100_madgraph", # id=14235248, -# processes=[procs.dy_lep_m50_ht70to100], +# processes=[procs.dy_m50toinf_ht70to100], # keys=[ # "/DYJetsToLL_M-50_HT-70to100_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -117,9 +117,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht100to200_madgraph", +# name="dy_m50toinf_ht100to200_madgraph", # id=14235412, -# processes=[procs.dy_lep_m50_ht100to200], +# processes=[procs.dy_m50toinf_ht100to200], # keys=[ # "/DYJetsToLL_M-50_HT-100to200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -128,9 +128,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht200to400_madgraph", +# name="dy_m50toinf_ht200to400_madgraph", # id=14235285, -# processes=[procs.dy_lep_m50_ht200to400], +# processes=[procs.dy_m50toinf_ht200to400], # keys=[ # "/DYJetsToLL_M-50_HT-200to400_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -139,9 +139,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht400to600_madgraph", +# name="dy_m50toinf_ht400to600_madgraph", # id=14234754, -# processes=[procs.dy_lep_m50_ht400to600], +# processes=[procs.dy_m50toinf_ht400to600], # keys=[ # "/DYJetsToLL_M-50_HT-400to600_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -150,9 +150,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht600to800_madgraph", +# name="dy_m50toinf_ht600to800_madgraph", # id=14234976, -# processes=[procs.dy_lep_m50_ht600to800], +# processes=[procs.dy_m50toinf_ht600to800], # keys=[ # "/DYJetsToLL_M-50_HT-600to800_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -161,9 +161,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht800to1200_madgraph", +# name="dy_m50toinf_ht800to1200_madgraph", # id=14234833, -# processes=[procs.dy_lep_m50_ht800to1200], +# processes=[procs.dy_m50toinf_ht800to1200], # keys=[ # "/DYJetsToLL_M-50_HT-800to1200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -172,9 +172,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht1200to2500_madgraph", +# name="dy_m50toinf_ht1200to2500_madgraph", # id=14243239, -# processes=[procs.dy_lep_m50_ht1200to2500], +# processes=[procs.dy_m50toinf_ht1200to2500], # keys=[ # "/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -183,9 +183,9 @@ # ) # # cpn.add_dataset( -# name="dy_lep_m50_ht2500_madgraph", +# name="dy_m50toinf_ht2500toinf_madgraph", # id=14244972, -# processes=[procs.dy_lep_m50_ht2500], +# processes=[procs.dy_m50toinf_ht2500toinf], # keys=[ # "/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -196,9 +196,9 @@ # pt binned cpn.add_dataset( - name="dy_lep_pt0to50_amcatnlo", + name="dy_pt0to50_amcatnlo", id=14349689, - processes=[procs.dy_lep_pt0to50], + processes=[procs.dy_pt0to50], keys=[ "/DYJetsToLL_LHEFilterPtZ-0To50_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -207,9 +207,9 @@ ) cpn.add_dataset( - name="dy_lep_pt50to100_amcatnlo", + name="dy_pt50to100_amcatnlo", id=14350659, - processes=[procs.dy_lep_pt50to100], + processes=[procs.dy_pt50to100], keys=[ "/DYJetsToLL_LHEFilterPtZ-50To100_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -218,9 +218,9 @@ ) cpn.add_dataset( - name="dy_lep_pt100to250_amcatnlo", + name="dy_pt100to250_amcatnlo", id=14353573, - processes=[procs.dy_lep_pt100to250], + processes=[procs.dy_pt100to250], keys=[ "/DYJetsToLL_LHEFilterPtZ-100To250_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -229,9 +229,9 @@ ) cpn.add_dataset( - name="dy_lep_pt250to400_amcatnlo", + name="dy_pt250to400_amcatnlo", id=14353503, - processes=[procs.dy_lep_pt250to400], + processes=[procs.dy_pt250to400], keys=[ "/DYJetsToLL_LHEFilterPtZ-250To400_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -240,9 +240,9 @@ ) cpn.add_dataset( - name="dy_lep_pt400to650_amcatnlo", + name="dy_pt400to650_amcatnlo", id=14335843, - processes=[procs.dy_lep_pt400to650], + processes=[procs.dy_pt400to650], keys=[ "/DYJetsToLL_LHEFilterPtZ-400To650_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v4/NANOAODSIM", # noqa ], @@ -251,9 +251,9 @@ ) cpn.add_dataset( - name="dy_lep_pt650_amcatnlo", + name="dy_pt650toinf_amcatnlo", id=14349880, - processes=[procs.dy_lep_pt650], + processes=[procs.dy_pt650toinf], keys=[ "/DYJetsToLL_LHEFilterPtZ-650ToInf_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -357,9 +357,9 @@ ) cpn.add_dataset( - name="w_lnu_ht2500_madgraph", + name="w_lnu_ht2500toinf_madgraph", id=14267026, - processes=[procs.w_lnu_ht2500], + processes=[procs.w_lnu_ht2500toinf], keys=[ "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -374,9 +374,9 @@ # cpn.add_dataset( - name="ewk_wm_lnu_m50_madgraph", + name="ewk_wm_lnu_m50toinf_madgraph", id=14301802, - processes=[procs.ewk_wm_lnu_m50], + processes=[procs.ewk_wm_lnu_m50toinf], keys=[ "/EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -385,9 +385,9 @@ ) cpn.add_dataset( - name="ewk_w_lnu_m50_madgraph", + name="ewk_w_lnu_m50toinf_madgraph", id=14300809, - processes=[procs.ewk_wp_lnu_m50], + processes=[procs.ewk_wp_lnu_m50toinf], keys=[ "/EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -396,9 +396,9 @@ ) cpn.add_dataset( - name="ewk_z_ll_m50_madgraph", + name="ewk_z_ll_m50toinf_madgraph", id=14300868, - processes=[procs.ewk_z_ll_m50], + processes=[procs.ewk_z_ll_m50toinf], keys=[ "/EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -424,9 +424,9 @@ ) # cpn.add_dataset( -# name="zz_qqll_m4_amcatnlo", +# name="zz_zqq_zll_m4toinf_amcatnlo", # id=14298864, -# processes=[procs.zz_qqll_m4], +# processes=[procs.zz_zqq_zll_m4toinf], # keys=[ # "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -439,9 +439,9 @@ # # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # # therefore the corresponding process is with the "_m4" suffix # cpn.add_dataset( -# name="zz_llnunu_powheg", +# name="zz_zll_znunu_m4toinf_powheg", # id=14237024, -# processes=[procs.zz_llnunu_m4], +# processes=[procs.zz_zll_znunu_m4toinf], # keys=[ # "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -454,9 +454,9 @@ # # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # # therefore the corresponding process is with the "_m4" suffix # cpn.add_dataset( -# name="zz_llll_powheg", +# name="zz_zll_zll_m4toinf_powheg", # id=14243658, -# processes=[procs.zz_llll_m4], +# processes=[procs.zz_zll_zll_m4toinf], # keys=[ # "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -481,9 +481,9 @@ # # it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel # # therefore the corresponding process is with the "_m4" suffix # cpn.add_dataset( -# name="wz_lllnu_amcatnlo", +# name="wz_wlnu_zll_m4toinf_amcatnlo", # id=14253602, -# processes=[procs.wz_lllnu_m4], +# processes=[procs.wz_wlnu_zll_m4toinf], # keys=[ # "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -492,9 +492,9 @@ # ) # cpn.add_dataset( -# name="wz_qqll_m4_amcatnlo", +# name="wz_wqq_zll_m4toinf_amcatnlo", # id=14328000, -# processes=[procs.wz_qqll_m4], +# processes=[procs.wz_wqq_zll_m4toinf], # keys=[ # "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -515,9 +515,9 @@ ) # cpn.add_dataset( -# name="ww_lnulnu_powheg", +# name="ww_dl_powheg", # id=14241651, -# processes=[procs.ww_lnulnu], +# processes=[procs.ww_dl], # keys=[ # "/WWTo2L2Nu_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/qcd.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/qcd.py index 06debfb9..97cbe8ab 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/qcd.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/qcd.py @@ -99,9 +99,9 @@ # ) # # cpn.add_dataset( -# name="qcd_ht2000_madgraph", +# name="qcd_ht2000toinf_madgraph", # id=14165502, -# processes=[procs.qcd_ht2000], +# processes=[procs.qcd_ht2000toinf], # keys=[ # "/QCD_HT2000toInf_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17NanoAODv2-106X_mc2017_realistic_v8-v1/NANOAODSIM", # noqa # ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py index fc1dd4d5..6bf64347 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py @@ -52,9 +52,9 @@ # cpn.add_dataset( - name="ttz_llnunu_m10_amcatnlo", + name="ttz_zlep_m10toinf_amcatnlo", id=14196941, - processes=[procs.ttz_llnunu_m10], + processes=[procs.ttz_zlep_m10toinf], keys=[ "/TTZToLLNuNu_M-10_TuneCP5_13TeV-amcatnlo-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -64,9 +64,9 @@ cpn.add_dataset( - name="ttw_lnu_amcatnlo", + name="ttw_wlnu_amcatnlo", id=14197077, - processes=[procs.ttw_lnu], + processes=[procs.ttw_wlnu], keys=[ "/TTWJetsToLNu_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -75,9 +75,9 @@ ) cpn.add_dataset( - name="ttw_qq_amcatnlo", + name="ttw_wqq_amcatnlo", id=14208089, - processes=[procs.ttw_qq], + processes=[procs.ttw_wqq], keys=[ "/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py index 89b4757e..b4eb8404 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py @@ -14,9 +14,9 @@ # jet binned, madgraph cpn.add_dataset( - name="dy_lep_m50_1j_madgraph", + name="dy_m50toinf_1j_madgraph", id=14242968, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], keys=[ "/DY1JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -25,9 +25,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_2j_madgraph", + name="dy_m50toinf_2j_madgraph", id=14235404, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], keys=[ "/DY2JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -36,9 +36,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_3j_madgraph", + name="dy_m50toinf_3j_madgraph", id=14235548, - processes=[procs.dy_lep_m50_3j], + processes=[procs.dy_m50toinf_3j], keys=[ "/DY3JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -47,9 +47,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_4j_madgraph", + name="dy_m50toinf_4j_madgraph", id=14235551, - processes=[procs.dy_lep_m50_4j], + processes=[procs.dy_m50toinf_4j], keys=[ "/DY4JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -59,9 +59,9 @@ # jet binned, amcatnlo cpn.add_dataset( - name="dy_lep_0j_amcatnlo", + name="dy_0j_amcatnlo", id=14302706, - processes=[procs.dy_lep_0j], + processes=[procs.dy_0j], keys=[ "/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -70,9 +70,9 @@ ) cpn.add_dataset( - name="dy_lep_1j_amcatnlo", + name="dy_1j_amcatnlo", id=14300055, - processes=[procs.dy_lep_1j], + processes=[procs.dy_1j], keys=[ "/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -81,9 +81,9 @@ ) cpn.add_dataset( - name="dy_lep_2j_amcatnlo", + name="dy_2j_amcatnlo", id=14231469, - processes=[procs.dy_lep_2j], + processes=[procs.dy_2j], keys=[ "/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -93,9 +93,9 @@ # ht binned cpn.add_dataset( - name="dy_lep_m50_ht70to100_madgraph", + name="dy_m50toinf_ht70to100_madgraph", id=14235248, - processes=[procs.dy_lep_m50_ht70to100], + processes=[procs.dy_m50toinf_ht70to100], keys=[ "/DYJetsToLL_M-50_HT-70to100_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -104,9 +104,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht100to200_madgraph", + name="dy_m50toinf_ht100to200_madgraph", id=14235412, - processes=[procs.dy_lep_m50_ht100to200], + processes=[procs.dy_m50toinf_ht100to200], keys=[ "/DYJetsToLL_M-50_HT-100to200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -115,9 +115,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht200to400_madgraph", + name="dy_m50toinf_ht200to400_madgraph", id=14235285, - processes=[procs.dy_lep_m50_ht200to400], + processes=[procs.dy_m50toinf_ht200to400], keys=[ "/DYJetsToLL_M-50_HT-200to400_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -126,9 +126,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht400to600_madgraph", + name="dy_m50toinf_ht400to600_madgraph", id=14234754, - processes=[procs.dy_lep_m50_ht400to600], + processes=[procs.dy_m50toinf_ht400to600], keys=[ "/DYJetsToLL_M-50_HT-400to600_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -137,9 +137,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht600to800_madgraph", + name="dy_m50toinf_ht600to800_madgraph", id=14234976, - processes=[procs.dy_lep_m50_ht600to800], + processes=[procs.dy_m50toinf_ht600to800], keys=[ "/DYJetsToLL_M-50_HT-600to800_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -148,9 +148,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht800to1200_madgraph", + name="dy_m50toinf_ht800to1200_madgraph", id=14234833, - processes=[procs.dy_lep_m50_ht800to1200], + processes=[procs.dy_m50toinf_ht800to1200], keys=[ "/DYJetsToLL_M-50_HT-800to1200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -159,9 +159,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht1200to2500_madgraph", + name="dy_m50toinf_ht1200to2500_madgraph", id=14243239, - processes=[procs.dy_lep_m50_ht1200to2500], + processes=[procs.dy_m50toinf_ht1200to2500], keys=[ "/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -170,9 +170,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht2500_madgraph", + name="dy_m50toinf_ht2500toinf_madgraph", id=14244972, - processes=[procs.dy_lep_m50_ht2500], + processes=[procs.dy_m50toinf_ht2500toinf], keys=[ "/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -275,9 +275,9 @@ ) cpn.add_dataset( - name="w_lnu_ht2500_madgraph", + name="w_lnu_ht2500toinf_madgraph", id=14267094, - processes=[procs.w_lnu_ht2500], + processes=[procs.w_lnu_ht2500toinf], keys=[ "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -292,9 +292,9 @@ # cpn.add_dataset( - name="ewk_wm_lnu_m50_madgraph", + name="ewk_wm_lnu_m50toinf_madgraph", id=14301832, - processes=[procs.ewk_wm_lnu_m50], + processes=[procs.ewk_wm_lnu_m50toinf], keys=[ "/EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -303,9 +303,9 @@ ) cpn.add_dataset( - name="ewk_w_lnu_m50_madgraph", + name="ewk_w_lnu_m50toinf_madgraph", id=14300978, - processes=[procs.ewk_wp_lnu_m50], + processes=[procs.ewk_wp_lnu_m50toinf], keys=[ "/EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -314,9 +314,9 @@ ) cpn.add_dataset( - name="ewk_z_ll_m50_madgraph", + name="ewk_z_ll_m50toinf_madgraph", id=14301412, - processes=[procs.ewk_z_ll_m50], + processes=[procs.ewk_z_ll_m50toinf], keys=[ "/EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -342,9 +342,9 @@ ) cpn.add_dataset( - name="zz_qqll_m4_amcatnlo", + name="zz_zqq_zll_m4toinf_amcatnlo", id=14298864, - processes=[procs.zz_qqll_m4], + processes=[procs.zz_zqq_zll_m4toinf], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -357,9 +357,9 @@ # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="zz_llnunu_powheg", + name="zz_zll_znunu_m4toinf_powheg", id=14237024, - processes=[procs.zz_llnunu_m4], + processes=[procs.zz_zll_znunu_m4toinf], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -372,9 +372,9 @@ # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="zz_llll_powheg", + name="zz_zll_zll_m4toinf_powheg", id=14243658, - processes=[procs.zz_llll_m4], + processes=[procs.zz_zll_zll_m4toinf], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -399,9 +399,9 @@ # it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel # therefore the corresponding process is with the "_m4" suffix cpn.add_dataset( - name="wz_lllnu_amcatnlo", + name="wz_wlnu_zll_m4toinf_amcatnlo", id=14253602, - processes=[procs.wz_lllnu_m4], + processes=[procs.wz_wlnu_zll_m4toinf], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -410,9 +410,9 @@ ) cpn.add_dataset( - name="wz_qqll_m4_amcatnlo", + name="wz_wqq_zll_m4toinf_amcatnlo", id=14328000, - processes=[procs.wz_qqll_m4], + processes=[procs.wz_wqq_zll_m4toinf], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -433,9 +433,9 @@ ) cpn.add_dataset( - name="ww_lnulnu_powheg", + name="ww_dl_powheg", id=14241651, - processes=[procs.ww_lnulnu], + processes=[procs.ww_dl], keys=[ "/WWTo2L2Nu_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/qcd.py b/cmsdb/campaigns/run2_2017_nano_v9/qcd.py index 3431c47e..7ca5e06e 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/qcd.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/qcd.py @@ -110,9 +110,9 @@ cpn.add_dataset( - name="qcd_ht2000_madgraph", + name="qcd_ht2000toinf_madgraph", id=14380548, - processes=[procs.qcd_ht2000], + processes=[procs.qcd_ht2000toinf], keys=[ "/QCD_HT2000toInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -213,9 +213,9 @@ ) cpn.add_dataset( - name="qcd_ht2000_psweights_madgraph", + name="qcd_ht2000toinf_psweights_madgraph", id=14165502, - processes=[procs.qcd_ht2000], + processes=[procs.qcd_ht2000toinf], keys=[ "/QCD_HT2000toInf_TuneCP5_PSWeights_13TeV-madgraphMLM-pythia8/RunIISummer19UL17NanoAODv2-106X_mc2017_realistic_v8-v1/NANOAODSIM", # noqa ], @@ -349,9 +349,9 @@ ) cpn.add_dataset( - name="qcd_mu_pt1000_pythia", + name="qcd_mu_pt1000toinf_pythia", id=14288345, - processes=[procs.qcd_mu_pt1000], + processes=[procs.qcd_mu_pt1000toinf], keys=[ "/QCD_Pt-1000_MuEnrichedPt5_TuneCP5_13TeV-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/top.py b/cmsdb/campaigns/run2_2017_nano_v9/top.py index d00742cf..62458ac5 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/top.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/top.py @@ -192,9 +192,9 @@ # cpn.add_dataset( - name="ttz_llnunu_m10_amcatnlo", + name="ttz_zlep_m10toinf_amcatnlo", id=14229512, - processes=[procs.ttz_llnunu_m10], + processes=[procs.ttz_zlep_m10toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -221,9 +221,9 @@ ) cpn.add_dataset( - name="ttw_lnu_amcatnlo", + name="ttw_wlnu_amcatnlo", id=14228083, - processes=[procs.ttw_lnu], + processes=[procs.ttw_wlnu], info=dict( nominal=DatasetInfo( keys=[ @@ -250,9 +250,9 @@ ) cpn.add_dataset( - name="ttw_qq_amcatnlo", + name="ttw_wqq_amcatnlo", id=14235122, - processes=[procs.ttw_qq], + processes=[procs.ttw_wqq], keys=[ "/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_JMEnano_v9/qcd.py b/cmsdb/campaigns/run2_2018_JMEnano_v9/qcd.py index ed9fbab6..11eb1e1d 100644 --- a/cmsdb/campaigns/run2_2018_JMEnano_v9/qcd.py +++ b/cmsdb/campaigns/run2_2018_JMEnano_v9/qcd.py @@ -103,9 +103,9 @@ ) cpn.add_dataset( - name="qcd_ht2000_madgraph", + name="qcd_ht2000toinf_madgraph", id=14299583, - processes=[procs.qcd_ht2000], + processes=[procs.qcd_ht2000toinf], keys=[ "/QCD_HT2000toInf_TuneCP5_PSWeights_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv9-20UL18JMENano_106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py index 46ea503d..08af873f 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py @@ -11,9 +11,9 @@ # DY cpn.add_dataset( - name="dy_lep_m10to50_madgraph", + name="dy_m10to50_madgraph", id=14196228, - processes=[procs.dy_lep_m10to50], + processes=[procs.dy_m10to50], keys=[ "/DYJetsToLL_M-10to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -22,9 +22,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_madgraph", + name="dy_m50toinf_madgraph", id=14205668, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -33,9 +33,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ext1_madgraph", + name="dy_m50toinf_ext1_madgraph", id=14179545, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1_ext1-v1/NANOAODSIM", # noqa ], @@ -44,9 +44,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14260218, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -56,9 +56,9 @@ # jet binned cpn.add_dataset( - name="dy_lep_m50_1j_madgraph", + name="dy_m50toinf_1j_madgraph", id=14212255, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], keys=[ "/DY1JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -67,9 +67,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_2j_madgraph", + name="dy_m50toinf_2j_madgraph", id=14209983, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], keys=[ "/DY2JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -78,9 +78,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_3j_madgraph", + name="dy_m50toinf_3j_madgraph", id=14284866, - processes=[procs.dy_lep_m50_3j], + processes=[procs.dy_m50toinf_3j], keys=[ "/DY3JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -89,9 +89,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_4j_madgraph", + name="dy_m50toinf_4j_madgraph", id=14214881, - processes=[procs.dy_lep_m50_4j], + processes=[procs.dy_m50toinf_4j], keys=[ "/DY4JetsToLL_M-50_MatchEWPDG20_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -100,9 +100,9 @@ ) cpn.add_dataset( - name="dy_lep_0j_amcatnlo", + name="dy_0j_amcatnlo", id=14196360, - processes=[procs.dy_lep_0j], + processes=[procs.dy_0j], keys=[ "/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -111,9 +111,9 @@ ) cpn.add_dataset( - name="dy_lep_1j_amcatnlo", + name="dy_1j_amcatnlo", id=14198526, - processes=[procs.dy_lep_1j], + processes=[procs.dy_1j], keys=[ "/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -122,9 +122,9 @@ ) cpn.add_dataset( - name="dy_lep_2j_amcatnlo", + name="dy_2j_amcatnlo", id=14198570, - processes=[procs.dy_lep_2j], + processes=[procs.dy_2j], keys=[ "/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -134,9 +134,9 @@ # ht binned cpn.add_dataset( - name="dy_lep_m50_ht70to100_madgraph", + name="dy_m50toinf_ht70to100_madgraph", id=14235248, - processes=[procs.dy_lep_m50_ht70to100], + processes=[procs.dy_m50toinf_ht70to100], keys=[ "/DYJetsToLL_M-50_HT-70to100_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -145,9 +145,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht100to200_madgraph", + name="dy_m50toinf_ht100to200_madgraph", id=14235412, - processes=[procs.dy_lep_m50_ht100to200], + processes=[procs.dy_m50toinf_ht100to200], keys=[ "/DYJetsToLL_M-50_HT-100to200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -156,9 +156,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht200to400_madgraph", + name="dy_m50toinf_ht200to400_madgraph", id=14235285, - processes=[procs.dy_lep_m50_ht200to400], + processes=[procs.dy_m50toinf_ht200to400], keys=[ "/DYJetsToLL_M-50_HT-200to400_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -167,9 +167,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht400to600_madgraph", + name="dy_m50toinf_ht400to600_madgraph", id=14234754, - processes=[procs.dy_lep_m50_ht400to600], + processes=[procs.dy_m50toinf_ht400to600], keys=[ "/DYJetsToLL_M-50_HT-400to600_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -178,9 +178,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht600to800_madgraph", + name="dy_m50toinf_ht600to800_madgraph", id=14234976, - processes=[procs.dy_lep_m50_ht600to800], + processes=[procs.dy_m50toinf_ht600to800], keys=[ "/DYJetsToLL_M-50_HT-600to800_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -189,9 +189,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht800to1200_madgraph", + name="dy_m50toinf_ht800to1200_madgraph", id=14234833, - processes=[procs.dy_lep_m50_ht800to1200], + processes=[procs.dy_m50toinf_ht800to1200], keys=[ "/DYJetsToLL_M-50_HT-800to1200_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -200,9 +200,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht1200to2500_madgraph", + name="dy_m50toinf_ht1200to2500_madgraph", id=14243239, - processes=[procs.dy_lep_m50_ht1200to2500], + processes=[procs.dy_m50toinf_ht1200to2500], keys=[ "/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -211,9 +211,9 @@ ) cpn.add_dataset( - name="dy_lep_m50_ht2500_madgraph", + name="dy_m50toinf_ht2500toinf_madgraph", id=14244972, - processes=[procs.dy_lep_m50_ht2500], + processes=[procs.dy_m50toinf_ht2500toinf], keys=[ "/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_PSweights_13TeV-madgraphMLM-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -223,9 +223,9 @@ # pt binned cpn.add_dataset( - name="dy_lep_pt0to50_amcatnlo", + name="dy_pt0to50_amcatnlo", id=14349198, - processes=[procs.dy_lep_pt0to50], + processes=[procs.dy_pt0to50], keys=[ "/DYJetsToLL_LHEFilterPtZ-0To50_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -234,9 +234,9 @@ ) cpn.add_dataset( - name="dy_lep_pt50to100_amcatnlo", + name="dy_pt50to100_amcatnlo", id=14349041, - processes=[procs.dy_lep_pt50to100], + processes=[procs.dy_pt50to100], keys=[ "/DYJetsToLL_LHEFilterPtZ-50To100_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -245,9 +245,9 @@ ) cpn.add_dataset( - name="dy_lep_pt100to250_amcatnlo", + name="dy_pt100to250_amcatnlo", id=14348756, - processes=[procs.dy_lep_pt100to250], + processes=[procs.dy_pt100to250], keys=[ "/DYJetsToLL_LHEFilterPtZ-100To250_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -256,9 +256,9 @@ ) cpn.add_dataset( - name="dy_lep_pt250to400_amcatnlo", + name="dy_pt250to400_amcatnlo", id=14349402, - processes=[procs.dy_lep_pt250to400], + processes=[procs.dy_pt250to400], keys=[ "/DYJetsToLL_LHEFilterPtZ-250To400_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -267,9 +267,9 @@ ) cpn.add_dataset( - name="dy_lep_pt400to650_amcatnlo", + name="dy_pt400to650_amcatnlo", id=14355832, - processes=[procs.dy_lep_pt400to650], + processes=[procs.dy_pt400to650], keys=[ "/DYJetsToLL_LHEFilterPtZ-400To650_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -278,9 +278,9 @@ ) cpn.add_dataset( - name="dy_lep_pt650_amcatnlo", + name="dy_pt650toinf_amcatnlo", id=14353254, - processes=[procs.dy_lep_pt650], + processes=[procs.dy_pt650toinf], keys=[ "/DYJetsToLL_LHEFilterPtZ-650ToInf_MatchEWPDG20_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -290,9 +290,9 @@ # Z boson production cpn.add_dataset( - name="z_nunu_ht2500_madgraph", + name="z_nunu_ht2500toinf_madgraph", id=14202078, - processes=[procs.z_nunu_ht2500], + processes=[procs.z_nunu_ht2500toinf], keys=[ "/ZJetsToNuNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -462,9 +462,9 @@ ) cpn.add_dataset( - name="w_lnu_ht2500_madgraph", + name="w_lnu_ht2500toinf_madgraph", id=14278023, - processes=[procs.w_lnu_ht2500], + processes=[procs.w_lnu_ht2500toinf], keys=[ "/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -501,9 +501,9 @@ # cpn.add_dataset( - name="ewk_wm_lnu_m50_madgraph", + name="ewk_wm_lnu_m50toinf_madgraph", id=14241011, - processes=[procs.ewk_wm_lnu_m50], + processes=[procs.ewk_wm_lnu_m50toinf], keys=[ "/EWKWMinus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -512,9 +512,9 @@ ) cpn.add_dataset( - name="ewk_w_lnu_m50_madgraph", + name="ewk_w_lnu_m50toinf_madgraph", id=14266666, - processes=[procs.ewk_wp_lnu_m50], + processes=[procs.ewk_wp_lnu_m50toinf], keys=[ "/EWKWPlus2Jets_WToLNu_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -523,9 +523,9 @@ ) cpn.add_dataset( - name="ewk_z_ll_m50_madgraph", + name="ewk_z_ll_m50toinf_madgraph", id=14241555, - processes=[procs.ewk_z_ll_m50], + processes=[procs.ewk_z_ll_m50toinf], keys=[ "/EWKZ2Jets_ZToLL_M-50_TuneCP5_withDipoleRecoil_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -550,9 +550,9 @@ ) cpn.add_dataset( - name="zz_qqll_m4_pythia", + name="zz_zqq_zll_m4toinf_pythia", id=14284213, - processes=[procs.zz_qqll_m4], + processes=[procs.zz_zqq_zll_m4toinf], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -561,9 +561,9 @@ ) cpn.add_dataset( - name="zz_llnunu_m4_pythia", + name="zz_zll_znunu_m4toinf_pythia", id=14196326, - processes=[procs.zz_llnunu_m4], + processes=[procs.zz_zll_znunu_m4toinf], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -572,9 +572,9 @@ ) cpn.add_dataset( - name="zz_nunuqq_pythia", + name="zz_znunu_zqq_pythia", id=14245915, - processes=[procs.zz_nunuqq], + processes=[procs.zz_znunu_zqq], keys=[ "/ZZTo2Q2Nu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -583,9 +583,9 @@ ) cpn.add_dataset( - name="zz_qqqq_pythia", + name="zz_zqq_zqq_pythia", id=14373150, - processes=[procs.zz_qqqq], + processes=[procs.zz_zqq_zqq], keys=[ "/ZZTo4Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -594,9 +594,9 @@ ) cpn.add_dataset( - name="zz_llll_m4_powheg", + name="zz_zll_zll_m4toinf_powheg", id=14241106, - processes=[procs.zz_llll_m4], + processes=[procs.zz_zll_zll_m4toinf], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -617,9 +617,9 @@ ) cpn.add_dataset( - name="wz_lllnu_m4_pythia", + name="wz_wlnu_zll_m4toinf_pythia", id=14253723, - processes=[procs.wz_lllnu_m4], + processes=[procs.wz_wlnu_zll_m4toinf], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -628,9 +628,9 @@ ) cpn.add_dataset( - name="wz_qqll_m4_pythia", + name="wz_wqq_zll_m4toinf_pythia", id=14284121, - processes=[procs.wz_qqll_m4], + processes=[procs.wz_wqq_zll_m4toinf], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -639,9 +639,9 @@ ) cpn.add_dataset( - name="wz_lnuqq_amcatnlo", + name="wz_wlnu_zqq_amcatnlo", id=14373352, - processes=[procs.wz_lnuqq], + processes=[procs.wz_wlnu_zqq], keys=[ "/WZTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -662,9 +662,9 @@ ) cpn.add_dataset( - name="ww_lnuqq_pythia", + name="ww_sl_pythia", id=14372963, - processes=[procs.ww_lnuqq], + processes=[procs.ww_sl], keys=[ "/WWTo1L1Nu2Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -673,9 +673,9 @@ ) cpn.add_dataset( - name="ww_lnulnu_powheg", + name="ww_dl_powheg", id=14241325, - processes=[procs.ww_lnulnu], + processes=[procs.ww_dl], keys=[ "/WWTo2L2Nu_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -684,9 +684,9 @@ ) cpn.add_dataset( - name="ww_qqqq_amcatnlo", + name="ww_fh_amcatnlo", id=14373134, - processes=[procs.ww_qqqq], + processes=[procs.ww_fh], keys=[ "/WWTo4Q_4f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v3/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py index cef3feaa..06e54588 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py @@ -190,9 +190,9 @@ # ttbar + 1 vector boson cpn.add_dataset( - name="ttz_llnunu_amcatnlo", + name="ttz_zlep_m10toinf_amcatnlo", id=14241155, - processes=[procs.ttz_llnunu_m10], + processes=[procs.ttz_zlep_m10toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -219,9 +219,9 @@ ) cpn.add_dataset( - name="ttw_lnu_amcatnlo", + name="ttw_wlnu_amcatnlo", id=14197046, - processes=[procs.ttw_lnu], + processes=[procs.ttw_wlnu], info=dict( nominal=DatasetInfo( keys=[ @@ -248,9 +248,9 @@ ) cpn.add_dataset( - name="ttw_qq_amcatnlo", + name="ttw_wqq_amcatnlo", id=14207353, - processes=[procs.ttw_qq], + processes=[procs.ttw_wqq], keys=[ "/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v11/ewk.py b/cmsdb/campaigns/run3_2022_postEE_nano_v11/ewk.py index 16320593..22ed3e1f 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v11/ewk.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v11/ewk.py @@ -15,10 +15,10 @@ # inclusive (MadGraph) # GrASP: https://cms-pdmv.cern.ch/grasp/samples?campaign=Run3Summer22EEwmLHEGS&dataset=DYJetsToLL_M-50&nanoaod_version=v11 # noqa cpn.add_dataset( - name="dy_lep_m50_madgraph", + name="dy_m50toinf_madgraph", id=14679709, is_data=False, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13p6TeV-madgraphMLM-pythia8/Run3Summer22EENanoAODv11-forPOG_126X_mcRun3_2022_realistic_postEE_v1-v1/NANOAODSIM", # noqa ], @@ -29,10 +29,10 @@ # inclusive (aMC@NLO) # GrASP: https://cms-pdmv.cern.ch/grasp/samples?campaign=Run3Summer22EEwmLHEGS&dataset=DYto2L-2Jets_MLL-50&nanoaod_version=v11 # noqa cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14615268, is_data=False, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22EENanoAODv11-126X_mcRun3_2022_realistic_postEE_v1-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v11/qcd.py b/cmsdb/campaigns/run3_2022_postEE_nano_v11/qcd.py index 2a51ec7c..1cb1ea8e 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v11/qcd.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v11/qcd.py @@ -224,10 +224,10 @@ ) cpn.add_dataset( - name="qcd_pt3200_pythia", + name="qcd_pt3200toinf_pythia", id=14645371, is_data=False, - processes=[procs.qcd_pt3200], + processes=[procs.qcd_pt3200toinf], keys=[ "/QCD_PT-3200_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv11-126X_mcRun3_2022_realistic_postEE_v1_ext1-v1/NANOAODSIM", # noqa ], @@ -377,10 +377,10 @@ # ) cpn.add_dataset( - name="qcd_mu_pt1000_pythia", + name="qcd_mu_pt1000toinf_pythia", id=14687958, is_data=False, - processes=[procs.qcd_mu_pt1000], + processes=[procs.qcd_mu_pt1000toinf], keys=[ "/QCD_PT-1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv11-126X_mcRun3_2022_realistic_postEE_v1-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/ewk.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/ewk.py index cdcfe5c4..7e5543b3 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/ewk.py @@ -17,9 +17,9 @@ # inclusive, LO, forPog cpn.add_dataset( - name="dy_lep_m50_for_pog_madgraph", + name="dy_m50toinf_for_pog_madgraph", id=14791423, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13p6TeV-madgraphMLM-pythia8/Run3Summer22EENanoAODv12-forPOG_130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa ], @@ -29,9 +29,9 @@ # inclusive, LO cpn.add_dataset( - name="dy_lep_m10to50_madgraph", + name="dy_m10to50_madgraph", id=14873228, - processes=[procs.dy_lep_m10to50], + processes=[procs.dy_m10to50], info=dict( nominal=DatasetInfo( keys=[ @@ -43,9 +43,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_madgraph", + name="dy_m50toinf_madgraph", id=14810676, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -66,9 +66,9 @@ # jet-binned, LO cpn.add_dataset( - name="dy_lep_m50_1j_madgraph", + name="dy_m50toinf_1j_madgraph", id=14790810, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], info=dict( nominal=DatasetInfo( keys=[ @@ -80,9 +80,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_2j_madgraph", + name="dy_m50toinf_2j_madgraph", id=14794042, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], info=dict( nominal=DatasetInfo( keys=[ @@ -94,9 +94,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_3j_madgraph", + name="dy_m50toinf_3j_madgraph", id=14791238, - processes=[procs.dy_lep_m50_3j], + processes=[procs.dy_m50toinf_3j], info=dict( nominal=DatasetInfo( keys=[ @@ -108,9 +108,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_4j_madgraph", + name="dy_m50toinf_4j_madgraph", id=14794840, - processes=[procs.dy_lep_m50_4j], + processes=[procs.dy_m50toinf_4j], info=dict( nominal=DatasetInfo( keys=[ @@ -125,9 +125,9 @@ # TODO: implement corresponding processes + xsecs # # ptll-binned, LO # cpn.add_dataset( -# name="dy_lep_m50_ptll100to200_madgraph", +# name="dy_m50toinf_ptll100to200_madgraph", # id=14948737, -# processes=[procs.dy_lep_m50_ptll100to200], +# processes=[procs.dy_m50toinf_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -139,9 +139,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll200to400_madgraph", +# name="dy_m50toinf_ptll200to400_madgraph", # id=14949443, -# processes=[procs.dy_lep_m50_ptll200to400], +# processes=[procs.dy_m50toinf_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -153,9 +153,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll400to600_madgraph", +# name="dy_m50toinf_ptll400to600_madgraph", # id=14949288, -# processes=[procs.dy_lep_m50_ptll400to600], +# processes=[procs.dy_m50toinf_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -167,9 +167,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll600toinf_madgraph", +# name="dy_m50toinf_ptll600toinf_madgraph", # id=14948747, -# processes=[procs.dy_lep_m50_ptll600toinf], +# processes=[procs.dy_m50toinf_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -183,9 +183,9 @@ # # ht-binned, LO # cpn.add_dataset( -# name="dy_lep_m4to50_ht40to70_madgraph", +# name="dy_m4to50_ht40to70_madgraph", # id=14950532, -# processes=[procs.dy_lep_m4to50_ht40to70], +# processes=[procs.dy_m4to50_ht40to70], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -197,9 +197,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht70to100_madgraph", +# name="dy_m4to50_ht70to100_madgraph", # id=14949534, -# processes=[procs.dy_lep_m4to50_ht70to100], +# processes=[procs.dy_m4to50_ht70to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -211,9 +211,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht400to800_madgraph", +# name="dy_m4to50_ht400to800_madgraph", # id=14949799, -# processes=[procs.dy_lep_m4to50_ht400to800], +# processes=[procs.dy_m4to50_ht400to800], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -225,9 +225,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht800to1500_madgraph", +# name="dy_m4to50_ht800to1500_madgraph", # id=14948706, -# processes=[procs.dy_lep_m4to50_ht800to1500], +# processes=[procs.dy_m4to50_ht800to1500], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -239,9 +239,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht1500to2500_madgraph", +# name="dy_m4to50_ht1500to2500_madgraph", # id=14951014, -# processes=[procs.dy_lep_m4to50_ht1500to2500], +# processes=[procs.dy_m4to50_ht1500to2500], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -253,9 +253,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht2500toinf_madgraph", +# name="dy_m4to50_ht2500toinf_madgraph", # id=14952243, -# processes=[procs.dy_lep_m4to50_ht2500toinf], +# processes=[procs.dy_m4to50_ht2500toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -267,9 +267,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht40to70_madgraph", +# name="dy_m50to120_ht40to70_madgraph", # id=14817089, -# processes=[procs.dy_lep_m50to120_ht40to70], +# processes=[procs.dy_m50to120_ht40to70], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -281,9 +281,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht70to100_madgraph", +# name="dy_m50to120_ht70to100_madgraph", # id=14847021, -# processes=[procs.dy_lep_m50to120_ht70to100], +# processes=[procs.dy_m50to120_ht70to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -295,9 +295,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht100to400_madgraph", +# name="dy_m50to120_ht100to400_madgraph", # id=14813464, -# processes=[procs.dy_lep_m50to120_ht100to400], +# processes=[procs.dy_m50to120_ht100to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -309,9 +309,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht400to800_madgraph", +# name="dy_m50to120_ht400to800_madgraph", # id=14878614, -# processes=[procs.dy_lep_m50to120_ht400to800], +# processes=[procs.dy_m50to120_ht400to800], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -325,9 +325,9 @@ # inclusive, NLO cpn.add_dataset( - name="dy_lep_m4to10_amcatnlo", + name="dy_m4to10_amcatnlo", id=14940403, - processes=[procs.dy_lep_m4to10], + processes=[procs.dy_m4to10], info=dict( nominal=DatasetInfo( keys=[ @@ -346,9 +346,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m10to50_amcatnlo", + name="dy_m10to50_amcatnlo", id=14803206, - processes=[procs.dy_lep_m10to50], + processes=[procs.dy_m10to50], info=dict( nominal=DatasetInfo( keys=[ @@ -367,9 +367,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14791972, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -390,9 +390,9 @@ # jet-binned, NLO cpn.add_dataset( - name="dy_lep_m50_0j_amcatnlo", + name="dy_m50toinf_0j_amcatnlo", id=14791116, - processes=[procs.dy_lep_m50_0j], + processes=[procs.dy_m50toinf_0j], info=dict( nominal=DatasetInfo( keys=[ @@ -404,9 +404,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_1j_amcatnlo", + name="dy_m50toinf_1j_amcatnlo", id=14790681, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], info=dict( nominal=DatasetInfo( keys=[ @@ -418,9 +418,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_2j_amcatnlo", + name="dy_m50toinf_2j_amcatnlo", id=14801013, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], info=dict( nominal=DatasetInfo( keys=[ @@ -435,9 +435,9 @@ # TODO: implement corresponding processes + xsecs # # jet-binned, ptll-binned, NLO # cpn.add_dataset( -# name="dy_lep_m501j__ptll40to100_amcatnlo", +# name="dy_m50toinf_1j_ptll40to100_amcatnlo", # id=14825993, -# processes=[procs.dy_lep_m501j__ptll40to100], +# processes=[procs.dy_m50toinf_1j_ptll40to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -449,9 +449,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll600toinf_amcatnlo", +# name="dy_m50toinf_1j_ptll600toinf_amcatnlo", # id=14870369, -# processes=[procs.dy_lep_m50_1j_ptll600toinf], +# processes=[procs.dy_m50toinf_1j_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -463,9 +463,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll100to200_amcatnlo", +# name="dy_m50toinf_1j_ptll100to200_amcatnlo", # id=14826169, -# processes=[procs.dy_lep_m50_1j_ptll100to200], +# processes=[procs.dy_m50toinf_1j_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -477,9 +477,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll200to400_amcatnlo", +# name="dy_m50toinf_1j_ptll200to400_amcatnlo", # id=14824736, -# processes=[procs.dy_lep_m50_1j_ptll200to400], +# processes=[procs.dy_m50toinf_1j_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -491,9 +491,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll400to600_amcatnlo", +# name="dy_m50toinf_1j_ptll400to600_amcatnlo", # id=14826052, -# processes=[procs.dy_lep_m50_1j_ptll400to600], +# processes=[procs.dy_m50toinf_1j_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -506,9 +506,9 @@ # ) # cpn.add_dataset( -# name="dy_lep_m502j__ptll40to100_amcatnlo", +# name="dy_m50toinf_2j_ptll40to100_amcatnlo", # id=14868304, -# processes=[procs.dy_lep_m502j__ptll40to100], +# processes=[procs.dy_m50toinf_2j_ptll40to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -520,9 +520,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll100to200_amcatnlo", +# name="dy_m50toinf_2j_ptll100to200_amcatnlo", # id=14870830, -# processes=[procs.dy_lep_m50_2j_ptll100to200], +# processes=[procs.dy_m50toinf_2j_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -534,9 +534,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll200to400_amcatnlo", +# name="dy_m50toinf_2j_ptll200to400_amcatnlo", # id=14853119, -# processes=[procs.dy_lep_m50_2j_ptll200to400], +# processes=[procs.dy_m50toinf_2j_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -548,9 +548,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll400to600_amcatnlo", +# name="dy_m50toinf_2j_ptll400to600_amcatnlo", # id=14827368, -# processes=[procs.dy_lep_m50_2j_ptll400to600], +# processes=[procs.dy_m50toinf_2j_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -562,9 +562,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll600toinf_amcatnlo", +# name="dy_m50toinf_2j_ptll600toinf_amcatnlo", # id=14824689, -# processes=[procs.dy_lep_m50_2j_ptll600toinf], +# processes=[procs.dy_m50toinf_2j_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/qcd.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/qcd.py index f0a203ff..59d7b3e8 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/qcd.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/qcd.py @@ -119,9 +119,9 @@ n_events=132056316, ) cpn.add_dataset( - name="qcd_mu_pt1000_pythia", + name="qcd_mu_pt1000toinf_pythia", id=14791859, - processes=[procs.qcd_mu_pt1000], + processes=[procs.qcd_mu_pt1000toinf], keys=[ "/QCD_PT-1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa ], @@ -213,9 +213,9 @@ cpn.add_dataset( - name="qcd_doubleem_pt30to40_mgg80_pythia", + name="qcd_doubleem_pt30to40_mgg80toinf_pythia", id=14798807, - processes=[procs.qcd_doubleem_pt30to40_mgg80], + processes=[procs.qcd_doubleem_pt30to40_mgg80toinf], keys=[ "/QCD_PT-30to40_DoubleEMEnriched_MGG-80toInf_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa ], @@ -223,9 +223,9 @@ n_events=4581753, ) cpn.add_dataset( - name="qcd_doubleem_pt30_mgg40to80_pythia", + name="qcd_doubleem_pt30toinf_mgg40to80_pythia", id=14797413, - processes=[procs.qcd_doubleem_pt30_mgg40to80], + processes=[procs.qcd_doubleem_pt30toinf_mgg40to80], keys=[ "/QCD_PT-30toInf_DoubleEMEnriched_MGG-40to80_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa ], @@ -233,9 +233,9 @@ n_events=9929160, ) cpn.add_dataset( - name="qcd_doubleem_pt40_mgg80_pythia", + name="qcd_doubleem_pt40toinf_mgg80toinf_pythia", id=14810606, - processes=[procs.qcd_doubleem_pt40_mgg80], + processes=[procs.qcd_doubleem_pt40toinf_mgg80toinf], keys=[ "/QCD_PT-40toInf_DoubleEMEnriched_MGG-80toInf_TuneCP5_13p6TeV_pythia8/Run3Summer22EENanoAODv12-130X_mcRun3_2022_realistic_postEE_v6-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v11/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_v11/ewk.py index 7d858a9c..7a0a3ed7 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v11/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v11/ewk.py @@ -15,10 +15,10 @@ # inclusive (MadGraph) # GrASP: https://cms-pdmv.cern.ch/grasp/samples?campaign=Run3Summer22wmLHEGS&dataset=DYJetsToLL_M-50&nanoaod_version=v11 # noqa # noqa cpn.add_dataset( - name="dy_lep_m50_madgraph", + name="dy_m50toinf_madgraph", id=14679260, is_data=False, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13p6TeV-madgraphMLM-pythia8/Run3Summer22NanoAODv11-forPOG_126X_mcRun3_2022_realistic_v2-v1/NANOAODSIM", # noqa ], @@ -29,10 +29,10 @@ # inclusive (aMC@NLO) # GrASP: https://cms-pdmv.cern.ch/grasp/samples?campaign=Run3Summer22wmLHEGS&dataset=DYto2L-2Jets_MLL-50&nanoaod_version=v11 # noqa # noqa cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14637757, is_data=False, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22NanoAODv11-126X_mcRun3_2022_realistic_v2-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v11/qcd.py b/cmsdb/campaigns/run3_2022_preEE_nano_v11/qcd.py index 6fa0f81b..f8a1e15c 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v11/qcd.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v11/qcd.py @@ -221,10 +221,10 @@ ) cpn.add_dataset( - name="qcd_pt3200_pythia", + name="qcd_pt3200toinf_pythia", id=14645062, is_data=False, - processes=[procs.qcd_pt3200], + processes=[procs.qcd_pt3200toinf], keys=[ "/QCD_PT-3200_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv11-126X_mcRun3_2022_realistic_v2_ext1-v1/NANOAODSIM", # noqa ], @@ -374,10 +374,10 @@ ) cpn.add_dataset( - name="qcd_mu_pt1000_pythia", + name="qcd_mu_pt1000toinf_pythia", id=14694180, is_data=False, - processes=[procs.qcd_mu_pt1000], + processes=[procs.qcd_mu_pt1000toinf], keys=[ "/QCD_PT-1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv11-126X_mcRun3_2022_realistic_v2-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/ewk.py index da08278c..06ab911f 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/ewk.py @@ -17,9 +17,9 @@ # inclusive, LO, forPog cpn.add_dataset( - name="dy_lep_m50_for_pog_madgraph", + name="dy_m50toinf_for_pog_madgraph", id=14802794, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], keys=[ "/DYJetsToLL_M-50_TuneCP5_13p6TeV-madgraphMLM-pythia8/Run3Summer22NanoAODv12-forPOG_130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -29,9 +29,9 @@ # inclusive, LO cpn.add_dataset( - name="dy_lep_m10to50_madgraph", + name="dy_m10to50_madgraph", id=14873228, - processes=[procs.dy_lep_m10to50], + processes=[procs.dy_m10to50], info=dict( nominal=DatasetInfo( keys=[ @@ -43,9 +43,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_madgraph", + name="dy_m50toinf_madgraph", id=14810676, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -66,9 +66,9 @@ # jet-binned, LO cpn.add_dataset( - name="dy_lep_m50_1j_madgraph", + name="dy_m50toinf_1j_madgraph", id=14790810, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], info=dict( nominal=DatasetInfo( keys=[ @@ -80,9 +80,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_2j_madgraph", + name="dy_m50toinf_2j_madgraph", id=14794042, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], info=dict( nominal=DatasetInfo( keys=[ @@ -94,9 +94,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_3j_madgraph", + name="dy_m50toinf_3j_madgraph", id=14791238, - processes=[procs.dy_lep_m50_3j], + processes=[procs.dy_m50toinf_3j], info=dict( nominal=DatasetInfo( keys=[ @@ -108,9 +108,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_4j_madgraph", + name="dy_m50toinf_4j_madgraph", id=14794840, - processes=[procs.dy_lep_m50_4j], + processes=[procs.dy_m50toinf_4j], info=dict( nominal=DatasetInfo( keys=[ @@ -125,9 +125,9 @@ # TODO: implement corresponding processes + xsecs # # ptll-binned, LO # cpn.add_dataset( -# name="dy_lep_m50_ptll100to200_madgraph", +# name="dy_m50toinf_ptll100to200_madgraph", # id=14948737, -# processes=[procs.dy_lep_m50_ptll100to200], +# processes=[procs.dy_m50toinf_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -139,9 +139,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll200to400_madgraph", +# name="dy_m50toinf_ptll200to400_madgraph", # id=14949443, -# processes=[procs.dy_lep_m50_ptll200to400], +# processes=[procs.dy_m50toinf_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -153,9 +153,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll400to600_madgraph", +# name="dy_m50toinf_ptll400to600_madgraph", # id=14949288, -# processes=[procs.dy_lep_m50_ptll400to600], +# processes=[procs.dy_m50toinf_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -167,9 +167,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_ptll600toinf_madgraph", +# name="dy_m50toinf_ptll600toinf_madgraph", # id=14948747, -# processes=[procs.dy_lep_m50_ptll600toinf], +# processes=[procs.dy_m50toinf_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -183,9 +183,9 @@ # # ht-binned, LO # cpn.add_dataset( -# name="dy_lep_m4to50_ht40to70_madgraph", +# name="dy_m4to50_ht40to70_madgraph", # id=14950532, -# processes=[procs.dy_lep_m4to50_ht40to70], +# processes=[procs.dy_m4to50_ht40to70], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -197,9 +197,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht70to100_madgraph", +# name="dy_m4to50_ht70to100_madgraph", # id=14949534, -# processes=[procs.dy_lep_m4to50_ht70to100], +# processes=[procs.dy_m4to50_ht70to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -211,9 +211,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht400to800_madgraph", +# name="dy_m4to50_ht400to800_madgraph", # id=14949799, -# processes=[procs.dy_lep_m4to50_ht400to800], +# processes=[procs.dy_m4to50_ht400to800], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -225,9 +225,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht800to1500_madgraph", +# name="dy_m4to50_ht800to1500_madgraph", # id=14948706, -# processes=[procs.dy_lep_m4to50_ht800to1500], +# processes=[procs.dy_m4to50_ht800to1500], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -239,9 +239,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht1500to2500_madgraph", +# name="dy_m4to50_ht1500to2500_madgraph", # id=14951014, -# processes=[procs.dy_lep_m4to50_ht1500to2500], +# processes=[procs.dy_m4to50_ht1500to2500], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -253,9 +253,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m4to50_ht2500toinf_madgraph", +# name="dy_m4to50_ht2500toinf_madgraph", # id=14952243, -# processes=[procs.dy_lep_m4to50_ht2500toinf], +# processes=[procs.dy_m4to50_ht2500toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -267,9 +267,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht40to70_madgraph", +# name="dy_m50to120_ht40to70_madgraph", # id=14817089, -# processes=[procs.dy_lep_m50to120_ht40to70], +# processes=[procs.dy_m50to120_ht40to70], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -281,9 +281,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht70to100_madgraph", +# name="dy_m50to120_ht70to100_madgraph", # id=14847021, -# processes=[procs.dy_lep_m50to120_ht70to100], +# processes=[procs.dy_m50to120_ht70to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -295,9 +295,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50to120_ht100to400_madgraph", +# name="dy_m50to120_ht100to400_madgraph", # id=14813464, -# processes=[procs.dy_lep_m50to120_ht100to400], +# processes=[procs.dy_m50to120_ht100to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -311,9 +311,9 @@ # inclusive, NLO cpn.add_dataset( - name="dy_lep_m4to10_amcatnlo", + name="dy_m4to10_amcatnlo", id=14940403, - processes=[procs.dy_lep_m4to10], + processes=[procs.dy_m4to10], info=dict( nominal=DatasetInfo( keys=[ @@ -332,9 +332,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m10to50_amcatnlo", + name="dy_m10to50_amcatnlo", id=14803206, - processes=[procs.dy_lep_m10to50], + processes=[procs.dy_m10to50], info=dict( nominal=DatasetInfo( keys=[ @@ -353,9 +353,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_amcatnlo", + name="dy_m50toinf_amcatnlo", id=14791972, - processes=[procs.dy_lep_m50], + processes=[procs.dy_m50toinf], info=dict( nominal=DatasetInfo( keys=[ @@ -376,9 +376,9 @@ # jet-binned, NLO cpn.add_dataset( - name="dy_lep_m50_0j_amcatnlo", + name="dy_m50toinf_0j_amcatnlo", id=14791116, - processes=[procs.dy_lep_m50_0j], + processes=[procs.dy_m50toinf_0j], info=dict( nominal=DatasetInfo( keys=[ @@ -390,9 +390,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_1j_amcatnlo", + name="dy_m50toinf_1j_amcatnlo", id=14790681, - processes=[procs.dy_lep_m50_1j], + processes=[procs.dy_m50toinf_1j], info=dict( nominal=DatasetInfo( keys=[ @@ -404,9 +404,9 @@ ), ) cpn.add_dataset( - name="dy_lep_m50_2j_amcatnlo", + name="dy_m50toinf_2j_amcatnlo", id=14801013, - processes=[procs.dy_lep_m50_2j], + processes=[procs.dy_m50toinf_2j], info=dict( nominal=DatasetInfo( keys=[ @@ -421,9 +421,9 @@ # TODO: implement corresponding processes + xsecs # # ptll and jet-binned, NLO # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll40to100_amcatnlo", +# name="dy_m50toinf_1j_ptll40to100_amcatnlo", # id=14825993, -# processes=[procs.dy_lep_m50_1j_ptll40to100], +# processes=[procs.dy_m50toinf_1j_ptll40to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -435,9 +435,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll100to200_amcatnlo", +# name="dy_m50toinf_1j_ptll100to200_amcatnlo", # id=14826169, -# processes=[procs.dy_lep_m50_1j_ptll100to200], +# processes=[procs.dy_m50toinf_1j_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -449,9 +449,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll200to400_amcatnlo", +# name="dy_m50toinf_1j_ptll200to400_amcatnlo", # id=14824736, -# processes=[procs.dy_lep_m50_1j_ptll200to400], +# processes=[procs.dy_m50toinf_1j_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -463,9 +463,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll400to600_amcatnlo", +# name="dy_m50toinf_1j_ptll400to600_amcatnlo", # id=14826052, -# processes=[procs.dy_lep_m50_1j_ptll400to600], +# processes=[procs.dy_m50toinf_1j_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -477,9 +477,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_1j_ptll600toinf_amcatnlo", +# name="dy_m50toinf_1j_ptll600toinf_amcatnlo", # id=14870369, -# processes=[procs.dy_lep_m50_1j_ptll600toinf], +# processes=[procs.dy_m50toinf_1j_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -491,9 +491,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll40to100_amcatnlo", +# name="dy_m50toinf_2j_ptll40to100_amcatnlo", # id=14868304, -# processes=[procs.dy_lep_m50_2j_ptll40to100], +# processes=[procs.dy_m50toinf_2j_ptll40to100], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -505,9 +505,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll100to200_amcatnlo", +# name="dy_m50toinf_2j_ptll100to200_amcatnlo", # id=14870830, -# processes=[procs.dy_lep_m50_2j_ptll100to200], +# processes=[procs.dy_m50toinf_2j_ptll100to200], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -519,9 +519,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll200to400_amcatnlo", +# name="dy_m50toinf_2j_ptll200to400_amcatnlo", # id=14853119, -# processes=[procs.dy_lep_m50_2j_ptll200to400], +# processes=[procs.dy_m50toinf_2j_ptll200to400], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -533,9 +533,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll400to600_amcatnlo", +# name="dy_m50toinf_2j_ptll400to600_amcatnlo", # id=14827368, -# processes=[procs.dy_lep_m50_2j_ptll400to600], +# processes=[procs.dy_m50toinf_2j_ptll400to600], # info=dict( # nominal=DatasetInfo( # keys=[ @@ -547,9 +547,9 @@ # ), # ) # cpn.add_dataset( -# name="dy_lep_m50_2j_ptll600toinf_amcatnlo", +# name="dy_m50toinf_2j_ptll600toinf_amcatnlo", # id=14824689, -# processes=[procs.dy_lep_m50_2j_ptll600toinf], +# processes=[procs.dy_m50toinf_2j_ptll600toinf], # info=dict( # nominal=DatasetInfo( # keys=[ diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py index 79fc09e2..4655cdeb 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py @@ -125,9 +125,9 @@ n_events=39316355, ) cpn.add_dataset( - name="qcd_mu_pt1000_pythia", + name="qcd_mu_pt1000toinf_pythia", id=14796004, - processes=[procs.qcd_mu_pt1000], + processes=[procs.qcd_mu_pt1000toinf], keys=[ "/QCD_PT-1000_MuEnrichedPt5_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -219,9 +219,9 @@ cpn.add_dataset( - name="qcd_doubleem_pt30to40_mgg80_pythia", + name="qcd_doubleem_pt30to40_mgg80toinf_pythia", id=14801752, - processes=[procs.qcd_doubleem_pt30to40_mgg80], + processes=[procs.qcd_doubleem_pt30to40_mgg80toinf], keys=[ "/QCD_PT-30to40_DoubleEMEnriched_MGG-80toInf_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -229,9 +229,9 @@ n_events=1425413, ) cpn.add_dataset( - name="qcd_doubleem_pt30_mgg40to80_pythia", + name="qcd_doubleem_pt30toinf_mgg40to80_pythia", id=14807962, - processes=[procs.qcd_doubleem_pt30_mgg40to80], + processes=[procs.qcd_doubleem_pt30toinf_mgg40to80], keys=[ "/QCD_PT-30toInf_DoubleEMEnriched_MGG-40to80_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -239,7 +239,7 @@ n_events=2875029, ) cpn.add_dataset( - name="qcd_doubleem_pt40_mgg80_pythia", + name="qcd_doubleem_pt40toinf_mgg80toinf_pythia", id=14803826, processes=[procs.qcd_doubleem_pt40_mgg80], keys=[ From 1896c48ac193e7c78186b56978fca599d74630f4 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 16:12:05 +0200 Subject: [PATCH 14/42] add ggf processes with correct IDs --- cmsdb/processes/hh2bbtautau.py | 274 ++++++++++++++++++--------------- 1 file changed, 148 insertions(+), 126 deletions(-) diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index c029be37..24646c11 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -2,13 +2,18 @@ """ HH -> bbtautau process definitions. + +IDs are assigned in the range 21100-21199 for hh_ggf and 22100-22199 for hh_vbf. +For radion ggf, the IDs are the range 23100-23199. +For graviton ggf, the IDs are the range 24100-24199. +For radion vbf, the IDs are the range 25100-25199. +For graviton vbf, the IDs are the range 26100-26199. """ __all__ = [ - "hh_ggf_hbb_htt", - "hh_ggf_hbb_htt_kl1_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c20", "hh_ggf_hbb_htt_kl0_kt1_c21", + "hh_ggf_hbb_htt_kl1_kt1", "hh_ggf_hbb_htt_kl0_kt1", "hh_ggf_hbb_htt_kl0_kt1_c21", "hh_ggf_hbb_htt_kl1_kt1_c20p10", "hh_ggf_hbb_htt_kl1_kt1_c20p35", "hh_ggf_hbb_htt_kl1_kt1_c23", - "hh_ggf_hbb_htt_kl1_kt1_c2m2", "hh_ggf_hbb_htt_kl2p45_kt1_c20", "hh_ggf_hbb_htt_kl5_kt1_c20", + "hh_ggf_hbb_htt_kl1_kt1_c2m2", "hh_ggf_hbb_htt_kl2p45_kt1", "hh_ggf_hbb_htt_kl5_kt1", "hh_ggf_hbb_htt_node1", "hh_ggf_hbb_htt_node2", "hh_ggf_hbb_htt_node3", "hh_ggf_hbb_htt_node4", "hh_ggf_hbb_htt_node5", "hh_ggf_hbb_htt_node6", "hh_ggf_hbb_htt_node7", "hh_ggf_hbb_htt_node8", "hh_ggf_hbb_htt_node9", @@ -41,13 +46,12 @@ "graviton_hh_ggf_hbb_htt_m1500", "graviton_hh_ggf_hbb_htt_m1750", "graviton_hh_ggf_hbb_htt_m2000", "graviton_hh_ggf_hbb_htt_m2500", "graviton_hh_ggf_hbb_htt_m3000", - "hh_vbf_hbb_htt", - "hh_vbf_hbb_htt_kv1_k2v1_kl1",# "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", - #"hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", - #"hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", - #"hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", "hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", - #"hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", "hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", - #"hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", + "hh_vbf_hbb_htt_kv1_k2v1_kl1", "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", + "hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", + "hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", + "hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", "hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", + "hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", "hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", + "hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", "radion_hh_vbf_hbb_htt", "radion_hh_vbf_hbb_htt_m250", "radion_hh_vbf_hbb_htt_m260", "radion_hh_vbf_hbb_htt_m270", "radion_hh_vbf_hbb_htt_m280", "radion_hh_vbf_hbb_htt_m300", "radion_hh_vbf_hbb_htt_m320", @@ -78,117 +82,42 @@ import cmsdb.constants as const from cmsdb.processes.hh import ( - hh_ggf, radion_hh_ggf, graviton_hh_ggf, radion_hh_vbf, graviton_hh_vbf, - hh_ggf_kl1_kt1_c20, hh_ggf_kl0_kt1_c20, hh_ggf_kl0_kt1_c21, + hh_ggf, radion_hh_ggf, graviton_hh_ggf, hh_vbf, radion_hh_vbf, graviton_hh_vbf, + hh_ggf_kl1_kt1, hh_ggf_kl0_kt1, hh_ggf_kl0_kt1_c21, + hh_ggf_kl1_kt1_c20p10, hh_ggf_kl1_kt1_c20p35, hh_ggf_kl1_kt1_c23, + hh_ggf_kl1_kt1_c2m2, hh_ggf_kl2p45_kt1, hh_ggf_kl5_kt1, + hh_vbf_kv1_k2v1_kl1, hh_vbf_kv1_k2v0_kl1, hh_vbf_kv1_k2v1_kl2, + hh_vbf_kv1_k2v2_kl1, hh_vbf_kv1p74_k2v1p37_kl14p4, + hh_vbf_kvm0p012_k2v0p030_kl10p2, hh_vbf_kvm0p758_k2v1p44_klm19p3, + hh_vbf_kvm0p962_k2v0p959_klm1p43, hh_vbf_kvm1p21_k2v1p94_klm0p94, + hh_vbf_kvm1p60_k2v2p72_klm1p36, hh_vbf_kvm1p83_k2v3p57_klm3p39, + hh_vbf_kvm2p12_k2v3p87_klm5p96, ) from cmsdb.xsec_bsm_nodes import calculate_xsec_node # # ggF -> H -> HH # -# hh_ggf_hbb_htt = hh_ggf.add_process( -# name="hh_ggf_hbb_htt", -# id=21100, -# label=r"$HH_{ggf} \rightarrow bb\tau\tau$", -# xsecs={ -# 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, -# 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, -# }, -# ) - -hh_ggf_hbb_htt_kl1_kt1_c20 = hh_ggf_kl1_kt1_c20.add_process( - name="hh_ggf_hbb_htt_kl1_kt1_c20", - id=21200, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=1$, $\kappa_{t}=1$)", - xsecs={ - 13: hh_ggf_kl1_kt1_c20.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf_kl1_kt1_c20.get_xsec(13.6)* const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl0_kt1_c20 = hh_ggf_kl0_kt1_c20.add_process( - name="hh_ggf_hbb_htt_kl0_kt1_c20", - id=21201, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=0$, $\kappa_{t}=1$)", - xsecs={ - 13: hh_ggf_kl0_kt1_c20.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf_kl0_kt1_c20.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl0_kt1_c21 = hh_ggf_kl0_kt1_c21.add_process( - name="hh_ggf_hbb_htt_kl0_kt1_c21", - id=21202, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 0$, $\kappa_t = 1, C_2 = 1$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl1_kt1_c20p10 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl1_kt1_c20p10", - id=21203, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.1$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl1_kt1_c20p35 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl1_kt1_c20p35", - id=21204, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.35$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl1_kt1_c23 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl1_kt1_c23", - id=21205, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 3$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl1_kt1_c2m2 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl1_kt1_c2m2", - id=21206, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = -2$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, -) - -hh_ggf_hbb_htt_kl2p45_kt1_c20 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl2p45_kt1_c20", - id=21207, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 2.45$, $\kappa_t = 1, C_2 = 0$)", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, - }, +# placeholder for the general process, not used as parent process and should not have a cross section +hh_ggf_hbb_htt = hh_ggf.add_process( + name="hh_ggf_hbb_htt", + id=21100, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$", ) -hh_ggf_hbb_htt_kl5_kt1_c20 = hh_ggf_hbb_htt.add_process( - name="hh_ggf_hbb_htt_kl5_kt1_c20", - id=21208, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 5$, $\kappa_t = 1, C_2 = 0$)", +hh_ggf_hbb_htt_kl1_kt1 = hh_ggf_kl1_kt1.add_process( + name="hh_ggf_hbb_htt_kl1_kt1", + id=21101, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=1$, $\kappa_{t}=1$)", xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + 13: hh_ggf_kl1_kt1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1.get_xsec(13.6)* const.br_hh.bbtt, }, ) hh_ggf_hbb_htt_node1 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node1", - id=21101, + id=21102, label=f"{hh_ggf_hbb_htt.label} (node 1)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=1), @@ -197,7 +126,7 @@ hh_ggf_hbb_htt_node2 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node2", - id=21102, + id=21103, label=f"{hh_ggf_hbb_htt.label} (node 2)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=2), @@ -206,7 +135,7 @@ hh_ggf_hbb_htt_node3 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node3", - id=21103, + id=21104, label=f"{hh_ggf_hbb_htt.label} (node 3)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=3), @@ -215,7 +144,7 @@ hh_ggf_hbb_htt_node4 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node4", - id=21104, + id=21105, label=f"{hh_ggf_hbb_htt.label} (node 4)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=4), @@ -224,7 +153,7 @@ hh_ggf_hbb_htt_node5 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node5", - id=21105, + id=21106, label=f"{hh_ggf_hbb_htt.label} (node 5)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=5), @@ -233,7 +162,7 @@ hh_ggf_hbb_htt_node6 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node6", - id=21106, + id=21107, label=f"{hh_ggf_hbb_htt.label} (node 6)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=6), @@ -242,7 +171,7 @@ hh_ggf_hbb_htt_node7 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node7", - id=21107, + id=21108, label=f"{hh_ggf_hbb_htt.label} (node 7)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=7), @@ -251,7 +180,7 @@ hh_ggf_hbb_htt_node8 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node8", - id=21108, + id=21109, label=f"{hh_ggf_hbb_htt.label} (node 8)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=8), @@ -260,7 +189,7 @@ hh_ggf_hbb_htt_node9 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node9", - id=21109, + id=21110, label=f"{hh_ggf_hbb_htt.label} (node 9)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=9), @@ -269,7 +198,7 @@ hh_ggf_hbb_htt_node10 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node10", - id=21110, + id=21111, label=f"{hh_ggf_hbb_htt.label} (node 10)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=10), @@ -278,7 +207,7 @@ hh_ggf_hbb_htt_node11 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node11", - id=21111, + id=21112, label=f"{hh_ggf_hbb_htt.label} (node 11)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=11), @@ -287,13 +216,93 @@ hh_ggf_hbb_htt_node12 = hh_ggf.add_process( name="hh_ggf_hbb_htt_node12", - id=21112, + id=21113, label=f"{hh_ggf_hbb_htt.label} (node 12)", xsecs={ 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=12), }, ) +hh_ggf_hbb_htt_kl0_kt1 = hh_ggf_kl0_kt1.add_process( + name="hh_ggf_hbb_htt_kl0_kt1", + id=21114, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=0$, $\kappa_{t}=1$)", + xsecs={ + 13: hh_ggf_kl0_kt1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl0_kt1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl0_kt1_c21 = hh_ggf_kl0_kt1_c21.add_process( + name="hh_ggf_hbb_htt_kl0_kt1_c21", + id=21115, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 0$, $\kappa_t = 1, C_2 = 1$)", + xsecs={ + 13: hh_ggf_kl0_kt1_c21.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl0_kt1_c21.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c20p10 = hh_ggf_kl1_kt1_c20p10.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c20p10", + id=21116, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.1$)", + xsecs={ + 13: hh_ggf_kl1_kt1_c20p10.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1_c20p10.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c20p35 = hh_ggf_kl1_kt1_c20p35.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c20p35", + id=21117, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 0.35$)", + xsecs={ + 13: hh_ggf_kl1_kt1_c20p35.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1_c20p35.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c23 = hh_ggf_kl1_kt1_c23.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c23", + id=21118, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = 3$)", + xsecs={ + 13: hh_ggf_kl1_kt1_c23.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1_c23.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl1_kt1_c2m2 = hh_ggf_kl1_kt1_c2m2.add_process( + name="hh_ggf_hbb_htt_kl1_kt1_c2m2", + id=21119, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 1$, $\kappa_t = 1, C_2 = -2$)", + xsecs={ + 13: hh_ggf_kl1_kt1_c2m2.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1_c2m2.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl2p45_kt1 = hh_ggf_kl2p45_kt1.add_process( + name="hh_ggf_hbb_htt_kl2p45_kt1", + id=21120, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 2.45$, $\kappa_t = 1$)", + xsecs={ + 13: hh_ggf_kl2p45_kt1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl2p45_kt1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_ggf_hbb_htt_kl5_kt1 = hh_ggf_kl5_kt1.add_process( + name="hh_ggf_hbb_htt_kl5_kt1", + id=21121, + label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda} = 5$, $\kappa_t = 1$)", + xsecs={ + 13: hh_ggf_kl5_kt1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_ggf_kl5_kt1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + # # ggF -> radion -> HH @@ -694,19 +703,32 @@ # vbf -> H -> HH # -hh_vbf_hbb_htt = hh_ggf.add_process( +""" + "hh_vbf_hbb_htt_kv1_k2v1_kl1", "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", + "hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", + "hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", + "hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", "hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", + "hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", "hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", + "hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", + + + IDs are assigned in the range 21100-21199 for hh_ggf and 22100-22199 for hh_vbf. +For radion ggf, the IDs are the range 23100-23199. +For graviton ggf, the IDs are the range 24100-24199. +For radion vbf, the IDs are the range 25100-25199. +For graviton vbf, the IDs are the range 26100-26199. +""" + +# placeholder for the general process, not used as parent process and should not have a cross section +hh_vbf_hbb_htt = hh_vbf.add_process( name="hh_vbf_hbb_htt", - id=25000, - label=r"$HH_{ggf} \rightarrow bb\tau\tau$", - xsecs={ - 13: hh_ggf.get_xsec(13) * const.br_hh.bbtt, - 13.6: Number(0.1), - }, # TODO + id=22100, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$", ) hh_vbf_hbb_htt_kv1_k2v1_kl1 = hh_vbf_hbb_htt.add_process( name="hh_vbf_hbb_htt_kv1_k2v1_kl1", - id=25010, + id=22101, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ (SM)", xsecs={ 13: hh_vbf_hbb_htt.get_xsec(13), From d193263a9d4e74a65015346ca58bd0298f0ce5ee Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 17:45:31 +0200 Subject: [PATCH 15/42] create new run3 processes hh and hh2bbtautau --- cmsdb/processes/hh.py | 142 ++++++++++++++++++++++++++++++++- cmsdb/processes/hh2bbtautau.py | 133 +++++++++++++++++++++++++----- 2 files changed, 254 insertions(+), 21 deletions(-) diff --git a/cmsdb/processes/hh.py b/cmsdb/processes/hh.py index 59a3e84f..7ab4ced8 100644 --- a/cmsdb/processes/hh.py +++ b/cmsdb/processes/hh.py @@ -32,9 +32,16 @@ # Di-Higgs "hh", "hh_ggf", "hh_ggf_kl0_kt1", "hh_ggf_kl1_kt1", "hh_ggf_kl2p45_kt1", "hh_ggf_kl5_kt1", + "hh_ggf_kl0_kt1_c21", "hh_ggf_kl1_kt1_c20p10", "hh_ggf_kl1_kt1_c20p35", + "hh_ggf_kl1_kt1_c23", "hh_ggf_kl1_kt1_c2m2", "hh_vbf", "hh_vbf_kv1_k2v1_kl1", "hh_vbf_kv1_k2v1_kl0", "hh_vbf_kv1_k2v1_kl2", "hh_vbf_kv1_k2v0_kl1", "hh_vbf_kv1_k2v2_kl1", "hh_vbf_kv0p5_k2v1_kl1", "hh_vbf_kv1p5_k2v1_kl1", - "radion_hh_ggf", "graviton_hh_ggf", "radion_hh_vbf", "graviton_hh_vbf", + "hh_vbf_kv1p74_k2v1p37_kl14p4", "hh_vbf_kvm0p012_k2v0p030_kl10p2", + "hh_vbf_kvm0p758_k2v1p44_klm19p3", "hh_vbf_kvm0p962_k2v0p959_klm1p43", + "hh_vbf_kvm1p21_k2v1p94_klm0p94", "hh_vbf_kvm1p60_k2v2p72_klm1p36", + "hh_vbf_kvm1p83_k2v3p57_klm3p39", "hh_vbf_kvm2p12_k2v3p87_klm5p96", + "radion_hh_ggf", "graviton_hh_ggf", + "radion_hh_vbf", "graviton_hh_vbf", ] #################################################################################################### @@ -116,6 +123,7 @@ "pdf": 0.03j, "mtop": (0.04j, 0.22j), }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_ggf}, ) @@ -129,6 +137,57 @@ "pdf": 0.03j, "mtop": (0.13j, 0.04j), }), + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_ggf}, +) + +hh_ggf_kl0_kt1_c21 = hh_ggf.add_process( + name="hh_ggf_kl0_kt1_c21", + id=21005, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_ggf}, +) + +hh_ggf_kl1_kt1_c20p10 = hh_ggf.add_process( + name="hh_ggf_kl1_kt1_c20p10", + id=21006, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_ggf}, +) + +hh_ggf_kl1_kt1_c20p35 = hh_ggf.add_process( + name="hh_ggf_kl1_kt1_c20p35", + id=21007, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_ggf}, +) + +hh_ggf_kl1_kt1_c23 = hh_ggf.add_process( + name="hh_ggf_kl1_kt1_c23", + id=21008, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_ggf}, +) + +hh_ggf_kl1_kt1_c2m2 = hh_ggf.add_process( + name="hh_ggf_kl1_kt1_c2m2", + id=21009, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_ggf}, ) @@ -234,6 +293,87 @@ aux={"production_mode_parent": hh_vbf}, ) +hh_vbf_kv1p74_k2v1p37_kl14p4 = hh_vbf.add_process( + name="hh_vbf_kv1p74_k2v1p37_kl14p4", + id=22008, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm0p012_k2v0p030_kl10p2 = hh_vbf.add_process( + name="hh_vbf_kvm0p012_k2v0p030_kl10p2", + id=22009, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm0p758_k2v1p44_klm19p3 = hh_vbf.add_process( + name="hh_vbf_kvm0p758_k2v1p44_klm19p3", + id=22010, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm0p962_k2v0p959_klm1p43 = hh_vbf.add_process( + name="hh_vbf_kvm0p962_k2v0p959_klm1p43", + id=22011, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm1p21_k2v1p94_klm0p94 = hh_vbf.add_process( + name="hh_vbf_kvm1p21_k2v1p94_klm0p94", + id=22012, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm1p60_k2v2p72_klm1p36 = hh_vbf.add_process( + name="hh_vbf_kvm1p60_k2v2p72_klm1p36", + id=22013, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm1p83_k2v3p57_klm3p39 = hh_vbf.add_process( + name="hh_vbf_kvm1p83_k2v3p57_klm3p39", + id=22014, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + +hh_vbf_kvm2p12_k2v3p87_klm5p96 = hh_vbf.add_process( + name="hh_vbf_kvm2p12_k2v3p87_klm5p96", + id=22015, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, + aux={"production_mode_parent": hh_vbf}, +) + + hh.xsecs = add_xsecs(hh_ggf, hh_vbf) #################################################################################################### diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 24646c11..98f899e3 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -111,7 +111,7 @@ label=r"$HH_{ggf} \rightarrow bb\tau\tau$ ($\kappa_{\lambda}=1$, $\kappa_{t}=1$)", xsecs={ 13: hh_ggf_kl1_kt1.get_xsec(13) * const.br_hh.bbtt, - 13.6: hh_ggf_kl1_kt1.get_xsec(13.6)* const.br_hh.bbtt, + 13.6: hh_ggf_kl1_kt1.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -703,22 +703,6 @@ # vbf -> H -> HH # -""" - "hh_vbf_hbb_htt_kv1_k2v1_kl1", "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", - "hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", - "hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", - "hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", "hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", - "hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", "hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", - "hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", - - - IDs are assigned in the range 21100-21199 for hh_ggf and 22100-22199 for hh_vbf. -For radion ggf, the IDs are the range 23100-23199. -For graviton ggf, the IDs are the range 24100-24199. -For radion vbf, the IDs are the range 25100-25199. -For graviton vbf, the IDs are the range 26100-26199. -""" - # placeholder for the general process, not used as parent process and should not have a cross section hh_vbf_hbb_htt = hh_vbf.add_process( name="hh_vbf_hbb_htt", @@ -726,16 +710,125 @@ label=r"$HH_{vbf} \rightarrow bb\tau\tau$", ) -hh_vbf_hbb_htt_kv1_k2v1_kl1 = hh_vbf_hbb_htt.add_process( +hh_vbf_hbb_htt_kv1_k2v1_kl1 = hh_vbf_kv1_k2v1_kl1.add_process( name="hh_vbf_hbb_htt_kv1_k2v1_kl1", id=22101, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ (SM)", xsecs={ - 13: hh_vbf_hbb_htt.get_xsec(13), - 13.6: hh_vbf_hbb_htt.get_xsec(13.6), + 13: hh_vbf_kv1_k2v1_kl1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kv1_k2v1_kl1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kv1_k2v0_kl1 = hh_vbf_kv1_k2v0_kl1.add_process( + name="hh_vbf_hbb_htt_kv1_k2v0_kl1", + id=22102, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=1$, $\kappa_{2V}=0$, $\kappa_{\lambda}=1$)", + xsecs={ + 13: hh_vbf_kv1_k2v0_kl1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kv1_k2v0_kl1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kv1_k2v1_kl2 = hh_vbf_kv1_k2v1_kl2.add_process( + name="hh_vbf_hbb_htt_kv1_k2v1_kl2", + id=22103, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=1$, $\kappa_{2V}=1$, $\kappa_{\lambda}=2$)", + xsecs={ + 13: hh_vbf_kv1_k2v1_kl2.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kv1_k2v1_kl2.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kv1_k2v2_kl1 = hh_vbf_kv1_k2v2_kl1.add_process( + name="hh_vbf_hbb_htt_kv1_k2v2_kl1", + id=22104, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=1$, $\kappa_{2V}=2$, $\kappa_{\lambda}=1$)", + xsecs={ + 13: hh_vbf_kv1_k2v2_kl1.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kv1_k2v2_kl1.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4 = hh_vbf_kv1p74_k2v1p37_kl14p4.add_process( + name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", + id=22105, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=1.74$, $\kappa_{2V}=1.37$, $\kappa_{\lambda}=14.4$)", + xsecs={ + 13: hh_vbf_kv1p74_k2v1p37_kl14p4.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kv1p74_k2v1p37_kl14p4.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2 = hh_vbf_kvm0p012_k2v0p030_kl10p2.add_process( + name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", + id=22106, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.012$, $\kappa_{2V}=0.030$, $\kappa_{\lambda}=10.2$)", + xsecs={ + 13: hh_vbf_kvm0p012_k2v0p030_kl10p2.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm0p012_k2v0p030_kl10p2.get_xsec(13.6) * const.br_hh.bbtt, }, ) +hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3 = hh_vbf_kvm0p758_k2v1p44_klm19p3.add_process( + name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", + id=22107, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.758$, $\kappa_{2V}=1.44$, $\kappa_{\lambda}=-19.3$)", + xsecs={ + 13: hh_vbf_kvm0p758_k2v1p44_klm19p3.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm0p758_k2v1p44_klm19p3.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43 = hh_vbf_kvm0p962_k2v0p959_klm1p43.add_process( + name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43", + id=22108, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.962$, $\kappa_{2V}=0.959$, $\kappa_{\lambda}=-1.43$)", + xsecs={ + 13: hh_vbf_kvm0p962_k2v0p959_klm1p43.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm0p962_k2v0p959_klm1p43.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94 = hh_vbf_kvm1p21_k2v1p94_klm0p94.add_process( + name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94", + id=22109, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.21$, $\kappa_{2V}=1.94$, $\kappa_{\lambda}=-0.94$)", + xsecs={ + 13: hh_vbf_kvm1p21_k2v1p94_klm0p94.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm1p21_k2v1p94_klm0p94.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36 = hh_vbf_kvm1p60_k2v2p72_klm1p36.add_process( + name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36", + id=22110, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.60$, $\kappa_{2V}=2.72$, $\kappa_{\lambda}=-1.36$)", + xsecs={ + 13: hh_vbf_kvm1p60_k2v2p72_klm1p36.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm1p60_k2v2p72_klm1p36.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39 = hh_vbf_kvm1p83_k2v3p57_klm3p39.add_process( + name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39", + id=22111, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.83$, $\kappa_{2V}=3.57$, $\kappa_{\lambda}=-3.39$)", + xsecs={ + 13: hh_vbf_kvm1p83_k2v3p57_klm3p39.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm1p83_k2v3p57_klm3p39.get_xsec(13.6) * const.br_hh.bbtt, + }, +) + +hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96 = hh_vbf_kvm2p12_k2v3p87_klm5p96.add_process( + name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96", + id=22112, + label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-2.12$, $\kappa_{2V}=3.87$, $\kappa_{\lambda}=-5.96$)", + xsecs={ + 13: hh_vbf_kvm2p12_k2v3p87_klm5p96.get_xsec(13) * const.br_hh.bbtt, + 13.6: hh_vbf_kvm2p12_k2v3p87_klm5p96.get_xsec(13.6) * const.br_hh.bbtt, + }, +) # # vbf -> radion -> HH From 398b633406d1eef1289c9e6ecbae8fca777ee1d4 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 17:49:09 +0200 Subject: [PATCH 16/42] correct cross section nodes processes --- cmsdb/processes/hh2bbtautau.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 98f899e3..ad97e08e 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -120,7 +120,7 @@ id=21102, label=f"{hh_ggf_hbb_htt.label} (node 1)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=1), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=1), }, ) @@ -129,7 +129,7 @@ id=21103, label=f"{hh_ggf_hbb_htt.label} (node 2)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=2), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=2), }, ) @@ -138,7 +138,7 @@ id=21104, label=f"{hh_ggf_hbb_htt.label} (node 3)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=3), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=3), }, ) @@ -147,7 +147,7 @@ id=21105, label=f"{hh_ggf_hbb_htt.label} (node 4)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=4), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=4), }, ) @@ -156,7 +156,7 @@ id=21106, label=f"{hh_ggf_hbb_htt.label} (node 5)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=5), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=5), }, ) @@ -165,7 +165,7 @@ id=21107, label=f"{hh_ggf_hbb_htt.label} (node 6)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=6), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=6), }, ) @@ -174,7 +174,7 @@ id=21108, label=f"{hh_ggf_hbb_htt.label} (node 7)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=7), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=7), }, ) @@ -183,7 +183,7 @@ id=21109, label=f"{hh_ggf_hbb_htt.label} (node 8)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=8), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=8), }, ) @@ -192,7 +192,7 @@ id=21110, label=f"{hh_ggf_hbb_htt.label} (node 9)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=9), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=9), }, ) @@ -201,7 +201,7 @@ id=21111, label=f"{hh_ggf_hbb_htt.label} (node 10)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=10), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=10), }, ) @@ -210,7 +210,7 @@ id=21112, label=f"{hh_ggf_hbb_htt.label} (node 11)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=11), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=11), }, ) @@ -219,7 +219,7 @@ id=21113, label=f"{hh_ggf_hbb_htt.label} (node 12)", xsecs={ - 13: calculate_xsec_node(13, hh_ggf_hbb_htt.get_xsec(13), node_number=12), + 13: calculate_xsec_node(13, hh_ggf_hbb_htt_kl1_kt1.get_xsec(13), node_number=12), }, ) From 1b711e05495e5b955d862acc1a2b086d7b94f0c7 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 18:04:38 +0200 Subject: [PATCH 17/42] adapt hh2bbtautau sample names --- .../hh2bbtautau.py | 4 +- .../run2_2016_nano_uhh_v12/hh2bbtautau.py | 4 +- .../run2_2017_nano_uhh_v11/hh2bbtautau.py | 4 +- .../run2_2017_nano_v9/hh2bbtautau.py | 4 +- .../run2_2018_nano_uhh_v12/hh2bbtautau.py | 4 +- .../campaigns/run2_2018_nano_uhh_v12/higgs.py | 234 +- .../hh2bbtautau.py | 1980 ++++++++--------- 7 files changed, 1117 insertions(+), 1117 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py index f168f1e9..424ce542 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/hh2bbtautau.py @@ -15,9 +15,9 @@ # ggF -> H -> HH cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_madgraph", id=14335916, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL16MiniAODAPVv2_NanoAODv12UHH-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py index 9d35ab27..9afc4d05 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/hh2bbtautau.py @@ -15,9 +15,9 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_madgraph", id=14374930, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py index 23fcb347..4f7045f1 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/hh2bbtautau.py @@ -15,9 +15,9 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_madgraph", id=14333571, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv11-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py b/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py index 5110dfe0..fcc8a0db 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/hh2bbtautau.py @@ -14,9 +14,9 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_madgraph", id=14336680, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py index 192500e5..392f061b 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/hh2bbtautau.py @@ -14,9 +14,9 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_madgraph", + name="hh_ggf_hbb_htt_kl1_kt1_madgraph", id=14356126, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGluToHHTo2B2Tau_TuneCP5_PSWeights_node_SM_13TeV-madgraph-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py index 1b3341bd..9296adee 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py @@ -5,134 +5,134 @@ version 12, created with custom content at UHH. """ -# import cmsdb.processes as procs -# from cmsdb.campaigns.run2_2018_nano_uhh_v12 import campaign_run2_2018_nano_uhh_v12 as cpn +import cmsdb.processes as procs +from cmsdb.campaigns.run2_2018_nano_uhh_v12 import campaign_run2_2018_nano_uhh_v12 as cpn # Single Higgs -# # ggf -# cpn.add_dataset( -# name="h_ggf_tautau_powheg", -# id=14198264, -# processes=[procs.h_ggf_tautau], -# keys=[ -# "/GluGluHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v3/NANOAODSIM", # noqa -# ], -# n_files=8, -# n_events=12966000, -# ) +# ggf +cpn.add_dataset( + name="h_ggf_htt_powheg", + id=14198264, + processes=[procs.h_ggf_htt], + keys=[ + "/GluGluHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v3/NANOAODSIM", # noqa + ], + n_files=8, + n_events=12966000, +) -# # vbf -# cpn.add_dataset( -# name="h_vbf_tautau_powheg", -# id=14198305, -# processes=[procs.h_vbf_tautau], -# keys=[ -# "/VBFHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=3, -# n_events=2987000, -# ) +# vbf +cpn.add_dataset( + name="h_vbf_htt_powheg", + id=14198305, + processes=[procs.h_vbf_htt], + keys=[ + "/VBFHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=3, + n_events=2987000, +) -# # H radiation -# cpn.add_dataset( -# name="zh_llbb_powheg", -# id=14336743, -# processes=[procs.zh_llbb], -# keys=[ -# "/ZH_HToBB_ZToLL_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa -# ], -# n_files=5, -# n_events=4885835, -# ) +# H radiation +cpn.add_dataset( + name="zh_zll_hbb_powheg", + id=14336743, + processes=[procs.zh_zll_hbb], + keys=[ + "/ZH_HToBB_ZToLL_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa + ], + n_files=5, + n_events=4885835, +) -# # z -> ll , h -> bb -# cpn.add_dataset( -# name="gg_zh_zll_hbb_powheg", -# id=14340023, -# processes=[procs.ggzh_llbb], -# keys=[ -# "/ggZH_HToBB_ZToLL_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa -# ], -# n_files=5, -# n_events=4891000, -# ) +# z -> ll , h -> bb +cpn.add_dataset( + name="gg_zh_zll_hbb_powheg", + id=14340023, + processes=[procs.ggzh_llbb], + keys=[ + "/ggZH_HToBB_ZToLL_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa + ], + n_files=5, + n_events=4891000, +) -# cpn.add_dataset( -# name="zh_qqbb_powheg", -# id=14355708, -# processes=[procs.zh_qqbb], -# keys=[ -# "/ZH_HToBB_ZToQQ_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=8, -# n_events=9957048, -# ) +cpn.add_dataset( + name="zh_zqq_hbb_powheg", + id=14355708, + processes=[procs.zh_zqq_hbb], + keys=[ + "/ZH_HToBB_ZToQQ_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=8, + n_events=9957048, +) -# cpn.add_dataset( -# name="zh_tautau_powheg", -# id=14314109, -# processes=[procs.zh_tautau], -# keys=[ -# "/ZHToTauTau_M125_CP5_13TeV-powheg-pythia8_ext1/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=4, -# n_events=4900155, -# ) +cpn.add_dataset( + name="zh_htt_powheg", + id=14314109, + processes=[procs.zh_htt], + keys=[ + "/ZHToTauTau_M125_CP5_13TeV-powheg-pythia8_ext1/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=4900155, +) -# cpn.add_dataset( -# name="wph_tautau_powheg", -# id=14198104, -# processes=[procs.wph_tautau], -# keys=[ -# "/WplusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=4, -# n_events=3972496, -# ) +cpn.add_dataset( + name="wph_htt_powheg", + id=14198104, + processes=[procs.wph_htt], + keys=[ + "/WplusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=3972496, +) -# cpn.add_dataset( -# name="wmh_tautau_powheg", -# id=14198147, -# processes=[procs.wmh_tautau], -# keys=[ -# "/WminusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=4, -# n_events=3831952, -# ) +cpn.add_dataset( + name="wmh_htt_powheg", + id=14198147, + processes=[procs.wmh_htt], + keys=[ + "/WminusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=4, + n_events=3831952, +) -# # ttH -# cpn.add_dataset( -# name="tth_tautau_powheg", -# id=14198975, -# processes=[procs.tth_tautau], -# keys=[ -# "/ttHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v3/NANOAODSIM", # noqa -# ], -# n_files=28, -# n_events=21621000, -# ) +# ttH +cpn.add_dataset( + name="tth_htt_powheg", + id=14198975, + processes=[procs.tth_htt], + keys=[ + "/ttHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v3/NANOAODSIM", # noqa + ], + n_files=28, + n_events=21621000, +) -# cpn.add_dataset( -# name="tth_bb_powheg", -# id=14196265, -# processes=[procs.tth_bb], -# keys=[ -# "/ttHJetTobb_M125_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa -# ], -# n_files=14, -# n_events=10020658, -# ) +cpn.add_dataset( + name="tth_hbb_powheg", + id=14196265, + processes=[procs.tth_hbb], + keys=[ + "/ttHJetTobb_M125_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa + ], + n_files=14, + n_events=10020658, +) -# cpn.add_dataset( -# name="tth_nonbb_powheg", -# id=14265773, -# processes=[procs.tth_nonbb], -# keys=[ -# "/ttHToNonbb_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa -# ], -# n_files=10, -# n_events=7328993, -# ) +cpn.add_dataset( + name="tth_hnonbb_powheg", + id=14265773, + processes=[procs.tth_hnonbb], + keys=[ + "/ttHToNonbb_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa + ], + n_files=10, + n_events=7328993, +) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py index 7f1ef5f6..b0ec159e 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/hh2bbtautau.py @@ -15,9 +15,9 @@ # SM cpn.add_dataset( - name="hh_ggf_hbb_htt_kl1_kt1_c20_powheg", + name="hh_ggf_hbb_htt_kl1_kt1_powheg", id=14875846, - processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl1_kt1], keys=[ "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p00_LHEweights_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -32,9 +32,9 @@ # different couplings, keeping c2 = 0 cpn.add_dataset( - name="hh_ggf_hbb_htt_kl0_kt1_c20_powheg", + name="hh_ggf_hbb_htt_kl0_kt1_powheg", id=14796367, - processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl0_kt1], keys=[ "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -48,9 +48,9 @@ ) cpn.add_dataset( - name="hh_ggf_hbb_htt_kl2p45_kt1_c20_powheg", + name="hh_ggf_hbb_htt_kl2p45_kt1_powheg", id=14805257, - processes=[procs.hh_ggf_hbb_htt_kl2p45_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl2p45_kt1], keys=[ "/GluGlutoHHto2B2Tau_kl-2p45_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -64,9 +64,9 @@ ) cpn.add_dataset( - name="hh_ggf_hbb_htt_kl5_kt1_c20_powheg", + name="hh_ggf_hbb_htt_kl5_kt1_powheg", id=14803776, - processes=[procs.hh_ggf_hbb_htt_kl5_kt1_c20], + processes=[procs.hh_ggf_hbb_htt_kl5_kt1], keys=[ "/GluGlutoHHto2B2Tau_kl-5p00_kt-1p00_c2-0p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], @@ -80,991 +80,991 @@ ) # different bsm couplings, with c2 != 0 -# cpn.add_dataset( -# name="hh_ggf_hbb_htt_kl0_kt1_c21_powheg", -# id=14802513, -# processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c21], -# keys=[ -# "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-1p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=98_902, -# aux={ -# "merging_factors": { -# "nominal": 4, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_ggf_hbb_htt_kl1_kt1_c20p10_powheg", -# id=14808587, -# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p10], -# keys=[ -# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p10_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=98_551, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_ggf_hbb_htt_kl1_kt1_c20p35_powheg", -# id=14802756, -# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p35], -# keys=[ -# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p35_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=98_705, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_ggf_hbb_htt_kl1_kt1_c23_powheg", -# id=14800332, -# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c23], -# keys=[ -# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-3p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=100_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_ggf_hbb_htt_kl1_kt1_c2m2_powheg", -# id=14797893, -# processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c2m2], -# keys=[ -# "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-m2p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=100_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl0_kt1_c21_powheg", + id=14802513, + processes=[procs.hh_ggf_hbb_htt_kl0_kt1_c21], + keys=[ + "/GluGlutoHHto2B2Tau_kl-0p00_kt-1p00_c2-1p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_902, + aux={ + "merging_factors": { + "nominal": 4, + }, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c20p10_powheg", + id=14808587, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p10], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p10_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_551, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c20p35_powheg", + id=14802756, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c20p35], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-0p35_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=98_705, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c23_powheg", + id=14800332, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c23], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-3p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) + +cpn.add_dataset( + name="hh_ggf_hbb_htt_kl1_kt1_c2m2_powheg", + id=14797893, + processes=[procs.hh_ggf_hbb_htt_kl1_kt1_c2m2], + keys=[ + "/GluGlutoHHto2B2Tau_kl-1p00_kt-1p00_c2-m2p00_TuneCP5_13p6TeV_powheg-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) # # vbf -> H -> HH # -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kv1_k2v1_kl1_madgraph", -# id=14790613, -# processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl1], -# keys=[ -# "/VBFHHto2B2Tau_CV_1_C2V_1_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=981_154, -# aux={ -# "merging_factors": { -# "nominal": 17, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kv1_k2v0_kl1_madgraph", -# id=14792505, -# processes=[procs.hh_vbf_hbb_htt_kv1_k2v0_kl1], -# keys=[ -# "/VBFHHto2B2Tau_CV_1_C2V_0_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=988_736, -# aux={ -# "merging_factors": { -# "nominal": 15, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kv1_k2v1_kl2_madgraph", -# id=14788949, -# processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl2], -# keys=[ -# "/VBFHHto2B2Tau_CV-1_C2V-1_C3-2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=100_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kv1_k2v2_kl1_madgraph", -# id=14805327, -# processes=[procs.hh_vbf_hbb_htt_kv1_k2v2_kl1], -# keys=[ -# "/VBFHHto2B2Tau_CV-1_C2V-2_C3-1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=100_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4_madgraph", -# id=14870775, -# processes=[procs.hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4], -# keys=[ -# "/VBFHHto2B2Tau_CV-1p74_C2V-1p37_C3-14p4_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=994_424, -# aux={ -# "merging_factors": { -# "nominal": 32, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2_madgraph", -# id=14874480, -# processes=[procs.hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2], -# keys=[ -# "/VBFHHto2B2Tau_CV-m0p012_C2V-0p030_C3-10p2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=994_967, -# aux={ -# "merging_factors": { -# "nominal": 33, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3_madgraph", -# id=14878149, -# processes=[procs.hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3], -# keys=[ -# "/VBFHHto2B2Tau_CV-m0p758_C2V-1p44_C3-m19p3_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=998_602, -# aux={ -# "merging_factors": { -# "nominal": 23, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43_madgraph", -# id=14873950, -# processes=[procs.hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43], -# keys=[ -# "/VBFHHto2B2Tau_CV-m0p962_C2V-0p959_C3-m1p43_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=996_515, -# aux={ -# "merging_factors": { -# "nominal": 31, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94_madgraph", -# id=14876058, -# processes=[procs.hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94], -# keys=[ -# "/VBFHHto2B2Tau_CV-m1p21_C2V-1p94_C3-m0p94_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=995_107, -# aux={ -# "merging_factors": { -# "nominal": 25, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36_madgraph", -# id=14870882, -# processes=[procs.hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36], -# keys=[ -# "/VBFHHto2B2Tau_CV-m1p60_C2V-2p72_C3-m1p36_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=995_824, -# aux={ -# "merging_factors": { -# "nominal": 29, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39_madgraph", -# id=14961165, -# processes=[procs.hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39], -# keys=[ -# "/VBFHHto2B2Tau_CV-m1p83_C2V-3p57_C3-m3p39_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=220_000, -# aux={ -# "merging_factors": { -# "nominal": 13, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96_madgraph", -# id=14877633, -# processes=[procs.hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96], -# keys=[ -# "/VBFHHto2B2Tau_CV-m2p12_C2V-3p87_C3-m5p96_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa -# ], -# n_files=2, -# n_events=979_120, -# aux={ -# "merging_factors": { -# "nominal": 32, -# }, -# }, -# ) - -# # -# # ggf -> graviton -> HH -# # - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m250_madgraph", -# id=14856827, -# processes=[procs.graviton_hh_ggf_hbb_htt_m250], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m260_madgraph", -# id=14873688, -# processes=[procs.graviton_hh_ggf_hbb_htt_m260], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=84_490, -# aux={ -# "merging_factors": { -# "nominal": 21, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m270_madgraph", -# id=14858113, -# processes=[procs.graviton_hh_ggf_hbb_htt_m270], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 7, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m280_madgraph", -# id=14867634, -# processes=[procs.graviton_hh_ggf_hbb_htt_m280], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 21, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m300_madgraph", -# id=14867934, -# processes=[procs.graviton_hh_ggf_hbb_htt_m300], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_304, -# aux={ -# "merging_factors": { -# "nominal": 21, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m350_madgraph", -# id=14868051, -# processes=[procs.graviton_hh_ggf_hbb_htt_m350], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_303, -# aux={ -# "merging_factors": { -# "nominal": 17, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m450_madgraph", -# id=14857139, -# processes=[procs.graviton_hh_ggf_hbb_htt_m450], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 7, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m550_madgraph", -# id=14875152, -# processes=[procs.graviton_hh_ggf_hbb_htt_m550], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_312, -# aux={ -# "merging_factors": { -# "nominal": 20, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m600_madgraph", -# id=14858155, -# processes=[procs.graviton_hh_ggf_hbb_htt_m600], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 8, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m650_madgraph", -# id=14856595, -# processes=[procs.graviton_hh_ggf_hbb_htt_m650], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m700_madgraph", -# id=14872537, -# processes=[procs.graviton_hh_ggf_hbb_htt_m700], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_310, -# aux={ -# "merging_factors": { -# "nominal": 20, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m800_madgraph", -# id=14856808, -# processes=[procs.graviton_hh_ggf_hbb_htt_m800], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m1000_madgraph", -# id=14854546, -# processes=[procs.graviton_hh_ggf_hbb_htt_m1000], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 7, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m1200_madgraph", -# id=14872343, -# processes=[procs.graviton_hh_ggf_hbb_htt_m1200], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=21_332, -# aux={ -# "merging_factors": { -# "nominal": 12, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m1400_madgraph", -# id=14856666, -# processes=[procs.graviton_hh_ggf_hbb_htt_m1400], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m1600_madgraph", -# id=14856941, -# processes=[procs.graviton_hh_ggf_hbb_htt_m1600], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 10, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m1800_madgraph", -# id=14858127, -# processes=[procs.graviton_hh_ggf_hbb_htt_m1800], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 5, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m2000_madgraph", -# id=14854608, -# processes=[procs.graviton_hh_ggf_hbb_htt_m2000], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m2500_madgraph", -# id=14865095, -# processes=[procs.graviton_hh_ggf_hbb_htt_m2500], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 14, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m3000_madgraph", -# id=14858129, -# processes=[procs.graviton_hh_ggf_hbb_htt_m3000], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m4000_madgraph", -# id=14885096, -# processes=[procs.graviton_hh_ggf_hbb_htt_m4000], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=21_342, -# aux={ -# "merging_factors": { -# "nominal": 9, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="graviton_hh_ggf_hbb_htt_m5000_madgraph", -# id=14857131, -# processes=[procs.graviton_hh_ggf_hbb_htt_m5000], -# keys=[ -# "/GluGlutoBulkGravitontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 10, -# }, -# }, -# ) - -# # -# # ggf -> radion -> HH -# # - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m250_madgraph", -# id=14857343, -# processes=[procs.radion_hh_ggf_hbb_htt_m250], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=85_196, -# aux={ -# "merging_factors": { -# "nominal": 17, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m260_madgraph", -# id=14856713, -# processes=[procs.radion_hh_ggf_hbb_htt_m260], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_279, -# aux={ -# "merging_factors": { -# "nominal": 6, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m270_madgraph", -# id=14865091, -# processes=[procs.radion_hh_ggf_hbb_htt_m270], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=87_298, -# aux={ -# "merging_factors": { -# "nominal": 17, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m280_madgraph", -# id=14853129, -# processes=[procs.radion_hh_ggf_hbb_htt_m280], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 19, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m300_madgraph", -# id=14856618, -# processes=[procs.radion_hh_ggf_hbb_htt_m300], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 5, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m350_madgraph", -# id=14865104, -# processes=[procs.radion_hh_ggf_hbb_htt_m350], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 16, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m450_madgraph", -# id=14856872, -# processes=[procs.radion_hh_ggf_hbb_htt_m450], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m550_madgraph", -# id=14852999, -# processes=[procs.radion_hh_ggf_hbb_htt_m550], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=85_915, -# aux={ -# "merging_factors": { -# "nominal": 16, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m600_madgraph", -# id=14857113, -# processes=[procs.radion_hh_ggf_hbb_htt_m600], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 5, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m650_madgraph", -# id=14856968, -# processes=[procs.radion_hh_ggf_hbb_htt_m650], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 5, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m700_madgraph", -# id=14855971, -# processes=[procs.radion_hh_ggf_hbb_htt_m700], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 6, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m800_madgraph", -# id=14856917, -# processes=[procs.radion_hh_ggf_hbb_htt_m800], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m1000_madgraph", -# id=14856932, -# processes=[procs.radion_hh_ggf_hbb_htt_m1000], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=88_000, -# aux={ -# "merging_factors": { -# "nominal": 6, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m1200_madgraph", -# id=14856857, -# processes=[procs.radion_hh_ggf_hbb_htt_m1200], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 3, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m1400_madgraph", -# id=14856881, -# processes=[procs.radion_hh_ggf_hbb_htt_m1400], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m1600_madgraph", -# id=14872393, -# processes=[procs.radion_hh_ggf_hbb_htt_m1600], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=21_345, -# aux={ -# "merging_factors": { -# "nominal": 13, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m1800_madgraph", -# id=14856885, -# processes=[procs.radion_hh_ggf_hbb_htt_m1800], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 2, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m2000_madgraph", -# id=14854659, -# processes=[procs.radion_hh_ggf_hbb_htt_m2000], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 15, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m2500_madgraph", -# id=14874111, -# processes=[procs.radion_hh_ggf_hbb_htt_m2500], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 14, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m3000_madgraph", -# id=14874977, -# processes=[procs.radion_hh_ggf_hbb_htt_m3000], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 17, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m4000_madgraph", -# id=14856844, -# processes=[procs.radion_hh_ggf_hbb_htt_m4000], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 4, -# }, -# }, -# ) - -# cpn.add_dataset( -# name="radion_hh_ggf_hbb_htt_m5000_madgraph", -# id=14854551, -# processes=[procs.radion_hh_ggf_hbb_htt_m5000], -# keys=[ -# "/GluGlutoRadiontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa -# ], -# n_files=1, -# n_events=22_000, -# aux={ -# "merging_factors": { -# "nominal": 4, -# }, -# }, -# ) +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v1_kl1_madgraph", + id=14790613, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl1], + keys=[ + "/VBFHHto2B2Tau_CV_1_C2V_1_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=981_154, + aux={ + "merging_factors": { + "nominal": 17, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v0_kl1_madgraph", + id=14792505, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v0_kl1], + keys=[ + "/VBFHHto2B2Tau_CV_1_C2V_0_C3_1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=988_736, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v1_kl2_madgraph", + id=14788949, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v1_kl2], + keys=[ + "/VBFHHto2B2Tau_CV-1_C2V-1_C3-2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1_k2v2_kl1_madgraph", + id=14805327, + processes=[procs.hh_vbf_hbb_htt_kv1_k2v2_kl1], + keys=[ + "/VBFHHto2B2Tau_CV-1_C2V-2_C3-1_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=100_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4_madgraph", + id=14870775, + processes=[procs.hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4], + keys=[ + "/VBFHHto2B2Tau_CV-1p74_C2V-1p37_C3-14p4_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=994_424, + aux={ + "merging_factors": { + "nominal": 32, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2_madgraph", + id=14874480, + processes=[procs.hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2], + keys=[ + "/VBFHHto2B2Tau_CV-m0p012_C2V-0p030_C3-10p2_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=994_967, + aux={ + "merging_factors": { + "nominal": 33, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3_madgraph", + id=14878149, + processes=[procs.hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3], + keys=[ + "/VBFHHto2B2Tau_CV-m0p758_C2V-1p44_C3-m19p3_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=998_602, + aux={ + "merging_factors": { + "nominal": 23, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43_madgraph", + id=14873950, + processes=[procs.hh_vbf_hbb_htt_kvm0p962_k2v0p959_klm1p43], + keys=[ + "/VBFHHto2B2Tau_CV-m0p962_C2V-0p959_C3-m1p43_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=996_515, + aux={ + "merging_factors": { + "nominal": 31, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94_madgraph", + id=14876058, + processes=[procs.hh_vbf_hbb_htt_kvm1p21_k2v1p94_klm0p94], + keys=[ + "/VBFHHto2B2Tau_CV-m1p21_C2V-1p94_C3-m0p94_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=995_107, + aux={ + "merging_factors": { + "nominal": 25, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36_madgraph", + id=14870882, + processes=[procs.hh_vbf_hbb_htt_kvm1p60_k2v2p72_klm1p36], + keys=[ + "/VBFHHto2B2Tau_CV-m1p60_C2V-2p72_C3-m1p36_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=995_824, + aux={ + "merging_factors": { + "nominal": 29, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39_madgraph", + id=14961165, + processes=[procs.hh_vbf_hbb_htt_kvm1p83_k2v3p57_klm3p39], + keys=[ + "/VBFHHto2B2Tau_CV-m1p83_C2V-3p57_C3-m3p39_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=220_000, + aux={ + "merging_factors": { + "nominal": 13, + }, + }, +) + +cpn.add_dataset( + name="hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96_madgraph", + id=14877633, + processes=[procs.hh_vbf_hbb_htt_kvm2p12_k2v3p87_klm5p96], + keys=[ + "/VBFHHto2B2Tau_CV-m2p12_C2V-3p87_C3-m5p96_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=2, + n_events=979_120, + aux={ + "merging_factors": { + "nominal": 32, + }, + }, +) + +# +# ggf -> graviton -> HH +# + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m250_madgraph", + id=14856827, + processes=[procs.graviton_hh_ggf_hbb_htt_m250], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m260_madgraph", + id=14873688, + processes=[procs.graviton_hh_ggf_hbb_htt_m260], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=84_490, + aux={ + "merging_factors": { + "nominal": 21, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m270_madgraph", + id=14858113, + processes=[procs.graviton_hh_ggf_hbb_htt_m270], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 7, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m280_madgraph", + id=14867634, + processes=[procs.graviton_hh_ggf_hbb_htt_m280], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 21, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m300_madgraph", + id=14867934, + processes=[procs.graviton_hh_ggf_hbb_htt_m300], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_304, + aux={ + "merging_factors": { + "nominal": 21, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m350_madgraph", + id=14868051, + processes=[procs.graviton_hh_ggf_hbb_htt_m350], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_303, + aux={ + "merging_factors": { + "nominal": 17, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m450_madgraph", + id=14857139, + processes=[procs.graviton_hh_ggf_hbb_htt_m450], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 7, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m550_madgraph", + id=14875152, + processes=[procs.graviton_hh_ggf_hbb_htt_m550], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_312, + aux={ + "merging_factors": { + "nominal": 20, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m600_madgraph", + id=14858155, + processes=[procs.graviton_hh_ggf_hbb_htt_m600], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 8, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m650_madgraph", + id=14856595, + processes=[procs.graviton_hh_ggf_hbb_htt_m650], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m700_madgraph", + id=14872537, + processes=[procs.graviton_hh_ggf_hbb_htt_m700], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_310, + aux={ + "merging_factors": { + "nominal": 20, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m800_madgraph", + id=14856808, + processes=[procs.graviton_hh_ggf_hbb_htt_m800], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1000_madgraph", + id=14854546, + processes=[procs.graviton_hh_ggf_hbb_htt_m1000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 7, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1200_madgraph", + id=14872343, + processes=[procs.graviton_hh_ggf_hbb_htt_m1200], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_332, + aux={ + "merging_factors": { + "nominal": 12, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1400_madgraph", + id=14856666, + processes=[procs.graviton_hh_ggf_hbb_htt_m1400], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1600_madgraph", + id=14856941, + processes=[procs.graviton_hh_ggf_hbb_htt_m1600], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 10, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m1800_madgraph", + id=14858127, + processes=[procs.graviton_hh_ggf_hbb_htt_m1800], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 5, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m2000_madgraph", + id=14854608, + processes=[procs.graviton_hh_ggf_hbb_htt_m2000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m2500_madgraph", + id=14865095, + processes=[procs.graviton_hh_ggf_hbb_htt_m2500], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 14, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m3000_madgraph", + id=14858129, + processes=[procs.graviton_hh_ggf_hbb_htt_m3000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m4000_madgraph", + id=14885096, + processes=[procs.graviton_hh_ggf_hbb_htt_m4000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v4/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_342, + aux={ + "merging_factors": { + "nominal": 9, + }, + }, +) + +cpn.add_dataset( + name="graviton_hh_ggf_hbb_htt_m5000_madgraph", + id=14857131, + processes=[procs.graviton_hh_ggf_hbb_htt_m5000], + keys=[ + "/GluGlutoBulkGravitontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 10, + }, + }, +) + +# +# ggf -> radion -> HH +# + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m250_madgraph", + id=14857343, + processes=[procs.radion_hh_ggf_hbb_htt_m250], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-250_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=85_196, + aux={ + "merging_factors": { + "nominal": 17, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m260_madgraph", + id=14856713, + processes=[procs.radion_hh_ggf_hbb_htt_m260], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-260_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_279, + aux={ + "merging_factors": { + "nominal": 6, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m270_madgraph", + id=14865091, + processes=[procs.radion_hh_ggf_hbb_htt_m270], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-270_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=87_298, + aux={ + "merging_factors": { + "nominal": 17, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m280_madgraph", + id=14853129, + processes=[procs.radion_hh_ggf_hbb_htt_m280], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-280_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 19, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m300_madgraph", + id=14856618, + processes=[procs.radion_hh_ggf_hbb_htt_m300], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-300_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 5, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m350_madgraph", + id=14865104, + processes=[procs.radion_hh_ggf_hbb_htt_m350], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-350_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 16, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m450_madgraph", + id=14856872, + processes=[procs.radion_hh_ggf_hbb_htt_m450], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-450_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m550_madgraph", + id=14852999, + processes=[procs.radion_hh_ggf_hbb_htt_m550], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-550_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=85_915, + aux={ + "merging_factors": { + "nominal": 16, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m600_madgraph", + id=14857113, + processes=[procs.radion_hh_ggf_hbb_htt_m600], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 5, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m650_madgraph", + id=14856968, + processes=[procs.radion_hh_ggf_hbb_htt_m650], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-650_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 5, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m700_madgraph", + id=14855971, + processes=[procs.radion_hh_ggf_hbb_htt_m700], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-700_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 6, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m800_madgraph", + id=14856917, + processes=[procs.radion_hh_ggf_hbb_htt_m800], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1000_madgraph", + id=14856932, + processes=[procs.radion_hh_ggf_hbb_htt_m1000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=88_000, + aux={ + "merging_factors": { + "nominal": 6, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1200_madgraph", + id=14856857, + processes=[procs.radion_hh_ggf_hbb_htt_m1200], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1200_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 3, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1400_madgraph", + id=14856881, + processes=[procs.radion_hh_ggf_hbb_htt_m1400], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1400_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1600_madgraph", + id=14872393, + processes=[procs.radion_hh_ggf_hbb_htt_m1600], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1600_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=21_345, + aux={ + "merging_factors": { + "nominal": 13, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m1800_madgraph", + id=14856885, + processes=[procs.radion_hh_ggf_hbb_htt_m1800], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-1800_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 2, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m2000_madgraph", + id=14854659, + processes=[procs.radion_hh_ggf_hbb_htt_m2000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-2000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m2500_madgraph", + id=14874111, + processes=[procs.radion_hh_ggf_hbb_htt_m2500], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-2500_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 14, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m3000_madgraph", + id=14874977, + processes=[procs.radion_hh_ggf_hbb_htt_m3000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-3000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 17, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m4000_madgraph", + id=14856844, + processes=[procs.radion_hh_ggf_hbb_htt_m4000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-4000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 4, + }, + }, +) + +cpn.add_dataset( + name="radion_hh_ggf_hbb_htt_m5000_madgraph", + id=14854551, + processes=[procs.radion_hh_ggf_hbb_htt_m5000], + keys=[ + "/GluGlutoRadiontoHHto2B2Tau_M-5000_narrow_TuneCP5_13p6TeV_madgraph-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v3/NANOAODSIM", # noqa + ], + n_files=1, + n_events=22_000, + aux={ + "merging_factors": { + "nominal": 4, + }, + }, +) From c1c779b520bd5abb4f801d1b22dbbc4e6f9236b2 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 18:07:43 +0200 Subject: [PATCH 18/42] add dummy cross sections 13p6 TeV for vbf samples --- cmsdb/processes/hh.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cmsdb/processes/hh.py b/cmsdb/processes/hh.py index 7ab4ced8..334295be 100644 --- a/cmsdb/processes/hh.py +++ b/cmsdb/processes/hh.py @@ -92,6 +92,7 @@ "pdf": 0.03j, "mtop": (0.06j, 0.12j), }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_ggf}, ) @@ -205,6 +206,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh}, ) @@ -217,6 +219,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_vbf}, ) @@ -229,6 +232,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_vbf}, ) @@ -241,6 +245,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_vbf}, ) @@ -253,6 +258,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_vbf}, ) @@ -265,6 +271,7 @@ "scale": (0.0003j, 0.0004j), "pdf": 0.021j, }), + 13.6: Number(0.1), # TODO }, aux={"production_mode_parent": hh_vbf}, ) From f69ea6473150b824fab8f446c4044d2071fde321 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 18:10:58 +0200 Subject: [PATCH 19/42] correct ewk process names --- cmsdb/processes/ewk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 18449fd3..399357ee 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -141,7 +141,7 @@ # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa dy_m50toinf_0j = dy_m50toinf.add_process( - name="dy_m50_0j", + name="dy_m50toinf_0j", id=51110, xsecs={ # NLO xsec taken from https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa @@ -826,7 +826,7 @@ # for WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa wz_wlnu_zll_m4toinf = wz.add_process( - name="wz_wlnun_zll_m4toinf", + name="wz_wlnu_zll_m4toinf", id=8210, xsecs={ 13: Number(5.218, {"tot": 0.00525}), From 7d3b467b2857e5def00d0dd0489f00dc853b0d78 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 20:51:40 +0200 Subject: [PATCH 20/42] add new graviton and radion processes and cleanup --- cmsdb/processes/hh2bbtautau.py | 756 +++++++++++++++++++++++++-------- 1 file changed, 579 insertions(+), 177 deletions(-) diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index ad97e08e..94b4cefe 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -4,10 +4,10 @@ HH -> bbtautau process definitions. IDs are assigned in the range 21100-21199 for hh_ggf and 22100-22199 for hh_vbf. -For radion ggf, the IDs are the range 23100-23199. -For graviton ggf, the IDs are the range 24100-24199. -For radion vbf, the IDs are the range 25100-25199. -For graviton vbf, the IDs are the range 26100-26199. +For radion ggf, the IDs are the range 23100-23199. As of 11.06.24, they go up to 23139. +For graviton ggf, the IDs are the range 24100-24199. As of 11.06.24, they go up to 24131. +For radion vbf, the IDs are the range 25100-25199. As of 11.06.24, they go up to 25125. +For graviton vbf, the IDs are the range 26100-26199. As of 11.06.24, they go up to 26125. """ __all__ = [ @@ -25,13 +25,13 @@ "radion_hh_ggf_hbb_htt_m500", "radion_hh_ggf_hbb_htt_m550", "radion_hh_ggf_hbb_htt_m600", "radion_hh_ggf_hbb_htt_m650", "radion_hh_ggf_hbb_htt_m700", "radion_hh_ggf_hbb_htt_m750", "radion_hh_ggf_hbb_htt_m800", "radion_hh_ggf_hbb_htt_m850", "radion_hh_ggf_hbb_htt_m900", - "radion_hh_ggf_hbb_htt_m1000", "radion_hh_ggf_hbb_htt_m1250", "radion_hh_ggf_hbb_htt_m1500", - "radion_hh_ggf_hbb_htt_m1750", "radion_hh_ggf_hbb_htt_m2000", "radion_hh_ggf_hbb_htt_m2500", - "radion_hh_ggf_hbb_htt_m3000", "radion_hh_ggf_hbb_htt_m1100", "radion_hh_ggf_hbb_htt_m2400", - "radion_hh_ggf_hbb_htt_m1300", "radion_hh_ggf_hbb_htt_m1700", "radion_hh_ggf_hbb_htt_m1200", - "radion_hh_ggf_hbb_htt_m2200", "radion_hh_ggf_hbb_htt_m2600", "radion_hh_ggf_hbb_htt_m1400", - "radion_hh_ggf_hbb_htt_m2800", "radion_hh_ggf_hbb_htt_m1600", "radion_hh_ggf_hbb_htt_m1900", - "radion_hh_ggf_hbb_htt_m1800", + "radion_hh_ggf_hbb_htt_m1000", "radion_hh_ggf_hbb_htt_m1100", "radion_hh_ggf_hbb_htt_m1200", + "radion_hh_ggf_hbb_htt_m1250", "radion_hh_ggf_hbb_htt_m1300", "radion_hh_ggf_hbb_htt_m1400", + "radion_hh_ggf_hbb_htt_m1500", "radion_hh_ggf_hbb_htt_m1600", "radion_hh_ggf_hbb_htt_m1700", + "radion_hh_ggf_hbb_htt_m1750", "radion_hh_ggf_hbb_htt_m1800", "radion_hh_ggf_hbb_htt_m1900", + "radion_hh_ggf_hbb_htt_m2000", "radion_hh_ggf_hbb_htt_m2200", "radion_hh_ggf_hbb_htt_m2400", + "radion_hh_ggf_hbb_htt_m2500", "radion_hh_ggf_hbb_htt_m2600", "radion_hh_ggf_hbb_htt_m2800", + "radion_hh_ggf_hbb_htt_m3000", "radion_hh_ggf_hbb_htt_m4000", "radion_hh_ggf_hbb_htt_m5000", "graviton_hh_ggf_hbb_htt", "graviton_hh_ggf_hbb_htt_m250", "graviton_hh_ggf_hbb_htt_m260", "graviton_hh_ggf_hbb_htt_m270", "graviton_hh_ggf_hbb_htt_m280", @@ -42,10 +42,13 @@ "graviton_hh_ggf_hbb_htt_m650", "graviton_hh_ggf_hbb_htt_m700", "graviton_hh_ggf_hbb_htt_m750", "graviton_hh_ggf_hbb_htt_m800", "graviton_hh_ggf_hbb_htt_m850", "graviton_hh_ggf_hbb_htt_m900", - "graviton_hh_ggf_hbb_htt_m1000", "graviton_hh_ggf_hbb_htt_m1250", - "graviton_hh_ggf_hbb_htt_m1500", "graviton_hh_ggf_hbb_htt_m1750", + "graviton_hh_ggf_hbb_htt_m1000", "graviton_hh_ggf_hbb_htt_m1200", + "graviton_hh_ggf_hbb_htt_m1250", "graviton_hh_ggf_hbb_htt_m1400", + "graviton_hh_ggf_hbb_htt_m1500", "graviton_hh_ggf_hbb_htt_m1600", + "graviton_hh_ggf_hbb_htt_m1750", "graviton_hh_ggf_hbb_htt_m1800", "graviton_hh_ggf_hbb_htt_m2000", "graviton_hh_ggf_hbb_htt_m2500", - "graviton_hh_ggf_hbb_htt_m3000", + "graviton_hh_ggf_hbb_htt_m3000", "graviton_hh_ggf_hbb_htt_m4000", + "graviton_hh_ggf_hbb_htt_m5000", "hh_vbf_hbb_htt_kv1_k2v1_kl1", "hh_vbf_hbb_htt_kv1_k2v0_kl1", "hh_vbf_hbb_htt_kv1_k2v1_kl2", "hh_vbf_hbb_htt_kv1_k2v2_kl1", "hh_vbf_hbb_htt_kv1p74_k2v1p37_kl14p4", "hh_vbf_hbb_htt_kvm0p012_k2v0p030_kl10p2", "hh_vbf_hbb_htt_kvm0p758_k2v1p44_klm19p3", @@ -318,224 +321,352 @@ radion_hh_ggf_hbb_htt_m250 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m250", id=23101, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m260 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m260", id=23102, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m270 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m270", id=23103, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m280 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m280", id=23104, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m300 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m300", id=23105, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m320 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m320", id=23106, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m350 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m350", id=23107, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m400 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m400", id=23108, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m450 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m450", id=23109, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m500 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m500", id=23110, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m550 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m550", id=23111, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m600 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m600", id=23112, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m650 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m650", id=23113, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m700 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m700", id=23114, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m750 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m750", id=23115, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m800 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m800", id=23116, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m850 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m850", id=23117, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m900 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m900", id=23118, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_ggf_hbb_htt_m1000 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m1000", id=23119, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1250 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1250", +radion_hh_ggf_hbb_htt_m1100 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1100", id=23120, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1500 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1500", +radion_hh_ggf_hbb_htt_m1200 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1200", id=23121, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1750 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1750", +radion_hh_ggf_hbb_htt_m1250 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1250", id=23122, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2000 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2000", +radion_hh_ggf_hbb_htt_m1300 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1300", id=23123, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2500 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2500", +radion_hh_ggf_hbb_htt_m1400 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1400", id=23124, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m3000 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m3000", +radion_hh_ggf_hbb_htt_m1500 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1500", id=23125, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1100 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1100", +radion_hh_ggf_hbb_htt_m1600 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1600", id=23126, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2400 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2400", +radion_hh_ggf_hbb_htt_m1700 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1700", id=23127, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1300 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1300", +radion_hh_ggf_hbb_htt_m1750 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1750", id=23128, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1700 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1700", +radion_hh_ggf_hbb_htt_m1800 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1800", id=23129, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1200 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1200", +radion_hh_ggf_hbb_htt_m1900 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m1900", id=23130, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2200 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2200", +radion_hh_ggf_hbb_htt_m2000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2000", id=23131, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2600 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2600", +radion_hh_ggf_hbb_htt_m2200 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2200", id=23132, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1400 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1400", +radion_hh_ggf_hbb_htt_m2400 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2400", id=23133, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m2800 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m2800", +radion_hh_ggf_hbb_htt_m2500 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2500", id=23134, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1600 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1600", +radion_hh_ggf_hbb_htt_m2600 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2600", id=23135, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) -radion_hh_ggf_hbb_htt_m1900 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1900", +radion_hh_ggf_hbb_htt_m2800 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m2800", id=23136, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) - -radion_hh_ggf_hbb_htt_m1800 = radion_hh_ggf_hbb_htt.add_process( - name="radion_hh_ggf_hbb_htt_m1800", +radion_hh_ggf_hbb_htt_m3000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m3000", id=23137, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +radion_hh_ggf_hbb_htt_m4000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m4000", + id=23138, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +radion_hh_ggf_hbb_htt_m5000 = radion_hh_ggf_hbb_htt.add_process( + name="radion_hh_ggf_hbb_htt_m5000", + id=23139, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) # @@ -552,151 +683,280 @@ graviton_hh_ggf_hbb_htt_m250 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m250", id=24101, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m260 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m260", id=24102, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m270 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m270", id=24103, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m280 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m280", id=24104, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m300 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m300", id=24105, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m320 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m320", id=24106, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m350 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m350", id=24107, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m400 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m400", id=24108, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m450 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m450", id=24109, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m500 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m500", id=24110, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m550 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m550", id=24111, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m600 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m600", id=24112, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m650 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m650", id=24113, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m700 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m700", id=24114, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m750 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m750", id=24115, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m800 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m800", id=24116, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m850 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m850", id=24117, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m900 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m900", id=24118, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m1000 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m1000", id=24119, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m1200 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1200", + id=24120, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m1250 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m1250", - id=24120, - xsecs={13: Number(0.1)}, # TODO + id=24121, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m1400 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1400", + id=24122, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m1500 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m1500", - id=24121, - xsecs={13: Number(0.1)}, # TODO + id=24123, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m1600 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1600", + id=24124, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m1750 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m1750", - id=24122, - xsecs={13: Number(0.1)}, # TODO + id=24125, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m1800 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m1800", + id=24126, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m2000 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m2000", - id=24123, - xsecs={13: Number(0.1)}, # TODO + id=24127, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m2500 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m2500", - id=24124, - xsecs={13: Number(0.1)}, # TODO + id=24128, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_ggf_hbb_htt_m3000 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m3000", - id=24125, - xsecs={13: Number(0.1)}, # TODO + id=24129, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m4000 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m4000", + id=24130, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, +) + +graviton_hh_ggf_hbb_htt_m5000 = graviton_hh_ggf_hbb_htt.add_process( + name="graviton_hh_ggf_hbb_htt_m5000", + id=24131, + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) # @@ -755,7 +1015,6 @@ id=22105, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=1.74$, $\kappa_{2V}=1.37$, $\kappa_{\lambda}=14.4$)", xsecs={ - 13: hh_vbf_kv1p74_k2v1p37_kl14p4.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kv1p74_k2v1p37_kl14p4.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -765,7 +1024,6 @@ id=22106, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.012$, $\kappa_{2V}=0.030$, $\kappa_{\lambda}=10.2$)", xsecs={ - 13: hh_vbf_kvm0p012_k2v0p030_kl10p2.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm0p012_k2v0p030_kl10p2.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -775,7 +1033,6 @@ id=22107, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.758$, $\kappa_{2V}=1.44$, $\kappa_{\lambda}=-19.3$)", xsecs={ - 13: hh_vbf_kvm0p758_k2v1p44_klm19p3.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm0p758_k2v1p44_klm19p3.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -785,7 +1042,6 @@ id=22108, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-0.962$, $\kappa_{2V}=0.959$, $\kappa_{\lambda}=-1.43$)", xsecs={ - 13: hh_vbf_kvm0p962_k2v0p959_klm1p43.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm0p962_k2v0p959_klm1p43.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -795,7 +1051,6 @@ id=22109, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.21$, $\kappa_{2V}=1.94$, $\kappa_{\lambda}=-0.94$)", xsecs={ - 13: hh_vbf_kvm1p21_k2v1p94_klm0p94.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm1p21_k2v1p94_klm0p94.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -805,7 +1060,6 @@ id=22110, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.60$, $\kappa_{2V}=2.72$, $\kappa_{\lambda}=-1.36$)", xsecs={ - 13: hh_vbf_kvm1p60_k2v2p72_klm1p36.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm1p60_k2v2p72_klm1p36.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -815,7 +1069,6 @@ id=22111, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-1.83$, $\kappa_{2V}=3.57$, $\kappa_{\lambda}=-3.39$)", xsecs={ - 13: hh_vbf_kvm1p83_k2v3p57_klm3p39.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm1p83_k2v3p57_klm3p39.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -825,7 +1078,6 @@ id=22112, label=r"$HH_{vbf} \rightarrow bb\tau\tau$ ($\kappa_{V}=-2.12$, $\kappa_{2V}=3.87$, $\kappa_{\lambda}=-5.96$)", xsecs={ - 13: hh_vbf_kvm2p12_k2v3p87_klm5p96.get_xsec(13) * const.br_hh.bbtt, 13.6: hh_vbf_kvm2p12_k2v3p87_klm5p96.get_xsec(13.6) * const.br_hh.bbtt, }, ) @@ -844,151 +1096,226 @@ radion_hh_vbf_hbb_htt_m250 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m250", id=25101, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m260 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m260", id=25102, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m270 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m270", id=25103, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m280 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m280", id=25104, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m300 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m300", id=25105, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m320 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m320", id=25106, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m350 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m350", id=25107, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m400 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m400", id=25108, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m450 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m450", id=25109, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m500 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m500", id=25110, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m550 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m550", id=25111, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m600 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m600", id=25112, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m650 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m650", id=25113, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m700 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m700", id=25114, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m750 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m750", id=25115, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m800 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m800", id=25116, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m850 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m850", id=25117, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m900 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m900", id=25118, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m1000 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m1000", id=25119, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m1250 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m1250", id=25120, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m1500 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m1500", id=25121, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m1750 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m1750", id=25122, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m2000 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m2000", id=25123, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m2500 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m2500", id=25124, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) radion_hh_vbf_hbb_htt_m3000 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m3000", id=25125, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) @@ -1006,149 +1333,224 @@ graviton_hh_vbf_hbb_htt_m250 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m250", id=26101, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m260 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m260", id=26102, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m270 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m270", id=26103, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m280 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m280", id=26104, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m300 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m300", id=26105, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m320 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m320", id=26106, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m350 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m350", id=26107, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m400 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m400", id=26108, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m450 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m450", id=26109, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m500 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m500", id=26110, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m550 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m550", id=26111, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m600 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m600", id=26112, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m650 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m650", id=26113, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m700 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m700", id=26114, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m750 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m750", id=26115, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m800 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m800", id=26116, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m850 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m850", id=26117, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m900 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m900", id=26118, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m1000 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m1000", id=26119, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m1250 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m1250", id=26120, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m1500 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m1500", id=26121, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m1750 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m1750", id=26122, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m2000 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m2000", id=26123, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m2500 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m2500", id=26124, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) graviton_hh_vbf_hbb_htt_m3000 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m3000", id=26125, - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(0.1), # TODO + 13.6: Number(0.1), # TODO + }, ) From d4e752b27ceff457f23c1bffb893c48d7c85942d Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 20:54:07 +0200 Subject: [PATCH 21/42] modify forgotten qcd process --- cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py index 4655cdeb..2711e274 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/qcd.py @@ -241,7 +241,7 @@ cpn.add_dataset( name="qcd_doubleem_pt40toinf_mgg80toinf_pythia", id=14803826, - processes=[procs.qcd_doubleem_pt40_mgg80], + processes=[procs.qcd_doubleem_pt40toinf_mgg80toinf], keys=[ "/QCD_PT-40toInf_DoubleEMEnriched_MGG-80toInf_TuneCP5_13p6TeV_pythia8/Run3Summer22NanoAODv12-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa ], From cca25f5f3c8c2d5eb110d7ea4fe80ce2effeca6b Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Tue, 11 Jun 2024 20:59:04 +0200 Subject: [PATCH 22/42] modify zh_gg process --- cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py | 4 ++-- cmsdb/processes/higgs.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py index 9296adee..946d0d36 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/higgs.py @@ -49,9 +49,9 @@ # z -> ll , h -> bb cpn.add_dataset( - name="gg_zh_zll_hbb_powheg", + name="zh_gg_zll_hbb_powheg", id=14340023, - processes=[procs.ggzh_llbb], + processes=[procs.zh_gg_zll_hbb], keys=[ "/ggZH_HToBB_ZToLL_M-125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], diff --git a/cmsdb/processes/higgs.py b/cmsdb/processes/higgs.py index 8361fb53..169f5ce2 100644 --- a/cmsdb/processes/higgs.py +++ b/cmsdb/processes/higgs.py @@ -67,7 +67,7 @@ - 12xxx: h_vbf - 13xxx: vh - 14xxx: zh -- 15xxx: ggzh +- 15xxx: zh_gg - 16xxx: wh - 17xxx: wph - 18xxx: wmh From d15f63e59f4d00fe7befb999a9c8a05ad67631e0 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Wed, 12 Jun 2024 14:31:36 +0200 Subject: [PATCH 23/42] make st t and tw channels consistent in 2016 post and other campaigns --- cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py index cf75b05d..ee5c3707 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py @@ -314,7 +314,7 @@ ) cpn.add_dataset( - name="st_tchannel_t_4f_powheg", + name="st_tchannel_t_powheg", id=14223742, processes=[procs.st_tchannel_t], info=dict( @@ -382,7 +382,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_4f_powheg", + name="st_tchannel_tbar_powheg", id=14225640, processes=[procs.st_tchannel_tbar], info=dict( @@ -439,7 +439,7 @@ ) cpn.add_dataset( - name="st_twchannel_t_5f_powheg", + name="st_twchannel_t_powheg", id=14238196, processes=[procs.st_twchannel_t], keys=[ @@ -450,7 +450,7 @@ ) cpn.add_dataset( - name="st_twchannel_tbar_5f_powheg", + name="st_twchannel_tbar_powheg", id=14238473, processes=[procs.st_twchannel_tbar], keys=[ From 076fa42a3f9208ddb90c31304a1508b690f9dff1 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Wed, 12 Jun 2024 18:30:48 +0200 Subject: [PATCH 24/42] Fix data jec eras. --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index 45bc2b26..3e9f59cc 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -28,6 +28,7 @@ "nominal": 19, }, "era": "C", + "jec_era": "RunCD", }, ) @@ -46,6 +47,7 @@ "nominal": 20, }, "era": "D", + "jec_era": "RunCD", }, ) @@ -69,6 +71,7 @@ "nominal": 17, }, "era": "C", + "jec_era": "RunCD", }, ) @@ -87,6 +90,7 @@ "nominal": 17, }, "era": "D", + "jec_era": "RunCD", }, ) @@ -111,6 +115,7 @@ "nominal": 16, }, "era": "C", + "jec_era": "RunCD", }, ) @@ -153,6 +158,7 @@ "nominal": 13, }, "era": "C", + "jec_era": "RunCD", }, ) @@ -171,5 +177,6 @@ "nominal": 13, }, "era": "D", + "jec_era": "RunCD", }, ) From 9a844d950a90b9e405994e17e9bc31d975f6d3cc Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Fri, 14 Jun 2024 01:10:40 +0200 Subject: [PATCH 25/42] add bkg cross sections 2022 pre custom production --- cmsdb/processes/ewk.py | 50 ++++++++++++++++++++++++++++++++++++++-- cmsdb/processes/higgs.py | 19 +++++++++++---- cmsdb/processes/top.py | 32 ++++++++++++++++++++++++- 3 files changed, 93 insertions(+), 8 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 399357ee..5639c4a0 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -75,6 +75,7 @@ dy_m50toinf_lo_13TeV_xsec = Number(5395.0, {"tot": 1.858}) # 13.6 TeV LO and NLO cross sections are based on the XSDB +# TODO: recalculate in genxsecanalyzer # https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa dy_m4to10_nlo_13p6TeV_xsec = Number(141500, {"tot": 301.9}) # https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa @@ -718,7 +719,7 @@ xsecs={13: Number(0.1)}, # updated below as the sum over WW, WZ, ZZ ) -# ZZ xsec values at NLO from https://arxiv.org/pdf/1105.0020.pdf v1 +# ZZ 13 TeV xsec values at NLO from https://arxiv.org/pdf/1105.0020.pdf v1 # old value before update: # https://cms.cern.ch/iCMS/jsp/db_notes/noteInfo.jsp?cmsnoteid=CMS%20AN-2019/197 (v3) Number(12.13) (LO) @@ -728,6 +729,12 @@ label="ZZ", xsecs={ 13: Number(15.99, {"scale": (0.037j, 0.026j)}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DZZ_TuneCP5_13p6TeV_pythia8 # noqa + 13.6: Number(12.75, { + "tot": 0.0649, + }), }, ) @@ -796,7 +803,6 @@ ) # WZ xsec values at NLO from https://arxiv.org/pdf/1105.0020.pdf v1 -# can this be used too? https://arxiv.org/pdf/2110.11231.pdf -> actual measurement, no theory prediction wp_z_xsec = { 13: Number(28.55, {"scale": (0.041j, 0.032j)}), } @@ -816,6 +822,12 @@ # https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat13TeV?rev=28 # shows a permille difference in the values calculated directly and the ones added from w+ and w- 13: wp_z_xsec[13] + wm_z_xsec[13], + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWZ_TuneCP5_13p6TeV_pythia8 # noqa + 13.6: Number(29.1, { + "tot": 0.1318, + }), }, ) @@ -870,6 +882,12 @@ label="WW", xsecs={ 13: Number(118.7, {"scale": (0.025j, 0.022j)}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWW_TuneCP5_13p6TeV_pythia8 # noqa + 13.6: Number(80.23, { + "tot": 0.3733, + }), }, ) @@ -941,6 +959,13 @@ id=9100, xsecs={ 13: Number(0.01476, {"tot": 2.347 * 10**(-6)}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DZZZ_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.01591, { + "tot": 0.000007828, + }), }, ) @@ -953,6 +978,13 @@ id=9200, xsecs={ 13: Number(0.05709, {"tot": 6.213 * 10**(-5)}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWZZ_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.06206, { + "tot": 0.00003689, + }), }, ) @@ -965,6 +997,13 @@ id=9300, xsecs={ 13: Number(0.1707, {"tot": 0.0001757}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWWZ_4F_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.1851, { + "tot": 0.00009482, + }), }, ) @@ -977,6 +1016,13 @@ id=9400, xsecs={ 13: Number(0.2158, {"tot": 0.0002479}), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWWW_4F_TuneCP5_13p6TeV_amcatnlo-madspin-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.2328, { + "tot": 0.0001247, + }), }, ) diff --git a/cmsdb/processes/higgs.py b/cmsdb/processes/higgs.py index 169f5ce2..a6359774 100644 --- a/cmsdb/processes/higgs.py +++ b/cmsdb/processes/higgs.py @@ -448,8 +448,6 @@ # #################################################################################################### -AAAAA = Process("A", 12452513) - h = Process( name="h", id=10000, @@ -901,6 +899,13 @@ "scale": (0.251j, 0.189j), "pdf": 0.019j, }), + 13.6: Number(0.1360, { # value for mH=125 GeV + "scale": (0.037j, 0.032j), + "pdf": 0.016j, + }), # TODO: only preliminary + # unclear if error (originally for ZH) is also applicable here. + # only in original presentation: + # https://indico.cern.ch/event/1119741/contributions/4715908/attachments/2383849/4073592/YR4_13p6_VH_update.pdf # noqa }, aux={"production_mode_parent": vh}, ) @@ -1123,6 +1128,8 @@ "scale": (0.004j, 0.007j), "pdf": 0.018j, }), # TODO: only preliminary + # only in original presentation: + # https://indico.cern.ch/event/1119741/contributions/4715908/attachments/2383849/4073592/YR4_13p6_VH_update.pdf # noqa }, aux={"production_mode_parent": vh}, ) @@ -1225,6 +1232,8 @@ "scale": (0.004j, 0.007j), "pdf": 0.018j, }), # TODO: only preliminary + # only in original presentation: + # https://indico.cern.ch/event/1119741/contributions/4715908/attachments/2383849/4073592/YR4_13p6_VH_update.pdf # noqa }, aux={"production_mode_parent": vh}, ) @@ -1378,7 +1387,7 @@ "scale_pdf": (0.202j, 0.239j), }), 13.6: Number(0.5269, { # value for mH=125 GeV - "scale_pdf": (0.201j, 0.240), + "scale_pdf": (0.201j, 0.240j), }), # TODO: only preliminary }, aux={"production_mode_parent": h}, @@ -1429,7 +1438,7 @@ "pdf": 3.7j, }), 13.6: Number(8.362E-02, { # value for mH=125 GeV - "scale": (0.065j, 0.148), + "scale": (0.065j, 0.148j), "pdf": 3.7j, }), # TODO: only preliminary }, @@ -1446,7 +1455,7 @@ "pdf": 2.2j, }), 13.6: Number(3.068E-03, { # value for mH=125 GeV - "scale": (0.024j, 0.017), + "scale": (0.024j, 0.017j), "pdf": 2.2j, }), # TODO: only preliminary }, diff --git a/cmsdb/processes/top.py b/cmsdb/processes/top.py index d5b0cda3..77c2e656 100644 --- a/cmsdb/processes/top.py +++ b/cmsdb/processes/top.py @@ -254,7 +254,14 @@ "mtop": (0.23, 0.22), "E_beam": 0.01, }), - # TODO: 13.6 TeV xsecs + 13.6: Number(7.246, { + "scale": (0.059, 0.043), + }), + # only scale uncertainty is given in the twiki + # https://twiki.cern.ch/twiki/bin/view/LHCPhysics/SingleTopNNLORef?rev=20 + # TODO: update after final calculations + # no value for 13.6 in NLO twiki + # https://twiki.cern.ch/twiki/bin/view/LHCPhysics/SingleTopRefXsec?rev=36 }, ) @@ -281,6 +288,8 @@ "E_beam": 0.01, }), # TODO: 13.6 TeV xsecs + # not available yet in + # https://twiki.cern.ch/twiki/bin/view/LHCPhysics/SingleTopNNLORef?rev=20 }, ) @@ -307,6 +316,8 @@ "E_beam": 0.01, }), # TODO: 13.6 TeV xsecs + # not available yet in + # https://twiki.cern.ch/twiki/bin/view/LHCPhysics/SingleTopNNLORef?rev=20 }, ) @@ -328,6 +339,11 @@ st_tchannel.get_xsec(13) + st_twchannel.get_xsec(13) + st_schannel.get_xsec(13), ) +st.set_xsec( + 13.6, + st_tchannel.get_xsec(13.6) + st_twchannel.get_xsec(13.6) + st_schannel.get_xsec(13.6), +) + # # ttbar + 1 vector boson @@ -430,6 +446,13 @@ "scale": (0.052j, 0.090j), "pdf": 0.026j, }), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DTTZZ_TuneCP5_13p6TeV_madgraph-madspin-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.001579, { + "tot": 0.000003248, + }), }, ) @@ -452,6 +475,13 @@ "scale": (0.332j, 0.231j), "pdf": 0.030j, }), + # 13.6 from GenXSecAnalyzer: TODO + # in the meantime, from xsdb: + # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DTTWW_TuneCP5_13p6TeV_madgraph-madspin-pythia8 # noqa + # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + 13.6: Number(0.008203, { + "tot": 0.00001404, + }), }, ) From a3f79ff41c5ecc2cb1dd55a6116212fa2d120958 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 17 Jun 2024 12:59:17 +0200 Subject: [PATCH 26/42] add graviton and radion cross sections according to prescription in inference tools --- cmsdb/processes/hh.py | 22 +- cmsdb/processes/hh2bbtautau.py | 501 +++++++++++++++++---------------- 2 files changed, 274 insertions(+), 249 deletions(-) diff --git a/cmsdb/processes/hh.py b/cmsdb/processes/hh.py index 334295be..6ea795b9 100644 --- a/cmsdb/processes/hh.py +++ b/cmsdb/processes/hh.py @@ -389,31 +389,45 @@ # #################################################################################################### +# cross sections values chosen for inference tools, 1pb for inclusive process as documented in: +# https://cms-hh.web.cern.ch/cms-hh/tools/inference/tasks/resonant.html#resonant-limits + radion_hh_ggf = hh_ggf.add_process( name="radion_hh_ggf", id=23000, label=r"Radion $\rightarrow HH_{ggf}$", xsecs={ - 13: Number(0.1)}, # TODO + 13: Number(1.0), # value for inference tools + 13.6: Number(1.0), # value for inference tools + }, ) graviton_hh_ggf = hh_ggf.add_process( name="graviton_hh_ggf", id=24000, label=r"Graviton $\rightarrow HH_{ggf}$", - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(1.0), # value for inference tools + 13.6: Number(1.0), # value for inference tools + }, ) radion_hh_vbf = hh_vbf.add_process( name="radion_hh_vbf", id=25000, label=r"Radion $\rightarrow HH_{vbf}$", - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(1.0), # value for inference tools + 13.6: Number(1.0), # value for inference tools + }, ) graviton_hh_vbf = hh_vbf.add_process( name="graviton_hh_vbf", id=26000, label=r"Graviton $\rightarrow HH_{vbf}$", - xsecs={13: Number(0.1)}, # TODO + xsecs={ + 13: Number(1.0), # value for inference tools + 13.6: Number(1.0), # value for inference tools + }, ) diff --git a/cmsdb/processes/hh2bbtautau.py b/cmsdb/processes/hh2bbtautau.py index 94b4cefe..dbdc3100 100644 --- a/cmsdb/processes/hh2bbtautau.py +++ b/cmsdb/processes/hh2bbtautau.py @@ -81,7 +81,6 @@ "graviton_hh_vbf_hbb_htt_m3000", ] -from scinum import Number import cmsdb.constants as const from cmsdb.processes.hh import ( @@ -315,15 +314,18 @@ name="radion_hh_ggf_hbb_htt", id=23100, label=rf"{radion_hh_ggf.label} $\rightarrow bb\tau\tau$", - xsecs={13: radion_hh_ggf.get_xsec(13) * const.br_hh.bbtt}, # TODO + xsecs={ + 13: radion_hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: radion_hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, ) radion_hh_ggf_hbb_htt_m250 = radion_hh_ggf_hbb_htt.add_process( name="radion_hh_ggf_hbb_htt_m250", id=23101, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -331,8 +333,8 @@ name="radion_hh_ggf_hbb_htt_m260", id=23102, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -340,8 +342,8 @@ name="radion_hh_ggf_hbb_htt_m270", id=23103, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -349,8 +351,8 @@ name="radion_hh_ggf_hbb_htt_m280", id=23104, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -358,8 +360,8 @@ name="radion_hh_ggf_hbb_htt_m300", id=23105, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -367,8 +369,8 @@ name="radion_hh_ggf_hbb_htt_m320", id=23106, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -376,8 +378,8 @@ name="radion_hh_ggf_hbb_htt_m350", id=23107, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -385,8 +387,8 @@ name="radion_hh_ggf_hbb_htt_m400", id=23108, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -394,8 +396,8 @@ name="radion_hh_ggf_hbb_htt_m450", id=23109, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -403,8 +405,8 @@ name="radion_hh_ggf_hbb_htt_m500", id=23110, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -412,8 +414,8 @@ name="radion_hh_ggf_hbb_htt_m550", id=23111, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -421,8 +423,8 @@ name="radion_hh_ggf_hbb_htt_m600", id=23112, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -430,8 +432,8 @@ name="radion_hh_ggf_hbb_htt_m650", id=23113, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -439,8 +441,8 @@ name="radion_hh_ggf_hbb_htt_m700", id=23114, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -448,8 +450,8 @@ name="radion_hh_ggf_hbb_htt_m750", id=23115, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -457,8 +459,8 @@ name="radion_hh_ggf_hbb_htt_m800", id=23116, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -466,8 +468,8 @@ name="radion_hh_ggf_hbb_htt_m850", id=23117, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -475,8 +477,8 @@ name="radion_hh_ggf_hbb_htt_m900", id=23118, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -484,8 +486,8 @@ name="radion_hh_ggf_hbb_htt_m1000", id=23119, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -493,8 +495,8 @@ name="radion_hh_ggf_hbb_htt_m1100", id=23120, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -502,8 +504,8 @@ name="radion_hh_ggf_hbb_htt_m1200", id=23121, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -511,8 +513,8 @@ name="radion_hh_ggf_hbb_htt_m1250", id=23122, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -520,8 +522,8 @@ name="radion_hh_ggf_hbb_htt_m1300", id=23123, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -529,8 +531,8 @@ name="radion_hh_ggf_hbb_htt_m1400", id=23124, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -538,8 +540,8 @@ name="radion_hh_ggf_hbb_htt_m1500", id=23125, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -547,8 +549,8 @@ name="radion_hh_ggf_hbb_htt_m1600", id=23126, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -556,8 +558,8 @@ name="radion_hh_ggf_hbb_htt_m1700", id=23127, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -565,8 +567,8 @@ name="radion_hh_ggf_hbb_htt_m1750", id=23128, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -574,8 +576,8 @@ name="radion_hh_ggf_hbb_htt_m1800", id=23129, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -583,8 +585,8 @@ name="radion_hh_ggf_hbb_htt_m1900", id=23130, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -592,8 +594,8 @@ name="radion_hh_ggf_hbb_htt_m2000", id=23131, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -601,8 +603,8 @@ name="radion_hh_ggf_hbb_htt_m2200", id=23132, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -610,8 +612,8 @@ name="radion_hh_ggf_hbb_htt_m2400", id=23133, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -619,8 +621,8 @@ name="radion_hh_ggf_hbb_htt_m2500", id=23134, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -628,8 +630,8 @@ name="radion_hh_ggf_hbb_htt_m2600", id=23135, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -637,8 +639,8 @@ name="radion_hh_ggf_hbb_htt_m2800", id=23136, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -646,8 +648,8 @@ name="radion_hh_ggf_hbb_htt_m3000", id=23137, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -655,8 +657,8 @@ name="radion_hh_ggf_hbb_htt_m4000", id=23138, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -664,8 +666,8 @@ name="radion_hh_ggf_hbb_htt_m5000", id=23139, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_ggf_hbb_htt.get_xsec(13), + 13.6: radion_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -677,15 +679,18 @@ name="graviton_hh_ggf_hbb_htt", id=24100, label=rf"{graviton_hh_ggf.label} $\rightarrow bb\tau\tau$", - xsecs={13: graviton_hh_ggf.get_xsec(13) * const.br_hh.bbtt}, # TODO + xsecs={ + 13: graviton_hh_ggf.get_xsec(13) * const.br_hh.bbtt, + 13.6: graviton_hh_ggf.get_xsec(13.6) * const.br_hh.bbtt, + }, ) graviton_hh_ggf_hbb_htt_m250 = graviton_hh_ggf_hbb_htt.add_process( name="graviton_hh_ggf_hbb_htt_m250", id=24101, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -693,8 +698,8 @@ name="graviton_hh_ggf_hbb_htt_m260", id=24102, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -702,8 +707,8 @@ name="graviton_hh_ggf_hbb_htt_m270", id=24103, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -711,8 +716,8 @@ name="graviton_hh_ggf_hbb_htt_m280", id=24104, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -720,8 +725,8 @@ name="graviton_hh_ggf_hbb_htt_m300", id=24105, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -729,8 +734,8 @@ name="graviton_hh_ggf_hbb_htt_m320", id=24106, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -738,8 +743,8 @@ name="graviton_hh_ggf_hbb_htt_m350", id=24107, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -747,8 +752,8 @@ name="graviton_hh_ggf_hbb_htt_m400", id=24108, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -756,8 +761,8 @@ name="graviton_hh_ggf_hbb_htt_m450", id=24109, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -765,8 +770,8 @@ name="graviton_hh_ggf_hbb_htt_m500", id=24110, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -774,8 +779,8 @@ name="graviton_hh_ggf_hbb_htt_m550", id=24111, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -783,8 +788,8 @@ name="graviton_hh_ggf_hbb_htt_m600", id=24112, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -792,8 +797,8 @@ name="graviton_hh_ggf_hbb_htt_m650", id=24113, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -801,8 +806,8 @@ name="graviton_hh_ggf_hbb_htt_m700", id=24114, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -810,8 +815,8 @@ name="graviton_hh_ggf_hbb_htt_m750", id=24115, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -819,8 +824,8 @@ name="graviton_hh_ggf_hbb_htt_m800", id=24116, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -828,8 +833,8 @@ name="graviton_hh_ggf_hbb_htt_m850", id=24117, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -837,8 +842,8 @@ name="graviton_hh_ggf_hbb_htt_m900", id=24118, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -846,8 +851,8 @@ name="graviton_hh_ggf_hbb_htt_m1000", id=24119, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -855,8 +860,8 @@ name="graviton_hh_ggf_hbb_htt_m1200", id=24120, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -864,8 +869,8 @@ name="graviton_hh_ggf_hbb_htt_m1250", id=24121, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -873,8 +878,8 @@ name="graviton_hh_ggf_hbb_htt_m1400", id=24122, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -882,8 +887,8 @@ name="graviton_hh_ggf_hbb_htt_m1500", id=24123, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -891,8 +896,8 @@ name="graviton_hh_ggf_hbb_htt_m1600", id=24124, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -900,8 +905,8 @@ name="graviton_hh_ggf_hbb_htt_m1750", id=24125, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -909,8 +914,8 @@ name="graviton_hh_ggf_hbb_htt_m1800", id=24126, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -918,8 +923,8 @@ name="graviton_hh_ggf_hbb_htt_m2000", id=24127, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -927,8 +932,8 @@ name="graviton_hh_ggf_hbb_htt_m2500", id=24128, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -936,8 +941,8 @@ name="graviton_hh_ggf_hbb_htt_m3000", id=24129, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -945,8 +950,8 @@ name="graviton_hh_ggf_hbb_htt_m4000", id=24130, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -954,8 +959,8 @@ name="graviton_hh_ggf_hbb_htt_m5000", id=24131, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_ggf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_ggf_hbb_htt.get_xsec(13.6), }, ) @@ -1090,15 +1095,18 @@ name="radion_hh_vbf_hbb_htt", id=25100, label=rf"{radion_hh_vbf.label} $\rightarrow bb\tau\tau$", - xsecs={13: radion_hh_vbf.get_xsec(13) * const.br_hh.bbtt}, # TODO + xsecs={ + 13: radion_hh_vbf.get_xsec(13) * const.br_hh.bbtt, + 13.6: radion_hh_vbf.get_xsec(13.6) * const.br_hh.bbtt, + }, ) radion_hh_vbf_hbb_htt_m250 = radion_hh_vbf_hbb_htt.add_process( name="radion_hh_vbf_hbb_htt_m250", id=25101, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1106,8 +1114,8 @@ name="radion_hh_vbf_hbb_htt_m260", id=25102, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1115,8 +1123,8 @@ name="radion_hh_vbf_hbb_htt_m270", id=25103, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1124,8 +1132,8 @@ name="radion_hh_vbf_hbb_htt_m280", id=25104, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1133,8 +1141,8 @@ name="radion_hh_vbf_hbb_htt_m300", id=25105, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1142,8 +1150,8 @@ name="radion_hh_vbf_hbb_htt_m320", id=25106, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1151,8 +1159,8 @@ name="radion_hh_vbf_hbb_htt_m350", id=25107, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1160,8 +1168,8 @@ name="radion_hh_vbf_hbb_htt_m400", id=25108, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1169,8 +1177,8 @@ name="radion_hh_vbf_hbb_htt_m450", id=25109, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1178,8 +1186,8 @@ name="radion_hh_vbf_hbb_htt_m500", id=25110, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1187,8 +1195,8 @@ name="radion_hh_vbf_hbb_htt_m550", id=25111, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1196,8 +1204,8 @@ name="radion_hh_vbf_hbb_htt_m600", id=25112, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1205,8 +1213,8 @@ name="radion_hh_vbf_hbb_htt_m650", id=25113, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1214,8 +1222,8 @@ name="radion_hh_vbf_hbb_htt_m700", id=25114, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1223,8 +1231,8 @@ name="radion_hh_vbf_hbb_htt_m750", id=25115, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1232,8 +1240,8 @@ name="radion_hh_vbf_hbb_htt_m800", id=25116, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1241,8 +1249,8 @@ name="radion_hh_vbf_hbb_htt_m850", id=25117, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1250,8 +1258,8 @@ name="radion_hh_vbf_hbb_htt_m900", id=25118, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1259,8 +1267,8 @@ name="radion_hh_vbf_hbb_htt_m1000", id=25119, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1268,8 +1276,8 @@ name="radion_hh_vbf_hbb_htt_m1250", id=25120, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1277,8 +1285,8 @@ name="radion_hh_vbf_hbb_htt_m1500", id=25121, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1286,8 +1294,8 @@ name="radion_hh_vbf_hbb_htt_m1750", id=25122, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1295,8 +1303,8 @@ name="radion_hh_vbf_hbb_htt_m2000", id=25123, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1304,8 +1312,8 @@ name="radion_hh_vbf_hbb_htt_m2500", id=25124, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1313,8 +1321,8 @@ name="radion_hh_vbf_hbb_htt_m3000", id=25125, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: radion_hh_vbf_hbb_htt.get_xsec(13), + 13.6: radion_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1327,15 +1335,18 @@ name="graviton_hh_vbf_hbb_htt", id=26100, label=rf"{graviton_hh_vbf.label} $\rightarrow bb\tau\tau$", - xsecs={13: graviton_hh_vbf.get_xsec(13) * const.br_hh.bbtt}, # TODO + xsecs={ + 13: graviton_hh_vbf.get_xsec(13) * const.br_hh.bbtt, + 13.6: graviton_hh_vbf.get_xsec(13.6) * const.br_hh.bbtt, + }, ) graviton_hh_vbf_hbb_htt_m250 = graviton_hh_vbf_hbb_htt.add_process( name="graviton_hh_vbf_hbb_htt_m250", id=26101, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1343,8 +1354,8 @@ name="graviton_hh_vbf_hbb_htt_m260", id=26102, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1352,8 +1363,8 @@ name="graviton_hh_vbf_hbb_htt_m270", id=26103, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1361,8 +1372,8 @@ name="graviton_hh_vbf_hbb_htt_m280", id=26104, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1370,8 +1381,8 @@ name="graviton_hh_vbf_hbb_htt_m300", id=26105, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1379,8 +1390,8 @@ name="graviton_hh_vbf_hbb_htt_m320", id=26106, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1388,8 +1399,8 @@ name="graviton_hh_vbf_hbb_htt_m350", id=26107, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1397,8 +1408,8 @@ name="graviton_hh_vbf_hbb_htt_m400", id=26108, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1406,8 +1417,8 @@ name="graviton_hh_vbf_hbb_htt_m450", id=26109, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1415,8 +1426,8 @@ name="graviton_hh_vbf_hbb_htt_m500", id=26110, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1424,8 +1435,8 @@ name="graviton_hh_vbf_hbb_htt_m550", id=26111, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1433,8 +1444,8 @@ name="graviton_hh_vbf_hbb_htt_m600", id=26112, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1442,8 +1453,8 @@ name="graviton_hh_vbf_hbb_htt_m650", id=26113, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1451,8 +1462,8 @@ name="graviton_hh_vbf_hbb_htt_m700", id=26114, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1460,8 +1471,8 @@ name="graviton_hh_vbf_hbb_htt_m750", id=26115, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1469,8 +1480,8 @@ name="graviton_hh_vbf_hbb_htt_m800", id=26116, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1478,8 +1489,8 @@ name="graviton_hh_vbf_hbb_htt_m850", id=26117, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1487,8 +1498,8 @@ name="graviton_hh_vbf_hbb_htt_m900", id=26118, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1496,8 +1507,8 @@ name="graviton_hh_vbf_hbb_htt_m1000", id=26119, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1505,8 +1516,8 @@ name="graviton_hh_vbf_hbb_htt_m1250", id=26120, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1514,8 +1525,8 @@ name="graviton_hh_vbf_hbb_htt_m1500", id=26121, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1523,8 +1534,8 @@ name="graviton_hh_vbf_hbb_htt_m1750", id=26122, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1532,8 +1543,8 @@ name="graviton_hh_vbf_hbb_htt_m2000", id=26123, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1541,8 +1552,8 @@ name="graviton_hh_vbf_hbb_htt_m2500", id=26124, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) @@ -1550,7 +1561,7 @@ name="graviton_hh_vbf_hbb_htt_m3000", id=26125, xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO + 13: graviton_hh_vbf_hbb_htt.get_xsec(13), + 13.6: graviton_hh_vbf_hbb_htt.get_xsec(13.6), }, ) From 67b63a3202b99654371861c950abbf50b0f99b59 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 17 Jun 2024 16:30:19 +0200 Subject: [PATCH 27/42] replace xsdb values by 5M statistics GenXSecAnalyzer ones --- cmsdb/processes/ewk.py | 66 +++++++++++++++++------------------------- cmsdb/processes/top.py | 16 ++++------ 2 files changed, 32 insertions(+), 50 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 5639c4a0..b90b8e26 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -74,19 +74,15 @@ # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa dy_m50toinf_lo_13TeV_xsec = Number(5395.0, {"tot": 1.858}) -# 13.6 TeV LO and NLO cross sections are based on the XSDB -# TODO: recalculate in genxsecanalyzer -# https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-4to10_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_m4to10_nlo_13p6TeV_xsec = Number(141500, {"tot": 301.9}) -# https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-10to50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_m10to50_nlo_13p6TeV_xsec = Number(20950.0, {"tot": 183.5}) -# https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa -dy_m50toinf_nlo_13p6TeV_xsec = Number(6688.0, {"tot": 83.99}) - -# https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-4Jets_MLL-10to50_TuneCP5_13p6TeV_madgraphMLM-pythia8 # noqa -dy_m10to50_lo_13p6TeV_xsec = Number(17380, {"tot": 26.57}) -# https://xsdb-temp.app.cern.ch/xsdb/?columns=37814272¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-4Jets_MLL-50_TuneCP5_13p6TeV_madgraphMLM-pythia8 # noqa -dy_m50toinf_lo_13p6TeV_xsec = Number(5467, {"tot": 13.22}) +# 13.6 TeV LO and NLO cross sections are based on GenXSecAnalyzer with CMSSW_13_0_13 +# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c Run3Summer22MiniAODv4-130X_mcRun3_2022_realistic_v5-v2 -n 5000000 # noqa +# or -c Run3Summer22MiniAODv4-130X_mcRun3_2022_realistic_v5-v1 when needed +dy_m4to10_nlo_13p6TeV_xsec = Number(141600, {"tot": 79.81}) # xsdb: Number(141500, {"tot": 301.9}) +dy_m10to50_nlo_13p6TeV_xsec = Number(21170.0, {"tot": 18.38}) # xsdb: Number(20950.0, {"tot": 183.5}) +dy_m50toinf_nlo_13p6TeV_xsec = Number(6728.0, {"tot": 6.981}) # xsdb: Number(6688.0, {"tot": 83.99}) + +dy_m10to50_lo_13p6TeV_xsec = Number(17410, {"tot": 2.393}) +dy_m50toinf_lo_13p6TeV_xsec = Number(5450, {"tot": 1.872}) dy_m50toinf = dy.add_process( name="dy_m50toinf", @@ -729,11 +725,9 @@ label="ZZ", xsecs={ 13: Number(15.99, {"scale": (0.037j, 0.026j)}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DZZ_TuneCP5_13p6TeV_pythia8 # noqa - 13.6: Number(12.75, { - "tot": 0.0649, + # 13.6 from GenXSecAnalyzer: + 13.6: Number(12.84, { + "tot": 0.006035, # xsdb: Number(12.75, {"tot": 0.0649}) }), }, ) @@ -822,11 +816,9 @@ # https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat13TeV?rev=28 # shows a permille difference in the values calculated directly and the ones added from w+ and w- 13: wp_z_xsec[13] + wm_z_xsec[13], - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWZ_TuneCP5_13p6TeV_pythia8 # noqa - 13.6: Number(29.1, { - "tot": 0.1318, + # 13.6 from GenXSecAnalyzer: + 13.6: Number(29.17, { + "tot": 0.005941, # xsdb: Number(29.1, {"tot": 0.1318}), }), }, ) @@ -882,11 +874,9 @@ label="WW", xsecs={ 13: Number(118.7, {"scale": (0.025j, 0.022j)}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWW_TuneCP5_13p6TeV_pythia8 # noqa - 13.6: Number(80.23, { - "tot": 0.3733, + # 13.6 from GenXSecAnalyzer: + 13.6: Number(80.22, { + "tot": 0.01677, # xsdb: Number(80.23, {"tot": 0.3733}) }), }, ) @@ -959,10 +949,9 @@ id=9100, xsecs={ 13: Number(0.01476, {"tot": 2.347 * 10**(-6)}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DZZZ_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + # same value as xsdb obtained 13.6: Number(0.01591, { "tot": 0.000007828, }), @@ -978,10 +967,9 @@ id=9200, xsecs={ 13: Number(0.05709, {"tot": 6.213 * 10**(-5)}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWZZ_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + # same value as xsdb obtained 13.6: Number(0.06206, { "tot": 0.00003689, }), @@ -997,10 +985,9 @@ id=9300, xsecs={ 13: Number(0.1707, {"tot": 0.0001757}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWWZ_4F_TuneCP5_13p6TeV_amcatnlo-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + # same value as xsdb obtained 13.6: Number(0.1851, { "tot": 0.00009482, }), @@ -1016,10 +1003,9 @@ id=9400, xsecs={ 13: Number(0.2158, {"tot": 0.0002479}), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DWWW_4F_TuneCP5_13p6TeV_amcatnlo-madspin-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf + # same value as xsdb obtained 13.6: Number(0.2328, { "tot": 0.0001247, }), diff --git a/cmsdb/processes/top.py b/cmsdb/processes/top.py index 77c2e656..8968ae66 100644 --- a/cmsdb/processes/top.py +++ b/cmsdb/processes/top.py @@ -446,12 +446,10 @@ "scale": (0.052j, 0.090j), "pdf": 0.026j, }), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DTTZZ_TuneCP5_13p6TeV_madgraph-madspin-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf - 13.6: Number(0.001579, { - "tot": 0.000003248, + 13.6: Number(0.001562, { + "tot": 0.0000003675, # xsdb Number(0.001579, {"tot": 0.000003248}) }), }, ) @@ -475,12 +473,10 @@ "scale": (0.332j, 0.231j), "pdf": 0.030j, }), - # 13.6 from GenXSecAnalyzer: TODO - # in the meantime, from xsdb: - # https://xsdb-temp.app.cern.ch/xsdb/?columns=67108863¤tPage=0&pageSize=10&searchQuery=DAS%3DTTWW_TuneCP5_13p6TeV_madgraph-madspin-pythia8 # noqa + # 13.6 from GenXSecAnalyzer: # similar values also found in http://cms.cern.ch/iCMS/jsp/openfile.jsp?tp=draft&files=AN2023_179_v6.pdf - 13.6: Number(0.008203, { - "tot": 0.00001404, + 13.6: Number(0.008165, { + "tot": 0.000002113, # xsdb Number(0.008203, {"tot": 0.00001404}) }), }, ) From a7937212791bef75ab35f7d3fdf7f414917b8418 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 1 Jul 2024 13:59:48 +0200 Subject: [PATCH 28/42] correct name generator hhh sample --- cmsdb/campaigns/run3_2022_postEE_nano_v12/hhh4b2tau.py | 2 +- cmsdb/campaigns/run3_2022_preEE_nano_v12/hhh4b2tau.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/hhh4b2tau.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/hhh4b2tau.py index 858d8819..e23cb2d5 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/hhh4b2tau.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/hhh4b2tau.py @@ -4,7 +4,7 @@ # SM sample cpn.add_dataset( - name="hhh4b2tau_c3_0_d4_0_madgraph", + name="hhh4b2tau_c3_0_d4_0_amcatnlo", id=14792106, processes=[procs.hhh_ggf_4b2tau], keys=[ diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/hhh4b2tau.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/hhh4b2tau.py index 14a2ef9b..effff9d9 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/hhh4b2tau.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/hhh4b2tau.py @@ -4,7 +4,7 @@ # SM sample cpn.add_dataset( - name="hhh4b2tau_c3_0_d4_0_madgraph", + name="hhh4b2tau_c3_0_d4_0_amcatnlo", id=14791536, processes=[procs.hhh_ggf_4b2tau], keys=[ From 3b8dfa31a9adc2b078df72bbe0f639533361a879 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 1 Jul 2024 14:06:27 +0200 Subject: [PATCH 29/42] put names auxiliary variables to lower case --- cmsdb/processes/ewk.py | 86 +++++++++++++++++++++--------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index b90b8e26..5cc3659a 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -67,22 +67,22 @@ # NLO cross section, based on GenXSecAnalyzer for # DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_m50toinf_nlo_13TeV_xsec = Number(6421.0, {"tot": 11.25}) +dy_m50toinf_nlo_13tev_xsec = Number(6421.0, {"tot": 11.25}) # if needed for scaling from LO to NNLO: # LO cross section, based on GenXSecAnalyzer for DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -dy_m50toinf_lo_13TeV_xsec = Number(5395.0, {"tot": 1.858}) +dy_m50toinf_lo_13tev_xsec = Number(5395.0, {"tot": 1.858}) # 13.6 TeV LO and NLO cross sections are based on GenXSecAnalyzer with CMSSW_13_0_13 # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c Run3Summer22MiniAODv4-130X_mcRun3_2022_realistic_v5-v2 -n 5000000 # noqa # or -c Run3Summer22MiniAODv4-130X_mcRun3_2022_realistic_v5-v1 when needed -dy_m4to10_nlo_13p6TeV_xsec = Number(141600, {"tot": 79.81}) # xsdb: Number(141500, {"tot": 301.9}) -dy_m10to50_nlo_13p6TeV_xsec = Number(21170.0, {"tot": 18.38}) # xsdb: Number(20950.0, {"tot": 183.5}) -dy_m50toinf_nlo_13p6TeV_xsec = Number(6728.0, {"tot": 6.981}) # xsdb: Number(6688.0, {"tot": 83.99}) +dy_m4to10_nlo_13p6tev_xsec = Number(141600, {"tot": 79.81}) # xsdb: Number(141500, {"tot": 301.9}) +dy_m10to50_nlo_13p6tev_xsec = Number(21170.0, {"tot": 18.38}) # xsdb: Number(20950.0, {"tot": 183.5}) +dy_m50toinf_nlo_13p6tev_xsec = Number(6728.0, {"tot": 6.981}) # xsdb: Number(6688.0, {"tot": 83.99}) -dy_m10to50_lo_13p6TeV_xsec = Number(17410, {"tot": 2.393}) -dy_m50toinf_lo_13p6TeV_xsec = Number(5450, {"tot": 1.872}) +dy_m10to50_lo_13p6tev_xsec = Number(17410, {"tot": 2.393}) +dy_m50toinf_lo_13p6tev_xsec = Number(5450, {"tot": 1.872}) dy_m50toinf = dy.add_process( name="dy_m50toinf", @@ -100,13 +100,13 @@ }, ) -dy_k_factor_LO_to_NNLO = { - 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_lo_13TeV_xsec, - 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_lo_13p6TeV_xsec, +dy_k_factor_lo_to_nnlo = { + 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_lo_13tev_xsec, + 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_lo_13p6tev_xsec, } -dy_k_factor_NLO_to_NNLO = { - 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_nlo_13TeV_xsec, - 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_nlo_13p6TeV_xsec, +dy_k_factor_nlo_to_nnlo = { + 13: dy_m50toinf.get_xsec(13) / dy_m50toinf_nlo_13tev_xsec, + 13.6: dy_m50toinf.get_xsec(13.6) / dy_m50toinf_nlo_13p6tev_xsec, } @@ -115,7 +115,7 @@ id=51002, xsecs={ 13: Number(0.1), # TODO - 13.6: dy_m4to10_nlo_13p6TeV_xsec * dy_k_factor_NLO_to_NNLO[13.6], + 13.6: dy_m4to10_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, ) dy_m10to50 = dy.add_process( @@ -123,7 +123,7 @@ id=51001, xsecs={ 13: Number(0.1), # TODO - 13.6: dy_m10to50_nlo_13p6TeV_xsec * dy_k_factor_NLO_to_NNLO[13.6], + 13.6: dy_m10to50_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, ) @@ -142,7 +142,7 @@ id=51110, xsecs={ # NLO xsec taken from https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa - 13.6: Number(5378, {"tot": 8.007}) * dy_k_factor_NLO_to_NNLO[13.6], + 13.6: Number(5378, {"tot": 8.007}) * dy_k_factor_nlo_to_nnlo[13.6], }, ) @@ -152,9 +152,9 @@ xsecs={ 13: Number(926.8, { "tot": 0.3597, - }) * dy_k_factor_LO_to_NNLO[13], - # 13.6: Number(1017, {"tot": 6.264}) * dy_k_factor_NLO_to_NNLO[13.6], - 13.6: Number(973.1, {"tot": 2.613}) * dy_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_lo_to_nnlo[13], + # 13.6: Number(1017, {"tot": 6.264}) * dy_k_factor_nlo_to_nnlo[13.6], + 13.6: Number(973.1, {"tot": 2.613}) * dy_k_factor_lo_to_nnlo[13.6], }, ) @@ -164,9 +164,9 @@ xsecs={ 13: Number(294.5, { "tot": 0.1223, - }) * dy_k_factor_LO_to_NNLO[13], - # 13.6: Number(385.5, {"tot": 3.858}) * dy_k_factor_NLO_to_NNLO[13.6], - 13.6: Number(312.4, {"tot": 0.915}) * dy_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_lo_to_nnlo[13], + # 13.6: Number(385.5, {"tot": 3.858}) * dy_k_factor_nlo_to_nnlo[13.6], + 13.6: Number(312.4, {"tot": 0.915}) * dy_k_factor_lo_to_nnlo[13.6], }, ) @@ -176,8 +176,8 @@ xsecs={ 13: Number(86.53, { "tot": 0.03853, - }) * dy_k_factor_LO_to_NNLO[13], - 13.6: Number(93.93, {"tot": 0.2858}) * dy_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_lo_to_nnlo[13], + 13.6: Number(93.93, {"tot": 0.2858}) * dy_k_factor_lo_to_nnlo[13.6], }, ) @@ -187,8 +187,8 @@ xsecs={ 13: Number(41.21, { "tot": 0.02392, - }) * dy_k_factor_LO_to_NNLO[13], - 13.6: Number(45.43, {"tot": 0.1393}) * dy_k_factor_LO_to_NNLO[13.6], + }) * dy_k_factor_lo_to_nnlo[13], + 13.6: Number(45.43, {"tot": 0.1393}) * dy_k_factor_lo_to_nnlo[13.6], }, ) @@ -234,7 +234,7 @@ name="dy_m50toinf_ht70to100", id=51121, xsecs={ - 13: Number(139.9, {"tot": 0.5747}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(139.9, {"tot": 0.5747}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -242,7 +242,7 @@ name="dy_m50toinf_ht100to200", id=51122, xsecs={ - 13: Number(140.1, {"tot": 0.5875}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(140.1, {"tot": 0.5875}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -250,7 +250,7 @@ name="dy_m50toinf_ht200to400", id=51123, xsecs={ - 13: Number(38.38, {"tot": 0.01628}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(38.38, {"tot": 0.01628}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -258,7 +258,7 @@ name="dy_m50toinf_ht400to600", id=51124, xsecs={ - 13: Number(5.212, {"tot": 0.003149}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(5.212, {"tot": 0.003149}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -266,7 +266,7 @@ name="dy_m50toinf_ht600to800", id=51125, xsecs={ - 13: Number(1.266, {"tot": 0.0007976}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(1.266, {"tot": 0.0007976}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -274,7 +274,7 @@ name="dy_m50toinf_ht800to1200", id=51126, xsecs={ - 13: Number(0.5684, {"tot": 0.0003515}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(0.5684, {"tot": 0.0003515}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -282,7 +282,7 @@ name="dy_m50toinf_ht1200to2500", id=51127, xsecs={ - 13: Number(0.1332, {"tot": 0.00009084}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(0.1332, {"tot": 0.00009084}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -290,7 +290,7 @@ name="dy_m50toinf_ht2500toinf", id=51128, xsecs={ - 13: Number(0.002977, {"tot": 0.000003412}) * dy_k_factor_LO_to_NNLO[13], + 13: Number(0.002977, {"tot": 0.000003412}) * dy_k_factor_lo_to_nnlo[13], }, ) @@ -586,7 +586,7 @@ # for WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8 (Summer20UL16, LO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -w_lnu_lo_13TeV_xsec = Number(54070.0, {"tot": 18.32}) +w_lnu_lo_13tev_xsec = Number(54070.0, {"tot": 18.32}) # LO cross sections, scaled to NNLO @@ -597,7 +597,7 @@ name="w_lnu_ht70to100", id=6110, xsecs={ - 13: Number(1270.0, {"tot": 0.5259}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(1270.0, {"tot": 0.5259}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -605,7 +605,7 @@ name="w_lnu_ht100to200", id=6120, xsecs={ - 13: Number(1254.0, {"tot": 0.5274}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(1254.0, {"tot": 0.5274}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -613,7 +613,7 @@ name="w_lnu_ht200to400", id=6130, xsecs={ - 13: Number(336.6, {"tot": 0.1528}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(336.6, {"tot": 0.1528}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -621,7 +621,7 @@ name="w_lnu_ht400to600", id=6140, xsecs={ - 13: Number(45.21, {"tot": 0.02966}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(45.21, {"tot": 0.02966}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -629,7 +629,7 @@ name="w_lnu_ht600to800", id=6150, xsecs={ - 13: Number(10.98, {"tot": 0.006997}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(10.98, {"tot": 0.006997}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -637,7 +637,7 @@ name="w_lnu_ht800to1200", id=6160, xsecs={ - 13: Number(4.927, {"tot": 0.003229}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(4.927, {"tot": 0.003229}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -645,7 +645,7 @@ name="w_lnu_ht1200to2500", id=6170, xsecs={ - 13: Number(1.157, {"tot": 0.0007663}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(1.157, {"tot": 0.0007663}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) @@ -655,7 +655,7 @@ name="w_lnu_ht2500toinf", id=6180, xsecs={ - 13: Number(0.02624, {"tot": 0.00002981}) * w_lnu.get_xsec(13) / w_lnu_lo_13TeV_xsec, + 13: Number(0.02624, {"tot": 0.00002981}) * w_lnu.get_xsec(13) / w_lnu_lo_13tev_xsec, }, ) From ec9878b9f6c7797231c055d55e9b5e08259f44b3 Mon Sep 17 00:00:00 2001 From: Nathan Prouvost Date: Mon, 1 Jul 2024 15:28:51 +0200 Subject: [PATCH 30/42] add 4f to dataset name when in name sample --- cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py | 6 +++--- cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/st.py | 4 ++-- cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py | 10 +++++----- cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py | 4 ++-- cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py | 4 ++-- cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py | 4 ++-- cmsdb/campaigns/run2_2017_nano_v9/ewk.py | 4 ++-- cmsdb/campaigns/run2_2017_nano_v9/top.py | 8 ++++---- cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py | 14 +++++++------- cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py | 4 ++-- cmsdb/campaigns/run3_2022_postEE_nano_v11/top.py | 4 ++-- cmsdb/campaigns/run3_2022_postEE_nano_v12/top.py | 4 ++-- .../campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py | 4 ++-- .../campaigns/run3_2022_preEE_nano_uhh_v12/top.py | 4 ++-- cmsdb/campaigns/run3_2022_preEE_nano_v11/top.py | 4 ++-- cmsdb/campaigns/run3_2022_preEE_nano_v12/top.py | 4 ++-- 16 files changed, 43 insertions(+), 43 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py index e50a4f09..fa5ef3b9 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/ewk.py @@ -213,7 +213,7 @@ ) cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14215136, processes=[procs.www], keys=[ @@ -224,7 +224,7 @@ ) # cpn.add_dataset( -# name="www_ext_amcatnlo", +# name="www_4f_ext_amcatnlo", # id=14215136, # processes=[procs.www], # keys=[ @@ -247,7 +247,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14214960, processes=[procs.wwz], keys=[ diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/st.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/st.py index 3f0305c7..a12ba99b 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/st.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/st.py @@ -38,7 +38,7 @@ # ST_t-channel_antitop cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14225486, processes=[procs.st_tchannel_tbar], info=dict( @@ -83,7 +83,7 @@ # ST_t-channel_top cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14224840, processes=[procs.st_tchannel_t], info=dict( diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py index 8a275a87..6d80307e 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py @@ -514,7 +514,7 @@ ) cpn.add_dataset( - name="wz_wlnu_zqq_amcatnlo", + name="wz_wlnu_zqq_4f_amcatnlo", id=14373428, processes=[procs.wz_wlnu_zqq], keys=[ @@ -537,7 +537,7 @@ ) cpn.add_dataset( - name="ww_sl_amcatnlo", + name="ww_sl_4f_amcatnlo", id=14373365, processes=[procs.ww_sl], keys=[ @@ -559,7 +559,7 @@ ) cpn.add_dataset( - name="ww_fh_amcatnlo", + name="ww_fh_4f_amcatnlo", id=14373147, processes=[procs.ww_fh], keys=[ @@ -598,7 +598,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14213247, processes=[procs.wwz], keys=[ @@ -610,7 +610,7 @@ ) cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14212167, processes=[procs.www], keys=[ diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py index ee5c3707..4df77e04 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/top.py @@ -314,7 +314,7 @@ ) cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14223742, processes=[procs.st_tchannel_t], info=dict( @@ -382,7 +382,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14225640, processes=[procs.st_tchannel_tbar], info=dict( diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py index 3004c953..83e45e3a 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py @@ -553,7 +553,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14195642, processes=[procs.wwz], keys=[ @@ -564,7 +564,7 @@ ) cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14241535, processes=[procs.www], keys=[ diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py index 6bf64347..62e3bd12 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/top.py @@ -129,7 +129,7 @@ # cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14294738, processes=[procs.st_tchannel_t], keys=[ @@ -140,7 +140,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14296512, processes=[procs.st_tchannel_tbar], keys=[ diff --git a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py index b4eb8404..68f362dd 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py @@ -472,7 +472,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14231348, processes=[procs.wwz], keys=[ @@ -484,7 +484,7 @@ ) cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14231501, processes=[procs.www], keys=[ diff --git a/cmsdb/campaigns/run2_2017_nano_v9/top.py b/cmsdb/campaigns/run2_2017_nano_v9/top.py index 62458ac5..ec634549 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/top.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/top.py @@ -304,7 +304,7 @@ # cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14296960, processes=[procs.st_tchannel_t], info=dict( @@ -361,7 +361,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14296742, processes=[procs.st_tchannel_tbar], info=dict( @@ -462,7 +462,7 @@ ) cpn.add_dataset( - name="st_schannel_lep_amcatnlo", + name="st_schannel_lep_4f_amcatnlo", id=14235125, processes=[procs.st_schannel_lep], info=dict( @@ -491,7 +491,7 @@ ) cpn.add_dataset( - name="st_schannel_had_amcatnlo", + name="st_schannel_had_4f_amcatnlo", id=14378997, processes=[procs.st_schannel_had], keys=[ diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py index 08af873f..fa732846 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py @@ -639,7 +639,7 @@ ) cpn.add_dataset( - name="wz_wlnu_zqq_amcatnlo", + name="wz_wlnu_zqq_4f_amcatnlo", id=14373352, processes=[procs.wz_wlnu_zqq], keys=[ @@ -662,7 +662,7 @@ ) cpn.add_dataset( - name="ww_sl_pythia", + name="ww_sl_4f_pythia", id=14372963, processes=[procs.ww_sl], keys=[ @@ -684,7 +684,7 @@ ) cpn.add_dataset( - name="ww_fh_amcatnlo", + name="ww_fh_4f_amcatnlo", id=14373134, processes=[procs.ww_fh], keys=[ @@ -743,7 +743,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14195619, processes=[procs.wwz], keys=[ @@ -754,7 +754,7 @@ ) cpn.add_dataset( - name="wwz_ext_amcatnlo", + name="wwz_4f_ext_amcatnlo", id=14266674, processes=[procs.wwz], keys=[ @@ -765,7 +765,7 @@ ) cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14195624, processes=[procs.www], keys=[ @@ -776,7 +776,7 @@ ) cpn.add_dataset( - name="www_ext_amcatnlo", + name="www_4f_ext_amcatnlo", id=14266489, processes=[procs.www], keys=[ diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py index 06e54588..3dc9183c 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/top.py @@ -298,7 +298,7 @@ # single top cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14291475, processes=[procs.st_tchannel_t], info=dict( @@ -341,7 +341,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14294704, processes=[procs.st_tchannel_tbar], info=dict( diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v11/top.py b/cmsdb/campaigns/run3_2022_postEE_nano_v11/top.py index 99d75d13..b2679cd1 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v11/top.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v11/top.py @@ -245,7 +245,7 @@ # t-channel (top) cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14636179, is_data=False, processes=[procs.st_tchannel_t], @@ -262,7 +262,7 @@ # t-channel (anti-top) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14625205, is_data=False, processes=[procs.st_tchannel_tbar], diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/top.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/top.py index 5fc94319..3d2af3bd 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/top.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/top.py @@ -348,7 +348,7 @@ cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14800033, processes=[procs.st_tchannel_t], info=dict( @@ -362,7 +362,7 @@ ), ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14805343, processes=[procs.st_tchannel_tbar], info=dict( diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index 922f83e3..8d0c1679 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -154,7 +154,7 @@ # cpn.add_dataset( - name="www_amcatnlo", + name="www_4f_amcatnlo", id=14797810, processes=[procs.www], keys=[ @@ -170,7 +170,7 @@ ) cpn.add_dataset( - name="wwz_amcatnlo", + name="wwz_4f_amcatnlo", id=14792468, processes=[procs.wwz], keys=[ diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index ceb7caa7..d12c92c9 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -270,7 +270,7 @@ # cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14803988, processes=[procs.st_tchannel_tbar], keys=[ @@ -286,7 +286,7 @@ ) cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14801389, processes=[procs.st_tchannel_t], keys=[ diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v11/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_v11/top.py index 578908bc..90988e1d 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v11/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v11/top.py @@ -247,7 +247,7 @@ # t-channel (top) cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14635077, is_data=False, processes=[procs.st_tchannel_t], @@ -264,7 +264,7 @@ # t-channel (anti-top) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14619151, is_data=False, processes=[procs.st_tchannel_tbar], diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/top.py index 54a41561..6959acd8 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/top.py @@ -398,7 +398,7 @@ cpn.add_dataset( - name="st_tchannel_t_powheg", + name="st_tchannel_t_4f_powheg", id=14803181, processes=[procs.st_tchannel_t], keys=[ @@ -409,7 +409,7 @@ ) cpn.add_dataset( - name="st_tchannel_tbar_powheg", + name="st_tchannel_tbar_4f_powheg", id=14808106, processes=[procs.st_tchannel_tbar], keys=[ From b0987d2f1c5dde5f08c6c6c6cff49536d584d937 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Wed, 3 Jul 2024 13:10:52 +0200 Subject: [PATCH 31/42] Typo. --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py index 3e9f59cc..b2eadc71 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/data.py @@ -99,7 +99,6 @@ # Tau # - cpn.add_dataset( name="data_tau_c", id=14784152, From ca5abce2996e4180a6c11171ad15c7d7a21f86f3 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Wed, 3 Jul 2024 14:14:57 +0200 Subject: [PATCH 32/42] Add missing imports. --- cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index caafef64..8f9600d2 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -39,4 +39,6 @@ # trailing imports to load datasets import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.data # noqa import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.top # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.ewk # noqa +import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.higgs # noqa import cmsdb.campaigns.run3_2022_preEE_nano_uhh_v12.hh2bbtautau # noqa From b9a9cd10947c207eaa7b1f88c8827082ccd0571e Mon Sep 17 00:00:00 2001 From: Anas <103462379+haddadanas@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:29:38 +0200 Subject: [PATCH 33/42] added ttz (#52) * added ttz * adjusted the process * trailing comma * removed wrong comment --- .../run3_2022_preEE_nano_uhh_v12/top.py | 21 ++++++++++++++++++- cmsdb/processes/top.py | 8 ++++++- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py index d12c92c9..8df0e246 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/top.py @@ -226,9 +226,28 @@ ) # -# ttbar + 1 vector boson -> not available +# ttbar + 1 vector boson # +# ttW not available + +cpn.add_dataset( + name="ttz_zqq_amcatnlo", + id=14796231, + processes=[procs.ttz_zqq], + keys=[ + "/TTZ-ZtoQQ-1Jets_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=376_687, + aux={ + "merging_factors": { + "nominal": 26, + }, + }, +) + + # # ttbar + 2 vector boson # diff --git a/cmsdb/processes/top.py b/cmsdb/processes/top.py index 8968ae66..667a55ce 100644 --- a/cmsdb/processes/top.py +++ b/cmsdb/processes/top.py @@ -17,7 +17,7 @@ "st_schannel_t", "st_schannel_t_lep", "st_schannel_t_had", "st_schannel_tbar", "st_schannel_tbar_lep", "st_schannel_tbar_had", "ttv", - "ttz", "ttz_zlep_m10toinf", + "ttz", "ttz_zqq", "ttz_zlep_m10toinf", "ttw", "ttw_wlnu", "ttw_wqq", "ttvv", "ttzz", "ttwz", "ttww", @@ -390,6 +390,12 @@ }, ) +ttz_zqq = ttz.add_process( + name="ttz_zqq", + id=3120, + xsecs=multiply_xsecs(ttz, const.br_z.qq), +) + ttw = ttv.add_process( name="ttw", id=3200, From 0ec04eabf39709f16ca64307a16103c4a66fac16 Mon Sep 17 00:00:00 2001 From: Anas <103462379+haddadanas@users.noreply.github.com> Date: Wed, 10 Jul 2024 16:01:38 +0200 Subject: [PATCH 34/42] added DY binned datasets (#53) * added DY binned datasets * added missing process * small fixes --- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 212 ++++++++++++++++++ cmsdb/processes/ewk.py | 72 +++++- 2 files changed, 283 insertions(+), 1 deletion(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index 8d0c1679..48504f4a 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -67,6 +67,218 @@ }, ) +# jet-binned DY + +cpn.add_dataset( + name="dy_m50toinf_0j_amcatnlo", + id=14791239, + processes=[procs.dy_m50toinf_0j], + keys=[ + "/DYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=91, + n_events=105_125_608, + aux={ + "merging_factors": { + "nominal": 19, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_1j_amcatnlo", + id=14791368, + processes=[procs.dy_m50toinf_1j], + keys=[ + "/DYto2L-2Jets_MLL-50_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=114, + n_events=99_869_557, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_amcatnlo", + id=14790842, + processes=[procs.dy_m50toinf_2j], + keys=[ + "/DYto2L-2Jets_MLL-50_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=102, + n_events=75_705_760, + aux={ + "merging_factors": { + "nominal": 13, + }, + }, +) + +# jet- and pT-binned DY + +cpn.add_dataset( + name="dy_m50toinf_1j_pt40to100_amcatnlo", + id=14825012, + processes=[procs.dy_m50toinf_1j_pt40to100], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-40to100_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=56, + n_events=50_272_820, + aux={ + "merging_factors": { + "nominal": 18, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_1j_pt100to200_amcatnlo", + id=14824884, + processes=[procs.dy_m50toinf_1j_pt100to200], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-100to200_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=26, + n_events=18_682_106, + aux={ + "merging_factors": { + "nominal": 18, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_1j_pt200to400_amcatnlo", + id=14826002, + processes=[procs.dy_m50toinf_1j_pt200to400], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-200to400_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=4, + n_events=1_939_721, + aux={ + "merging_factors": { + "nominal": 16, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_1j_pt400to600_amcatnlo", + id=14822087, + processes=[procs.dy_m50toinf_1j_pt400to600], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-400to600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=1, + n_events=503_786, + aux={ + "merging_factors": { + "nominal": 28, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_1j_pt600toinf_amcatnlo", + id=14830407, + processes=[procs.dy_m50toinf_1j_pt600toinf], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-600_1J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v2/NANOAODSIM", # noqa + ], + n_files=1, + n_events=508_646, + aux={ + "merging_factors": { + "nominal": 28, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_pt40to100_amcatnlo", + id=14822136, + processes=[procs.dy_m50toinf_2j_pt40to100], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-40to100_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=28, + n_events=19_307_377, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_pt100to200_amcatnlo", + id=14825259, + processes=[procs.dy_m50toinf_2j_pt100to200], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-100to200_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=32, + n_events=19_139_796, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_pt200to400_amcatnlo", + id=14824840, + processes=[procs.dy_m50toinf_2j_pt200to400], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-200to400_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=8, + n_events=3_651_560, + aux={ + "merging_factors": { + "nominal": 15, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_pt400to600_amcatnlo", + id=14822163, + processes=[procs.dy_m50toinf_2j_pt400to600], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-400to600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=1, + n_events=488_707, + aux={ + "merging_factors": { + "nominal": 35, + }, + }, +) + +cpn.add_dataset( + name="dy_m50toinf_2j_pt600toinf_amcatnlo", + id=14825895, + processes=[procs.dy_m50toinf_2j_pt600toinf], + keys=[ + "/DYto2L-2Jets_MLL-50_PTLL-600_2J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8/Run3Summer22MiniAODv4_NanoAODv12UHH-130X_mcRun3_2022_realistic_v5-v1/NANOAODSIM", # noqa + ], + n_files=1, + n_events=474_576, + aux={ + "merging_factors": { + "nominal": 39, + }, + }, +) + # # W boson production # diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 5cc3659a..96c5ddcc 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -8,7 +8,12 @@ "dy", "dy_m4to10", "dy_m10to50", - "dy_m50toinf", "dy_m50toinf_0j", "dy_m50toinf_1j", "dy_m50toinf_2j", "dy_m50toinf_3j", "dy_m50toinf_4j", + "dy_m50toinf", "dy_m50toinf_0j", "dy_m50toinf_1j", "dy_m50toinf_2j", "dy_m50toinf_ge3j", + "dy_m50toinf_3j", "dy_m50toinf_4j", + "dy_m50toinf_1j_pt0to40", "dy_m50toinf_1j_pt40to100", "dy_m50toinf_1j_pt100to200", "dy_m50toinf_1j_pt200to400", + "dy_m50toinf_1j_pt400to600", "dy_m50toinf_1j_pt600toinf", + "dy_m50toinf_2j_pt0to40", "dy_m50toinf_2j_pt40to100", "dy_m50toinf_2j_pt100to200", "dy_m50toinf_2j_pt200to400", + "dy_m50toinf_2j_pt400to600", "dy_m50toinf_2j_pt600toinf", "dy_0j", "dy_1j", "dy_2j", "dy_m50toinf_ht70to100", "dy_m50toinf_ht100to200", "dy_m50toinf_ht200to400", "dy_m50toinf_ht400to600", "dy_m50toinf_ht600to800", "dy_m50toinf_ht800to1200", @@ -192,6 +197,11 @@ }, ) +dy_m50toinf_ge3j = dy_m50toinf.add_process( + name="dy_m50toinf_ge3j", + id=51115, +) + # based on GenXSecAnalyzer # for DYJetsToLL_{i}J_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) # using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa @@ -225,6 +235,66 @@ }, ) +dy_m50toinf_1j_pt0to40 = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt0to40", + id=511110, +) + +dy_m50toinf_1j_pt40to100 = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt40to100", + id=511111, +) + +dy_m50toinf_1j_pt100to200 = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt100to200", + id=511112, +) + +dy_m50toinf_1j_pt200to400 = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt200to400", + id=511113, +) + +dy_m50toinf_1j_pt400to600 = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt400to600", + id=511114, +) + +dy_m50toinf_1j_pt600toinf = dy_m50toinf_1j.add_process( + name="dy_m50toinf_1j_pt600toinf", + id=511115, +) + +dy_m50toinf_2j_pt0to40 = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt0to40", + id=511120, +) + +dy_m50toinf_2j_pt40to100 = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt40to100", + id=511121, +) + +dy_m50toinf_2j_pt100to200 = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt100to200", + id=511122, +) + +dy_m50toinf_2j_pt200to400 = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt200to400", + id=511123, +) + +dy_m50toinf_2j_pt400to600 = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt400to600", + id=511124, +) + +dy_m50toinf_2j_pt600toinf = dy_m50toinf_2j.add_process( + name="dy_m50toinf_2j_pt600toinf", + id=511125, +) + # LO cross sections, scaled to NNLO # based on GenXSecAnalyzer From d3977b16243b2585fedd93a4aa7f359aa9443b44 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Wed, 10 Jul 2024 18:43:59 +0200 Subject: [PATCH 35/42] Add aux fields with phasespace cuts for dy datasets. --- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index 48504f4a..d387d2a8 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -26,6 +26,7 @@ "merging_factors": { "nominal": 38, }, + "mll": [4, 10], }, ) @@ -44,6 +45,7 @@ "nominal": 22, "nominal_ext1": 23, }, + "mll": [10, 50], }, ) @@ -64,6 +66,7 @@ "nominal_ext1": 18, "nominal_ext2": 25, }, + "mll": [50, float("inf")], }, ) @@ -82,6 +85,8 @@ "merging_factors": { "nominal": 19, }, + "mll": [50, float("inf")], + "njets": 0, }, ) @@ -98,6 +103,8 @@ "merging_factors": { "nominal": 15, }, + "mll": [50, float("inf")], + "njets": 1, }, ) @@ -114,6 +121,8 @@ "merging_factors": { "nominal": 13, }, + "mll": [50, float("inf")], + "njets": 2, }, ) @@ -132,6 +141,9 @@ "merging_factors": { "nominal": 18, }, + "mll": [50, float("inf")], + "njets": 1, + "ptll": [40, 100], }, ) @@ -148,6 +160,9 @@ "merging_factors": { "nominal": 18, }, + "mll": [50, float("inf")], + "njets": 1, + "ptll": [100, 200], }, ) @@ -164,6 +179,9 @@ "merging_factors": { "nominal": 16, }, + "mll": [50, float("inf")], + "njets": 1, + "ptll": [200, 400], }, ) @@ -180,6 +198,9 @@ "merging_factors": { "nominal": 28, }, + "mll": [50, float("inf")], + "njets": 1, + "ptll": [400, 600], }, ) @@ -196,6 +217,9 @@ "merging_factors": { "nominal": 28, }, + "mll": [50, float("inf")], + "njets": 1, + "ptll": [600, float("inf")], }, ) @@ -212,6 +236,9 @@ "merging_factors": { "nominal": 15, }, + "mll": [50, float("inf")], + "njets": 2, + "ptll": [40, 100], }, ) @@ -228,6 +255,9 @@ "merging_factors": { "nominal": 15, }, + "mll": [50, float("inf")], + "njets": 2, + "ptll": [100, 200], }, ) @@ -244,6 +274,9 @@ "merging_factors": { "nominal": 15, }, + "mll": [50, float("inf")], + "njets": 2, + "ptll": [200, 400], }, ) @@ -260,6 +293,9 @@ "merging_factors": { "nominal": 35, }, + "mll": [50, float("inf")], + "njets": 2, + "ptll": [400, 600], }, ) @@ -276,6 +312,9 @@ "merging_factors": { "nominal": 39, }, + "mll": [50, float("inf")], + "njets": 2, + "ptll": [600, float("inf")], }, ) From 4f2acb1b12934f81302c4f35266d5a137a3647c9 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Fri, 12 Jul 2024 09:43:17 +0200 Subject: [PATCH 36/42] Move DY phasespace values from datasets to processes. --- .../run3_2022_preEE_nano_uhh_v12/ewk.py | 39 ---- cmsdb/constants/__init__.py | 1 + cmsdb/processes/ewk.py | 182 +++++++++++++++--- 3 files changed, 156 insertions(+), 66 deletions(-) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py index d387d2a8..48504f4a 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/ewk.py @@ -26,7 +26,6 @@ "merging_factors": { "nominal": 38, }, - "mll": [4, 10], }, ) @@ -45,7 +44,6 @@ "nominal": 22, "nominal_ext1": 23, }, - "mll": [10, 50], }, ) @@ -66,7 +64,6 @@ "nominal_ext1": 18, "nominal_ext2": 25, }, - "mll": [50, float("inf")], }, ) @@ -85,8 +82,6 @@ "merging_factors": { "nominal": 19, }, - "mll": [50, float("inf")], - "njets": 0, }, ) @@ -103,8 +98,6 @@ "merging_factors": { "nominal": 15, }, - "mll": [50, float("inf")], - "njets": 1, }, ) @@ -121,8 +114,6 @@ "merging_factors": { "nominal": 13, }, - "mll": [50, float("inf")], - "njets": 2, }, ) @@ -141,9 +132,6 @@ "merging_factors": { "nominal": 18, }, - "mll": [50, float("inf")], - "njets": 1, - "ptll": [40, 100], }, ) @@ -160,9 +148,6 @@ "merging_factors": { "nominal": 18, }, - "mll": [50, float("inf")], - "njets": 1, - "ptll": [100, 200], }, ) @@ -179,9 +164,6 @@ "merging_factors": { "nominal": 16, }, - "mll": [50, float("inf")], - "njets": 1, - "ptll": [200, 400], }, ) @@ -198,9 +180,6 @@ "merging_factors": { "nominal": 28, }, - "mll": [50, float("inf")], - "njets": 1, - "ptll": [400, 600], }, ) @@ -217,9 +196,6 @@ "merging_factors": { "nominal": 28, }, - "mll": [50, float("inf")], - "njets": 1, - "ptll": [600, float("inf")], }, ) @@ -236,9 +212,6 @@ "merging_factors": { "nominal": 15, }, - "mll": [50, float("inf")], - "njets": 2, - "ptll": [40, 100], }, ) @@ -255,9 +228,6 @@ "merging_factors": { "nominal": 15, }, - "mll": [50, float("inf")], - "njets": 2, - "ptll": [100, 200], }, ) @@ -274,9 +244,6 @@ "merging_factors": { "nominal": 15, }, - "mll": [50, float("inf")], - "njets": 2, - "ptll": [200, 400], }, ) @@ -293,9 +260,6 @@ "merging_factors": { "nominal": 35, }, - "mll": [50, float("inf")], - "njets": 2, - "ptll": [400, 600], }, ) @@ -312,9 +276,6 @@ "merging_factors": { "nominal": 39, }, - "mll": [50, float("inf")], - "njets": 2, - "ptll": [600, float("inf")], }, ) diff --git a/cmsdb/constants/__init__.py b/cmsdb/constants/__init__.py index 40ba7b50..72295067 100644 --- a/cmsdb/constants/__init__.py +++ b/cmsdb/constants/__init__.py @@ -9,6 +9,7 @@ from cmsdb.util import DotDict # misc +inf = float("inf") n_leps = Number(3) # Z and W branching ratios and masses from diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 96c5ddcc..75651745 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -103,6 +103,9 @@ "pdf": 0.01j, }), }, + aux={ + "mll": [50.0, const.inf], + }, ) dy_k_factor_lo_to_nnlo = { @@ -122,6 +125,9 @@ 13: Number(0.1), # TODO 13.6: dy_m4to10_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, + aux={ + "mll": [4.0, 10.0], + }, ) dy_m10to50 = dy.add_process( name="dy_m10to50", @@ -130,6 +136,9 @@ 13: Number(0.1), # TODO 13.6: dy_m10to50_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, + aux={ + "mll": [10.0, 50.0], + }, ) # @@ -149,6 +158,10 @@ # NLO xsec taken from https://xsdb-temp.app.cern.ch/xsdb/?columns=39911424¤tPage=0&pageSize=10&searchQuery=DAS%3DDYto2L-2Jets_MLL-50_0J_TuneCP5_13p6TeV_amcatnloFXFX-pythia8 # noqa 13.6: Number(5378, {"tot": 8.007}) * dy_k_factor_nlo_to_nnlo[13.6], }, + aux={ + "mll": [50.0, const.inf], + "njets": 0, + }, ) dy_m50toinf_1j = dy_m50toinf.add_process( @@ -161,6 +174,10 @@ # 13.6: Number(1017, {"tot": 6.264}) * dy_k_factor_nlo_to_nnlo[13.6], 13.6: Number(973.1, {"tot": 2.613}) * dy_k_factor_lo_to_nnlo[13.6], }, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + }, ) dy_m50toinf_2j = dy_m50toinf.add_process( @@ -173,6 +190,10 @@ # 13.6: Number(385.5, {"tot": 3.858}) * dy_k_factor_nlo_to_nnlo[13.6], 13.6: Number(312.4, {"tot": 0.915}) * dy_k_factor_lo_to_nnlo[13.6], }, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + }, ) dy_m50toinf_3j = dy_m50toinf.add_process( @@ -184,6 +205,10 @@ }) * dy_k_factor_lo_to_nnlo[13], 13.6: Number(93.93, {"tot": 0.2858}) * dy_k_factor_lo_to_nnlo[13.6], }, + aux={ + "mll": [50.0, const.inf], + "njets": 3, + }, ) dy_m50toinf_4j = dy_m50toinf.add_process( @@ -195,11 +220,19 @@ }) * dy_k_factor_lo_to_nnlo[13], 13.6: Number(45.43, {"tot": 0.1393}) * dy_k_factor_lo_to_nnlo[13.6], }, + aux={ + "mll": [50.0, const.inf], + "njets": 4, + }, ) dy_m50toinf_ge3j = dy_m50toinf.add_process( name="dy_m50toinf_ge3j", id=51115, + aux={ + "mll": [50.0, const.inf], + "njets": [3, const.inf], + }, ) # based on GenXSecAnalyzer @@ -213,6 +246,9 @@ "tot": 5.365, }), }, + aux={ + "njets": 0, + }, ) dy_1j = dy.add_process( @@ -223,6 +259,9 @@ "tot": 2.174, }), }, + aux={ + "njets": 1, + }, ) dy_2j = dy.add_process( @@ -233,66 +272,129 @@ "tot": 1.533, }), }, + aux={ + "njets": 2, + }, ) dy_m50toinf_1j_pt0to40 = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt0to40", id=511110, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [0.0, 40.0], + }, ) dy_m50toinf_1j_pt40to100 = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt40to100", id=511111, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [40.0, 100.0], + }, ) dy_m50toinf_1j_pt100to200 = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt100to200", id=511112, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [100.0, 200.0], + }, ) dy_m50toinf_1j_pt200to400 = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt200to400", id=511113, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [200.0, 400.0], + }, ) dy_m50toinf_1j_pt400to600 = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt400to600", id=511114, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [400.0, 600.0], + }, ) dy_m50toinf_1j_pt600toinf = dy_m50toinf_1j.add_process( name="dy_m50toinf_1j_pt600toinf", id=511115, + aux={ + "mll": [50.0, const.inf], + "njets": 1, + "ptll": [600.0, const.inf], + }, ) dy_m50toinf_2j_pt0to40 = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt0to40", id=511120, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [0.0, 40.0], + }, ) dy_m50toinf_2j_pt40to100 = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt40to100", id=511121, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [40.0, 100.0], + }, ) dy_m50toinf_2j_pt100to200 = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt100to200", id=511122, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [100.0, 200.0], + }, ) dy_m50toinf_2j_pt200to400 = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt200to400", id=511123, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [200.0, 400.0], + }, ) dy_m50toinf_2j_pt400to600 = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt400to600", id=511124, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [400.0, 600.0], + }, ) dy_m50toinf_2j_pt600toinf = dy_m50toinf_2j.add_process( name="dy_m50toinf_2j_pt600toinf", id=511125, + aux={ + "mll": [50.0, const.inf], + "njets": 2, + "ptll": [600.0, const.inf], + }, ) # LO cross sections, scaled to NNLO @@ -306,6 +408,10 @@ xsecs={ 13: Number(139.9, {"tot": 0.5747}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [70.0, 100.0], + }, ) dy_m50toinf_ht100to200 = dy_m50toinf.add_process( @@ -314,6 +420,10 @@ xsecs={ 13: Number(140.1, {"tot": 0.5875}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [100.0, 200.0], + }, ) dy_m50toinf_ht200to400 = dy_m50toinf.add_process( @@ -322,6 +432,10 @@ xsecs={ 13: Number(38.38, {"tot": 0.01628}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [200.0, 400.0], + }, ) dy_m50toinf_ht400to600 = dy_m50toinf.add_process( @@ -330,6 +444,10 @@ xsecs={ 13: Number(5.212, {"tot": 0.003149}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [400.0, 600.0], + }, ) dy_m50toinf_ht600to800 = dy_m50toinf.add_process( @@ -338,6 +456,10 @@ xsecs={ 13: Number(1.266, {"tot": 0.0007976}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [600.0, 800.0], + }, ) dy_m50toinf_ht800to1200 = dy_m50toinf.add_process( @@ -346,6 +468,10 @@ xsecs={ 13: Number(0.5684, {"tot": 0.0003515}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [800.0, 1200.0], + }, ) dy_m50toinf_ht1200to2500 = dy_m50toinf.add_process( @@ -354,6 +480,10 @@ xsecs={ 13: Number(0.1332, {"tot": 0.00009084}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [1200.0, 2500.0], + }, ) dy_m50toinf_ht2500toinf = dy_m50toinf.add_process( @@ -362,6 +492,10 @@ xsecs={ 13: Number(0.002977, {"tot": 0.000003412}) * dy_k_factor_lo_to_nnlo[13], }, + aux={ + "mll": [50.0, const.inf], + "htt": [2500.0, const.inf], + }, ) # based on GenXSecAnalyzer @@ -375,6 +509,9 @@ "tot": 1.751, }), }, + aux={ + "ptll": [0.0, 50.0], + }, ) dy_pt50to100 = dy.add_process( @@ -385,6 +522,9 @@ "tot": 0.5600, }), }, + aux={ + "ptll": [50.0, 100.0], + }, ) dy_pt100to250 = dy.add_process( @@ -395,6 +535,9 @@ "tot": 0.1370, }), }, + aux={ + "ptll": [100.0, 250.0], + }, ) dy_pt250to400 = dy.add_process( @@ -405,6 +548,9 @@ "tot": 0.005305, }), }, + aux={ + "ptll": [250.0, 400.0], + }, ) dy_pt400to650 = dy.add_process( @@ -415,6 +561,9 @@ "tot": 0.0008169, }), }, + aux={ + "ptll": [400.0, 650.0], + }, ) dy_pt650toinf = dy.add_process( @@ -425,6 +574,9 @@ "tot": 0.00007206, }), }, + aux={ + "ptll": [650.0, const.inf], + }, ) # @@ -435,10 +587,6 @@ name="z", id=55000, label="Z + jets", - xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO - }, ) # Z -> neutrinos @@ -447,10 +595,6 @@ name="z_nunu", id=55100, label=rf"{z.label} (Z $\rightarrow$ $\nu\nu$)", - xsecs={ - 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO - }, ) # 13 TeV Xsecs based on GenXSecAnalyzer @@ -463,7 +607,6 @@ 13: Number(266.1, { "tot": 0.1117, }), - 13.6: Number(0.1), # TODO }, ) @@ -474,7 +617,6 @@ 13: Number(73.00, { "tot": 0.04408, }), - 13.6: Number(0.1), # TODO }, ) @@ -485,7 +627,6 @@ 13: Number(9.915, { "tot": 0.004229, }), - 13.6: Number(0.1), # TODO }, ) @@ -496,7 +637,6 @@ 13: Number(2.409, { "tot": 0.001678, }), - 13.6: Number(0.1), # TODO }, ) @@ -507,7 +647,6 @@ 13: Number(1.077, { "tot": 0.001295, }), - 13.6: Number(0.1), # TODO }, ) @@ -518,7 +657,6 @@ 13: Number(0.2495, { "tot": 0.0007030, }), - 13.6: Number(0.1), # TODO }, ) @@ -529,7 +667,6 @@ 13: Number(0.005614, { "tot": 0.00001616, }), - 13.6: Number(0.1), # TODO }, ) @@ -544,7 +681,6 @@ label=rf"{z.label} (Z $\rightarrow$ $\text{{q}}\overline{{\text{{q}}}}$)", xsecs={ 13: Number(0.1), # TODO - 13.6: Number(0.1), # TODO }, ) @@ -555,7 +691,6 @@ 13: Number(1012.0, { "tot": 0.4260, }), - 13.6: Number(0.1), # TODO }, ) @@ -566,7 +701,6 @@ 13: Number(114.5, { "tot": 0.04884, }), - 13.6: Number(0.1), # TODO }, ) @@ -577,7 +711,6 @@ 13: Number(25.38, { "tot": 0.01088, }), - 13.6: Number(0.1), # TODO }, ) @@ -588,7 +721,6 @@ 13: Number(12.92, { "tot": 0.005923, }), - 13.6: Number(0.1), # TODO }, ) @@ -601,7 +733,7 @@ name="w", id=6000, label="W + jets", - xsecs={13: Number(0.1)}, # TODO, or use w.set_xsec(13, w_lnu.get_xsec(13) / const.br_w["lep"]) below? + # TODO, or use w.set_xsec(13, w_lnu.get_xsec(13) / const.br_w["lep"]) below? ) @@ -609,16 +741,12 @@ name="w_taunu", id=6010, label=rf"{w.label} ($W \rightarrow tau\nu$)", - xsecs={ - 13: Number(0.1)}, # TODO ) w_munu = w.add_process( name="w_munu", id=6020, label=rf"{w.label} ($W \rightarrow mu\nu$)", - xsecs={ - 13: Number(0.1)}, # TODO ) @@ -737,7 +865,7 @@ name="ewk", id=7000, label="EWK", - xsecs={13: Number(0.1)}, # TODO? Sum over the other? maybe with scaled w xsec to inclusive? + # TODO: Sum over the other? maybe with scaled w xsec to inclusive? ) # based on GenXSecAnalyzer @@ -1006,7 +1134,7 @@ name="vvv", id=9000, label="Triple-Boson", - xsecs={13: Number(0.1)}, # updated below as sum over individual processes + # xsecs set below as sum over individual processes ) # based on GenXSecAnalyzer From 4b578028c6bea65997d12ebffac419ee0c27be9f Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Fri, 12 Jul 2024 10:12:40 +0200 Subject: [PATCH 37/42] Fix and document dy process phasespace ranges. --- cmsdb/processes/ewk.py | 143 +++++++++++++++++++++-------------------- 1 file changed, 75 insertions(+), 68 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 75651745..736ad67b 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -2,6 +2,13 @@ """ EWK-related process definitions. + +Some DY processes contain phasespace ranges in auxiliary fields. Each each is inclusive in the lower +bound and exclusive in the upper bound, i.e. (a, b) means a <= x < b: + +- mll: dilepton invariant mass range +- ptll: dilepton pt range +- njets: number of extra jets on generator level (mostly NLO) """ __all__ = [ @@ -104,7 +111,7 @@ }), }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), }, ) @@ -126,7 +133,7 @@ 13.6: dy_m4to10_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, aux={ - "mll": [4.0, 10.0], + "mll": (4.0, 10.0), }, ) dy_m10to50 = dy.add_process( @@ -137,7 +144,7 @@ 13.6: dy_m10to50_nlo_13p6tev_xsec * dy_k_factor_nlo_to_nnlo[13.6], }, aux={ - "mll": [10.0, 50.0], + "mll": (10.0, 50.0), }, ) @@ -159,8 +166,8 @@ 13.6: Number(5378, {"tot": 8.007}) * dy_k_factor_nlo_to_nnlo[13.6], }, aux={ - "mll": [50.0, const.inf], - "njets": 0, + "mll": (50.0, const.inf), + "njets": (0, 1), }, ) @@ -175,8 +182,8 @@ 13.6: Number(973.1, {"tot": 2.613}) * dy_k_factor_lo_to_nnlo[13.6], }, aux={ - "mll": [50.0, const.inf], - "njets": 1, + "mll": (50.0, const.inf), + "njets": (1, 2), }, ) @@ -191,8 +198,8 @@ 13.6: Number(312.4, {"tot": 0.915}) * dy_k_factor_lo_to_nnlo[13.6], }, aux={ - "mll": [50.0, const.inf], - "njets": 2, + "mll": (50.0, const.inf), + "njets": (2, 3), }, ) @@ -206,8 +213,8 @@ 13.6: Number(93.93, {"tot": 0.2858}) * dy_k_factor_lo_to_nnlo[13.6], }, aux={ - "mll": [50.0, const.inf], - "njets": 3, + "mll": (50.0, const.inf), + "njets": (3, 4), }, ) @@ -221,8 +228,8 @@ 13.6: Number(45.43, {"tot": 0.1393}) * dy_k_factor_lo_to_nnlo[13.6], }, aux={ - "mll": [50.0, const.inf], - "njets": 4, + "mll": (50.0, const.inf), + "njets": (4, 5), }, ) @@ -230,8 +237,8 @@ name="dy_m50toinf_ge3j", id=51115, aux={ - "mll": [50.0, const.inf], - "njets": [3, const.inf], + "mll": (50.0, const.inf), + "njets": (3, const.inf), }, ) @@ -247,7 +254,7 @@ }), }, aux={ - "njets": 0, + "njets": (0, 1), }, ) @@ -260,7 +267,7 @@ }), }, aux={ - "njets": 1, + "njets": (1, 2), }, ) @@ -273,7 +280,7 @@ }), }, aux={ - "njets": 2, + "njets": (2, 3), }, ) @@ -281,9 +288,9 @@ name="dy_m50toinf_1j_pt0to40", id=511110, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [0.0, 40.0], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (0.0, 40.0), }, ) @@ -291,9 +298,9 @@ name="dy_m50toinf_1j_pt40to100", id=511111, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [40.0, 100.0], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (40.0, 100.0), }, ) @@ -301,9 +308,9 @@ name="dy_m50toinf_1j_pt100to200", id=511112, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [100.0, 200.0], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (100.0, 200.0), }, ) @@ -311,9 +318,9 @@ name="dy_m50toinf_1j_pt200to400", id=511113, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [200.0, 400.0], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (200.0, 400.0), }, ) @@ -321,9 +328,9 @@ name="dy_m50toinf_1j_pt400to600", id=511114, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [400.0, 600.0], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (400.0, 600.0), }, ) @@ -331,9 +338,9 @@ name="dy_m50toinf_1j_pt600toinf", id=511115, aux={ - "mll": [50.0, const.inf], - "njets": 1, - "ptll": [600.0, const.inf], + "mll": (50.0, const.inf), + "njets": (1, 2), + "ptll": (600.0, const.inf), }, ) @@ -341,9 +348,9 @@ name="dy_m50toinf_2j_pt0to40", id=511120, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [0.0, 40.0], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (0.0, 40.0), }, ) @@ -351,9 +358,9 @@ name="dy_m50toinf_2j_pt40to100", id=511121, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [40.0, 100.0], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (40.0, 100.0), }, ) @@ -361,9 +368,9 @@ name="dy_m50toinf_2j_pt100to200", id=511122, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [100.0, 200.0], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (100.0, 200.0), }, ) @@ -371,9 +378,9 @@ name="dy_m50toinf_2j_pt200to400", id=511123, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [200.0, 400.0], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (200.0, 400.0), }, ) @@ -381,9 +388,9 @@ name="dy_m50toinf_2j_pt400to600", id=511124, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [400.0, 600.0], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (400.0, 600.0), }, ) @@ -391,9 +398,9 @@ name="dy_m50toinf_2j_pt600toinf", id=511125, aux={ - "mll": [50.0, const.inf], - "njets": 2, - "ptll": [600.0, const.inf], + "mll": (50.0, const.inf), + "njets": (2, 3), + "ptll": (600.0, const.inf), }, ) @@ -409,7 +416,7 @@ 13: Number(139.9, {"tot": 0.5747}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [70.0, 100.0], }, ) @@ -421,7 +428,7 @@ 13: Number(140.1, {"tot": 0.5875}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [100.0, 200.0], }, ) @@ -433,7 +440,7 @@ 13: Number(38.38, {"tot": 0.01628}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [200.0, 400.0], }, ) @@ -445,7 +452,7 @@ 13: Number(5.212, {"tot": 0.003149}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [400.0, 600.0], }, ) @@ -457,7 +464,7 @@ 13: Number(1.266, {"tot": 0.0007976}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [600.0, 800.0], }, ) @@ -469,7 +476,7 @@ 13: Number(0.5684, {"tot": 0.0003515}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [800.0, 1200.0], }, ) @@ -481,7 +488,7 @@ 13: Number(0.1332, {"tot": 0.00009084}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [1200.0, 2500.0], }, ) @@ -493,7 +500,7 @@ 13: Number(0.002977, {"tot": 0.000003412}) * dy_k_factor_lo_to_nnlo[13], }, aux={ - "mll": [50.0, const.inf], + "mll": (50.0, const.inf), "htt": [2500.0, const.inf], }, ) @@ -510,7 +517,7 @@ }), }, aux={ - "ptll": [0.0, 50.0], + "ptll": (0.0, 50.0), }, ) @@ -523,7 +530,7 @@ }), }, aux={ - "ptll": [50.0, 100.0], + "ptll": (50.0, 100.0), }, ) @@ -536,7 +543,7 @@ }), }, aux={ - "ptll": [100.0, 250.0], + "ptll": (100.0, 250.0), }, ) @@ -549,7 +556,7 @@ }), }, aux={ - "ptll": [250.0, 400.0], + "ptll": (250.0, 400.0), }, ) @@ -562,7 +569,7 @@ }), }, aux={ - "ptll": [400.0, 650.0], + "ptll": (400.0, 650.0), }, ) @@ -575,7 +582,7 @@ }), }, aux={ - "ptll": [650.0, const.inf], + "ptll": (650.0, const.inf), }, ) From 004be7d3cbd1ffc11aa3ff337229718259ccdc3f Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 15 Jul 2024 08:23:13 +0200 Subject: [PATCH 38/42] Consistent postfixes and tags across campaigns. --- README.md | 20 ++++++++++++++++++- .../run2_2016_HIPM_nano_uhh_v12/__init__.py | 5 +++-- .../run2_2016_nano_uhh_v12/__init__.py | 5 +++-- cmsdb/campaigns/run2_2016_nano_v9/__init__.py | 1 - .../run2_2017_JMEnano_v9/__init__.py | 7 ++++--- .../run2_2017_nano_uhh_v11/__init__.py | 3 ++- .../run2_2018_JMEnano_v9/__init__.py | 7 ++++--- .../run2_2018_nano_uhh_v11/__init__.py | 3 ++- .../run2_2018_nano_uhh_v12/__init__.py | 3 ++- cmsdb/campaigns/run2_2018_nano_v9/__init__.py | 5 +++-- .../run3_2022_postEE_nano_v11/__init__.py | 4 +++- .../run3_2022_postEE_nano_v12/__init__.py | 4 +++- .../run3_2022_preEE_nano_uhh_v12/__init__.py | 3 ++- .../run3_2022_preEE_nano_v11/__init__.py | 3 +++ .../run3_2022_preEE_nano_v12/__init__.py | 3 +++ tests/test_campaigns.py | 17 +++++++++++++++- 16 files changed, 72 insertions(+), 21 deletions(-) delete mode 100644 cmsdb/campaigns/run2_2016_nano_v9/__init__.py diff --git a/README.md b/README.md index 2bd3d374..ec29939c 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,26 @@ Database of physics processes, cross sections and scientific constants as well as CMS-related campaign information on datasets. +## Campaign names and descriptions -#### Dependencies +| Name | Postfix | Tags | +| -------------------------------------------------------------------------------- | ------- | --------------------------- | +| [`run2_2016_HIPM_nano_uhh_v12`](./cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12) | `"APV"` | `{"preVFP", "APV", "HIPM"}` | +| [`run2_2016_nano_uhh_v12`](./cmsdb/campaigns/run2_2016_nano_uhh_v12) | `""` | `{"postVFP"}` | +| [`run2_2017_nano_v9`](./cmsdb/campaigns/run2_2017_nano_v9) | `""` | `{}` | +| [`run2_2017_JMEnano_v9`](./cmsdb/campaigns/run2_2017_JMEnano_v9) | `""` | `{}` | +| [`run2_2017_nano_uhh_v11`](./cmsdb/campaigns/run2_2017_nano_uhh_v11) | `""` | `{}` | +| [`run2_2018_nano_v9`](./cmsdb/campaigns/run2_2018_nano_v9) | `""` | `{}` | +| [`run2_2018_JMEnano_v9`](./cmsdb/campaigns/run2_2018_JMEnano_v9) | `""` | `{}` | +| [`run2_2018_nano_uhh_v11`](./cmsdb/campaigns/run2_2018_nano_uhh_v11) | `""` | `{}` | +| [`run2_2018_nano_uhh_v12`](./cmsdb/campaigns/run2_2018_nano_uhh_v12) | `""` | `{}` | +| [`run3_2022_preEE_nano_v11`](./cmsdb/campaigns/run3_2022_preEE_nano_v11) | `""` | `{"preEE"}` | +| [`run3_2022_preEE_nano_v12`](./cmsdb/campaigns/run3_2022_preEE_nano_v12) | `""` | `{"preEE"}` | +| [`run3_2022_preEE_nano_uhh_v12`](./cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12) | `""` | `{"preEE"}` | +| [`run3_2022_postEE_nano_v11`](./cmsdb/campaigns/run3_2022_postEE_nano_v11) | `"EE"` | `{"postEE", "EE"}` | +| [`run3_2022_postEE_nano_v12`](./cmsdb/campaigns/run3_2022_postEE_nano_v12) | `"EE"` | `{"postEE", "EE"}` | + +## Dependencies - [order](https://github.com/riga/order) is used to model the relations between physics meta data containers (datasets, processes, systematics, ...). - [scinum](https://github.com/riga/scinum)'s `Number` is the basis for numeric values with multiple sources of systematic uncertainties attributed to them. diff --git a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py index 17f26838..7399aec6 100644 --- a/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run2_2016_HIPM_nano_uhh_v12/__init__.py @@ -28,16 +28,17 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2016, "run": 2, - "vfp": "pre", + "year": 2016, "version": 12, + "postfix": "APV", "custom": { "name": "run2_2016_HIPM_nano_uhh_v12", "creator": "uhh", "location": "davs://dcache-cms-webdav-wan.desy.de:2880/pnfs/desy.de/cms/tier2/store/user/mrieger/nanogen_store/CreateNano/config_16pre/prod2", # noqa }, }, + tags={"preVFP", "APV", "HIPM"}, ) # trailing imports to load datasets diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py index 10a0054d..44f7d3bc 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/__init__.py @@ -28,16 +28,17 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2016, "run": 2, + "year": 2016, "version": 12, - "vfp": "post", + "postfix": "", "custom": { "name": "run2_2016_nano_uhh_v12", "creator": "uhh", "location": "davs://dcache-cms-webdav-wan.desy.de:2880/pnfs/desy.de/cms/tier2/store/user/nprouvos/nano_uhh_v12/merged_2048.0MB", # noqa }, }, + tags={"postVFP"}, ) diff --git a/cmsdb/campaigns/run2_2016_nano_v9/__init__.py b/cmsdb/campaigns/run2_2016_nano_v9/__init__.py deleted file mode 100644 index 57d631c3..00000000 --- a/cmsdb/campaigns/run2_2016_nano_v9/__init__.py +++ /dev/null @@ -1 +0,0 @@ -# coding: utf-8 diff --git a/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py b/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py index eba3a5f8..89613230 100644 --- a/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2017_JMEnano_v9/__init__.py @@ -21,10 +21,11 @@ ecm=13, bx=25, aux={ - "year": 2017, - "run": 2, "tier": "NanoAOD", - "version": "9", + "run": 2, + "year": 2017, + "version": 9, + "postfix": "", }, ) diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py index 9c8cac13..55ad38f2 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/__init__.py @@ -28,9 +28,10 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2017, "run": 2, + "year": 2017, "version": 11, + "postfix": "", "custom": { "name": "run2_2017_nano_uhh_v11", "creator": "uhh", diff --git a/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py b/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py index 8f35e082..58dbcec3 100644 --- a/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2018_JMEnano_v9/__init__.py @@ -21,10 +21,11 @@ ecm=13, bx=25, aux={ - "year": 2018, - "run": 2, "tier": "NanoAOD", - "version": "9", + "run": 2, + "year": 2018, + "version": 9, + "postfix": "", }, ) diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py b/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py index 22723e23..d4f2c2cd 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v11/__init__.py @@ -28,9 +28,10 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2018, "run": 2, + "year": 2018, "version": 11, + "postfix": "", "custom": { "name": "run2_2018_nano_uhh_v11", "creator": "uhh", diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/__init__.py index 332b75f4..45825bd8 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/__init__.py @@ -28,9 +28,10 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2018, "run": 2, + "year": 2018, "version": 12, + "postfix": "", "custom": { "name": "run2_2018_nano_uhh_v12", "creator": "uhh", diff --git a/cmsdb/campaigns/run2_2018_nano_v9/__init__.py b/cmsdb/campaigns/run2_2018_nano_v9/__init__.py index e7d32169..13d9828d 100644 --- a/cmsdb/campaigns/run2_2018_nano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2018_nano_v9/__init__.py @@ -23,10 +23,11 @@ ecm=13, bx=25, aux={ - "year": 2018, "tier": "NanoAOD", "run": 2, - "version": "9", + "year": 2018, + "version": 9, + "postfix": "", }, ) diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py b/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py index b2b48d53..1e065722 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v11/__init__.py @@ -28,10 +28,12 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2022, "run": 3, + "year": 2022, "version": 11, + "postfix": "EE", }, + tags={"EE", "postEE"}, ) diff --git a/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py b/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py index 7fddc65d..3fcc5ede 100644 --- a/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_postEE_nano_v12/__init__.py @@ -28,10 +28,12 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2022, "run": 3, + "year": 2022, "version": 12, + "postfix": "EE", }, + tags={"EE", "postEE"}, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py index 8f9600d2..57230c95 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_uhh_v12/__init__.py @@ -25,14 +25,15 @@ "tier": "NanoAOD", "run": 3, "year": 2022, - "postfix": "pre", "version": 12, + "postfix": "", "custom": { "name": "run3_2022_preEE_nano_uhh_v12", "creator": "uhh", "location": "davs://dcache-cms-webdav-wan.desy.de:2880/pnfs/desy.de/cms/tier2/store/user/nprouvos/nanogen_store/MergeNano/config_22pre_v12/prod3", # noqa }, }, + tags={"preEE"}, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v11/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_v11/__init__.py index fe031b43..0dd47158 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v11/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v11/__init__.py @@ -28,9 +28,12 @@ bx=25, aux={ "tier": "NanoAOD", + "run": 3, "year": 2022, "version": 11, + "postfix": "", }, + tags={"preEE"}, ) diff --git a/cmsdb/campaigns/run3_2022_preEE_nano_v12/__init__.py b/cmsdb/campaigns/run3_2022_preEE_nano_v12/__init__.py index 454cdcc2..0b868e31 100644 --- a/cmsdb/campaigns/run3_2022_preEE_nano_v12/__init__.py +++ b/cmsdb/campaigns/run3_2022_preEE_nano_v12/__init__.py @@ -28,9 +28,12 @@ bx=25, aux={ "tier": "NanoAOD", + "run": 3, "year": 2022, "version": 12, + "postfix": "", }, + tags={"preEE"}, ) diff --git a/tests/test_campaigns.py b/tests/test_campaigns.py index eadd9a15..47903219 100644 --- a/tests/test_campaigns.py +++ b/tests/test_campaigns.py @@ -30,7 +30,6 @@ class TestCampaigns(unittest.TestCase): @classmethod def setUpClass(cls): - if not cls.campaign_names: # if not provided, find and test all campaigns campaign_dir = os.path.join(os.path.dirname(cmsdb.__file__), "campaigns") @@ -56,6 +55,22 @@ def test_campaign_properties(self): self.assertTrue(hasattr(campaign_inst, "ecm")) self.assertTrue(hasattr(campaign_inst, "bx")) + def test_campaign_aux(self): + for campaign_inst in self.campaigns.values(): + with self.subTest(f"testing {campaign_inst.name}"): + # field existence + self.assertTrue(campaign_inst.has_aux("tier")) + self.assertTrue(campaign_inst.has_aux("run")) + self.assertTrue(campaign_inst.has_aux("year")) + self.assertTrue(campaign_inst.has_aux("version")) + self.assertTrue(campaign_inst.has_aux("postfix")) + # field types + self.assertIsInstance(campaign_inst.tier, str) + self.assertIsInstance(campaign_inst.run, int) + self.assertIsInstance(campaign_inst.year, int) + self.assertIsInstance(campaign_inst.version, int) + self.assertIsInstance(campaign_inst.postfix, str) + def single_dataset_test(self, campaign_inst, dataset_inst): # check existence of attributes self.assertTrue(hasattr(dataset_inst, "name")) From 6631ec17bbe1a1135d095329dc9b93d2d96907e4 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 15 Jul 2024 08:24:35 +0200 Subject: [PATCH 39/42] Fix tests. --- tests/test_campaigns.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_campaigns.py b/tests/test_campaigns.py index 47903219..f7e16e73 100644 --- a/tests/test_campaigns.py +++ b/tests/test_campaigns.py @@ -65,11 +65,11 @@ def test_campaign_aux(self): self.assertTrue(campaign_inst.has_aux("version")) self.assertTrue(campaign_inst.has_aux("postfix")) # field types - self.assertIsInstance(campaign_inst.tier, str) - self.assertIsInstance(campaign_inst.run, int) - self.assertIsInstance(campaign_inst.year, int) - self.assertIsInstance(campaign_inst.version, int) - self.assertIsInstance(campaign_inst.postfix, str) + self.assertIsInstance(campaign_inst.x.tier, str) + self.assertIsInstance(campaign_inst.x.run, int) + self.assertIsInstance(campaign_inst.x.year, int) + self.assertIsInstance(campaign_inst.x.version, int) + self.assertIsInstance(campaign_inst.x.postfix, str) def single_dataset_test(self, campaign_inst, dataset_inst): # check existence of attributes From 7e79259004b77c8009f396f340e92e2a285ecd9b Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 15 Jul 2024 08:27:12 +0200 Subject: [PATCH 40/42] Fix run2_2017_nano_v9. --- cmsdb/campaigns/run2_2017_nano_v9/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmsdb/campaigns/run2_2017_nano_v9/__init__.py b/cmsdb/campaigns/run2_2017_nano_v9/__init__.py index fe6713ac..71ace067 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/__init__.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/__init__.py @@ -22,9 +22,10 @@ bx=25, aux={ "tier": "NanoAOD", - "year": 2017, "run": 2, + "year": 2017, "version": 9, + "postfix": "", }, ) From 18985e5c0b0e8d26f218b98bae2f8708fdde0b16 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 15 Jul 2024 12:57:33 +0200 Subject: [PATCH 41/42] Fix inclusive zz cross section. --- cmsdb/processes/ewk.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 736ad67b..85aead1a 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -740,7 +740,7 @@ name="w", id=6000, label="W + jets", - # TODO, or use w.set_xsec(13, w_lnu.get_xsec(13) / const.br_w["lep"]) below? + # TODO, or use w.set_xsec(13, w_lnu.get_xsec(13) / const.br_w.lep) below? ) @@ -920,20 +920,19 @@ xsecs={13: Number(0.1)}, # updated below as the sum over WW, WZ, ZZ ) -# ZZ 13 TeV xsec values at NLO from https://arxiv.org/pdf/1105.0020.pdf v1 -# old value before update: -# https://cms.cern.ch/iCMS/jsp/db_notes/noteInfo.jsp?cmsnoteid=CMS%20AN-2019/197 (v3) Number(12.13) (LO) +# ZZ 13 TeV xsec values at nNNLO from +# https://link.springer.com/article/10.1007/JHEP03(2019)070#preview, table 3 zz = vv.add_process( name="zz", id=8100, label="ZZ", xsecs={ - 13: Number(15.99, {"scale": (0.037j, 0.026j)}), - # 13.6 from GenXSecAnalyzer: - 13.6: Number(12.84, { - "tot": 0.006035, # xsdb: Number(12.75, {"tot": 0.0649}) - }), + 13: Number(24.97, {"scale": (0.029j, 0.027j)}), + # 13.6 from GenXSecAnalyzer, but this value is way off and should not be used + # 13.6: Number(12.84, { + # "tot": 0.006035, # xsdb: Number(12.75, {"tot": 0.0649}) + # }), }, ) @@ -986,7 +985,7 @@ name="zz_zqq_zqq", id=8140, xsecs={ - 13: zz.get_xsec(13) * const.br_z["qq"] * const.br_z["qq"], # value around 7.8 + 13: zz.get_xsec(13) * const.br_zz.qqqq, # value around 7.8 }, ) @@ -1064,7 +1063,7 @@ name="wz_wlnu_zqq", id=8230, xsecs={ - 13: wz.get_xsec(13) * const.br_w["lep"] * const.br_z["qq"], # value around 10.65 + 13: wz.get_xsec(13) * const.br_w.lep * const.br_z.qq, # value around 10.65 }, ) From baa8d77bd8a5489622781805f1bc53d70ec99969 Mon Sep 17 00:00:00 2001 From: "Marcel R." Date: Mon, 15 Jul 2024 13:36:25 +0200 Subject: [PATCH 42/42] Drop 4toinf phase space from zz and wz. --- cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py | 36 +++----- cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py | 36 +++----- cmsdb/campaigns/run2_2017_nano_v9/ewk.py | 37 ++++---- cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py | 25 +++--- cmsdb/processes/ewk.py | 88 +++++-------------- 5 files changed, 78 insertions(+), 144 deletions(-) diff --git a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py index 6d80307e..8b640206 100644 --- a/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2016_nano_uhh_v12/ewk.py @@ -412,9 +412,9 @@ ) cpn.add_dataset( - name="zz_zqq_zll_m4toinf_amcatnlo", + name="zz_zqq_zll_amcatnlo", id=14284244, - processes=[procs.zz_zqq_zll_m4toinf], + processes=[procs.zz_zqq_zll], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], @@ -422,14 +422,11 @@ n_events=13740600, ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_2L2NU_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zll_znunu_m4toinf_powheg", + name="zz_zll_znunu_powheg", id=14212205, - processes=[procs.zz_zll_znunu_m4toinf], + processes=[procs.zz_zll_znunu], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -437,14 +434,11 @@ n_events=15928000, ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_4L_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zll_zll_m4toinf_powheg", + name="zz_zll_zll_powheg", id=14344450, - processes=[procs.zz_zll_zll_m4toinf], + processes=[procs.zz_zll_zll], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -487,14 +481,11 @@ n_events=7584000, ) -# looking at the generator config: -# https://github.com/cms-sw/genproductions/blob/2422e1837f93f875c54f8ace0f02d3dc962eca41/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/WZTo3LNu01j_5f_NLO_FXFX/WZTo3LNu01j_5f_NLO_FXFX_run_card.dat # noqa -# it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="wz_wlnu_zll_m4toinf_amcatnlo", + name="wz_wlnu_zll_amcatnlo", id=14212844, - processes=[procs.wz_wlnu_zll_m4toinf], + processes=[procs.wz_wlnu_zll], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v1/NANOAODSIM", # noqa ], @@ -502,10 +493,11 @@ n_events=10441724, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="wz_wqq_zll_m4toinf_amcatnlo", + name="wz_wqq_zll_amcatnlo", id=14283305, - processes=[procs.wz_wqq_zll_m4toinf], + processes=[procs.wz_wqq_zll], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16NanoAODv12-106X_mcRun2_asymptotic_v17-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py index 83e45e3a..baa4285a 100644 --- a/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_uhh_v11/ewk.py @@ -424,9 +424,9 @@ ) # cpn.add_dataset( -# name="zz_zqq_zll_m4toinf_amcatnlo", +# name="zz_zqq_zll_amcatnlo", # id=14298864, -# processes=[procs.zz_zqq_zll_m4toinf], +# processes=[procs.zz_zqq_zll], # keys=[ # "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -434,14 +434,11 @@ # n_events=29521496, # ) -# # looking at the generator config: -# # https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_2L2NU_NNPDF31_13TeV.input # noqa -# # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# # therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though # cpn.add_dataset( -# name="zz_zll_znunu_m4toinf_powheg", +# name="zz_zll_znunu_powheg", # id=14237024, -# processes=[procs.zz_zll_znunu_m4toinf], +# processes=[procs.zz_zll_znunu], # keys=[ # "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa # ], @@ -449,14 +446,11 @@ # n_events=40839000, # ) -# # looking at the generator config: -# # https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_4L_NNPDF31_13TeV.input # noqa -# # it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# # therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though # cpn.add_dataset( -# name="zz_zll_zll_m4toinf_powheg", +# name="zz_zll_zll_powheg", # id=14243658, -# processes=[procs.zz_zll_zll_m4toinf], +# processes=[procs.zz_zll_zll], # keys=[ # "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -476,14 +470,11 @@ n_events=7889000, ) -# # looking at the generator config: -# # https://github.com/cms-sw/genproductions/blob/2422e1837f93f875c54f8ace0f02d3dc962eca41/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/WZTo3LNu01j_5f_NLO_FXFX/WZTo3LNu01j_5f_NLO_FXFX_run_card.dat # noqa -# # it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel -# # therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though # cpn.add_dataset( -# name="wz_wlnu_zll_m4toinf_amcatnlo", +# name="wz_wlnu_zll_amcatnlo", # id=14253602, -# processes=[procs.wz_wlnu_zll_m4toinf], +# processes=[procs.wz_wlnu_zll], # keys=[ # "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], @@ -491,10 +482,11 @@ # n_events=10339582, # ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though # cpn.add_dataset( -# name="wz_wqq_zll_m4toinf_amcatnlo", +# name="wz_wqq_zll_amcatnlo", # id=14328000, -# processes=[procs.wz_wqq_zll_m4toinf], +# processes=[procs.wz_wqq_zll], # keys=[ # "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa # ], diff --git a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py index 68f362dd..f80c12a8 100644 --- a/cmsdb/campaigns/run2_2017_nano_v9/ewk.py +++ b/cmsdb/campaigns/run2_2017_nano_v9/ewk.py @@ -341,10 +341,11 @@ n_events=2706000, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zqq_zll_m4toinf_amcatnlo", + name="zz_zqq_zll_amcatnlo", id=14298864, - processes=[procs.zz_zqq_zll_m4toinf], + processes=[procs.zz_zqq_zll], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -352,14 +353,11 @@ n_events=29521496, ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_2L2NU_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zll_znunu_m4toinf_powheg", + name="zz_zll_znunu_powheg", id=14237024, - processes=[procs.zz_zll_znunu_m4toinf], + processes=[procs.zz_zll_znunu], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v1/NANOAODSIM", # noqa ], @@ -367,14 +365,11 @@ n_events=40839000, ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_4L_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zll_zll_m4toinf_powheg", + name="zz_zll_zll_powheg", id=14243658, - processes=[procs.zz_zll_zll_m4toinf], + processes=[procs.zz_zll_zll], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -394,14 +389,11 @@ n_events=7889000, ) -# looking at the generator config: -# https://github.com/cms-sw/genproductions/blob/2422e1837f93f875c54f8ace0f02d3dc962eca41/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/WZTo3LNu01j_5f_NLO_FXFX/WZTo3LNu01j_5f_NLO_FXFX_run_card.dat # noqa -# it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel -# therefore the corresponding process is with the "_m4" suffix +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="wz_wlnu_zll_m4toinf_amcatnlo", + name="wz_wlnu_zll_amcatnlo", id=14253602, - processes=[procs.wz_wlnu_zll_m4toinf], + processes=[procs.wz_wlnu_zll], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], @@ -409,10 +401,11 @@ n_events=10339582, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="wz_wqq_zll_m4toinf_amcatnlo", + name="wz_wqq_zll_amcatnlo", id=14328000, - processes=[procs.wz_wqq_zll_m4toinf], + processes=[procs.wz_wqq_zll], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL17NanoAODv9-106X_mc2017_realistic_v9-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py index fa732846..8fda829b 100644 --- a/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py +++ b/cmsdb/campaigns/run2_2018_nano_uhh_v12/ewk.py @@ -538,6 +538,7 @@ # # ZZ +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( name="zz_pythia", id=14241945, @@ -549,10 +550,11 @@ n_events=3526000, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zqq_zll_m4toinf_pythia", + name="zz_zqq_zll_pythia", id=14284213, - processes=[procs.zz_zqq_zll_m4toinf], + processes=[procs.zz_zqq_zll], keys=[ "/ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -560,10 +562,11 @@ n_events=29357938, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( - name="zz_zll_znunu_m4toinf_pythia", + name="zz_zll_znunu_pythia", id=14196326, - processes=[procs.zz_zll_znunu_m4toinf], + processes=[procs.zz_zll_znunu], keys=[ "/ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v1/NANOAODSIM", # noqa ], @@ -571,6 +574,7 @@ n_events=56886000, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( name="zz_znunu_zqq_pythia", id=14245915, @@ -582,6 +586,7 @@ n_events=19813764, ) +# there is a 4 GeV mZ cut, which has no effect on the cross section though cpn.add_dataset( name="zz_zqq_zqq_pythia", id=14373150, @@ -594,9 +599,9 @@ ) cpn.add_dataset( - name="zz_zll_zll_m4toinf_powheg", + name="zz_zll_zll_powheg", id=14241106, - processes=[procs.zz_zll_zll_m4toinf], + processes=[procs.zz_zll_zll], keys=[ "/ZZTo4L_TuneCP5_13TeV_powheg_pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -617,9 +622,9 @@ ) cpn.add_dataset( - name="wz_wlnu_zll_m4toinf_pythia", + name="wz_wlnu_zll_pythia", id=14253723, - processes=[procs.wz_wlnu_zll_m4toinf], + processes=[procs.wz_wlnu_zll], keys=[ "/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], @@ -628,9 +633,9 @@ ) cpn.add_dataset( - name="wz_wqq_zll_m4toinf_pythia", + name="wz_wqq_zll_pythia", id=14284121, - processes=[procs.wz_wqq_zll_m4toinf], + processes=[procs.wz_wqq_zll], keys=[ "/WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL18NanoAODv12-106X_upgrade2018_realistic_v16_L1v1-v2/NANOAODSIM", # noqa ], diff --git a/cmsdb/processes/ewk.py b/cmsdb/processes/ewk.py index 85aead1a..a631e184 100644 --- a/cmsdb/processes/ewk.py +++ b/cmsdb/processes/ewk.py @@ -43,13 +43,12 @@ "ewk_wp_lnu_m50toinf", "ewk_wm_lnu_m50toinf", "ewk_z_ll_m50toinf", "vv", "zz", - "zz_zqq_zll_m4toinf", "zz_zll_znunu_m4toinf", "zz_zll_zll_m4toinf", "zz_zqq_zqq", "zz_znunu_zqq", - "wz", "wz_wlnu_zll_m4toinf", "wz_wqq_zll_m4toinf", "wz_wlnu_zqq", + "zz_zqq_zll", "zz_zll_znunu", "zz_zll_zll", "zz_zqq_zqq", "zz_znunu_zqq", + "wz", "wz_wlnu_zll", "wz_wqq_zll", "wz_wlnu_zqq", "ww", "ww_dl", "ww_sl", "ww_fh", "vvv", "zzz", "wzz", "wwz", "www", - ] @@ -57,6 +56,7 @@ from scinum import Number import cmsdb.constants as const +from cmsdb.util import multiply_xsecs # @@ -922,7 +922,6 @@ # ZZ 13 TeV xsec values at nNNLO from # https://link.springer.com/article/10.1007/JHEP03(2019)070#preview, table 3 - zz = vv.add_process( name="zz", id=8100, @@ -936,68 +935,34 @@ }, ) -# based on GenXSecAnalyzer -# for ZZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -zz_zqq_zll_m4toinf = zz.add_process( - name="zz_zqq_zll_m4toinf", +zz_zqq_zll = zz.add_process( + name="zz_zqq_zll", id=8110, - xsecs={ - 13: Number(3.697, {"tot": 0.002713}), - }, + xsecs=multiply_xsecs(zz, const.br_zz.llqq), ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_2L2NU_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore values from GenXSecAnalyzer -# for ZZTo2L2Nu_TuneCP5_13TeV_powheg_pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -zz_zll_znunu_m4toinf = zz.add_process( - name="zz_zll_znunu_m4toinf", +zz_zll_znunu = zz.add_process( + name="zz_zll_znunu", id=8120, - xsecs={ - 13: Number(0.9738, {"tot": 0.0009971}), - }, + xsecs=multiply_xsecs(zz, const.br_zz.llnunu), ) -# looking at the generator config: -# https://raw.githubusercontent.com/cms-sw/genproductions/ce68f8a7ab05f530e0a99124088c08d1cc2bf355/bin/Powheg/production/2017/13TeV/ZZ/ZZ_4L_NNPDF31_13TeV.input # noqa -# it seems that there is a lepton mass cut of 4 GeV, like in the ZZTo2Q2L channel -# therefore values from GenXSecAnalyzer -# from ZZTo4L_TuneCP5_13TeV_powheg_pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -zz_zll_zll_m4toinf = zz.add_process( - name="zz_zll_zll_m4toinf", +zz_zll_zll = zz.add_process( + name="zz_zll_zll", id=8130, - xsecs={ - 13: Number(1.325, {"tot": 0.00122}), - }, + xsecs=multiply_xsecs(zz, const.br_zz.llll), ) -# no additional cut found in generator card in MCM: -# dataset: /ZZTo4Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2/MINIAODSIM # noqa -# therefore, value obtained from branching ratio. -# Log for GenXSecAnalyzer of -# for ZZTo4Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -> value : Number(3.287, {"tot": 0.006298}) -# also available, but not used here zz_zqq_zqq = zz.add_process( name="zz_zqq_zqq", id=8140, - xsecs={ - 13: zz.get_xsec(13) * const.br_zz.qqqq, # value around 7.8 - }, + xsecs=multiply_xsecs(zz, const.br_zz.qqqq), ) -# no branching ratio Z->nunu available, so taking values from GenXSecAnalyzer -# for ZZTo2Nu2Q_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa zz_znunu_zqq = zz.add_process( name="zz_znunu_zqq", id=8150, - xsecs={ - 13: Number(4.557, {"tot": 0.004843}), - }, + xsecs=multiply_xsecs(zz, const.br_zz.qqnunu), ) # WZ xsec values at NLO from https://arxiv.org/pdf/1105.0020.pdf v1 @@ -1027,29 +992,16 @@ }, ) -# looking at the generator config: -# https://github.com/cms-sw/genproductions/blob/2422e1837f93f875c54f8ace0f02d3dc962eca41/bin/MadGraph5_aMCatNLO/cards/production/2017/13TeV/WZTo3LNu01j_5f_NLO_FXFX/WZTo3LNu01j_5f_NLO_FXFX_run_card.dat # noqa -# it seems that there is a lepton mass cut of 4 GeV for leptons from Z, like in the ZZTo2Q2L channel -# therefore values from GenXSecAnalyzer -# for WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v1 -n 5000000 # noqa -wz_wlnu_zll_m4toinf = wz.add_process( - name="wz_wlnu_zll_m4toinf", +wz_wlnu_zll = wz.add_process( + name="wz_wlnu_zll", id=8210, - xsecs={ - 13: Number(5.218, {"tot": 0.00525}), - }, + xsecs=multiply_xsecs(zz, const.br_w.lep * const.br_z.clep), ) -# based on GenXSecAnalyzer -# for WZTo2Q2L_mllmin4p0_TuneCP5_13TeV-amcatnloFXFX-pythia8 (Summer20UL16, NLO) -# using command ./calculateXSectionAndFilterEfficiency.sh -f datasets.txt -c RunIISummer20UL16MiniAODv2-106X_mcRun2_asymptotic_v17-v2 -n 5000000 # noqa -wz_wqq_zll_m4toinf = wz.add_process( - name="wz_wqq_zll_m4toinf", +wz_wqq_zll = wz.add_process( + name="wz_wqq_zll", id=8220, - xsecs={ - 13: Number(6.431, {"tot": 0.007851}), - }, + xsecs=multiply_xsecs(zz, const.br_w.had * const.br_z.clep), )