Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions cmsdb/campaigns/run3_2024_nano_v15/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# coding: utf-8

"""
Common, analysis independent definition of the 2022 pre-EE data-taking campaign
with datasets at NanoAOD tier in version 11. The 'pre-EE' refers to data taken
before part of the positive ECAL endcap (EE+) had to be shut down because of a water
leak inside the detector in late 2022 (more details can be found at
https://cms.cern/news/problems-and-solutions-ecal-leak-story).
The corresponding set of MC samples include a simulation of the detector including
the endcap region that was later affected by the leak.

See https://python-order.readthedocs.io/en/latest/quickstart.html#analysis-campaign-and-config.

Dataset ids are identical to those in DAS (https://cmsweb.cern.ch/das).
"""

from order import Campaign


#
# campaign
#

campaign_run3_2024_nano_v15 = Campaign(
name="run3_2024_nano_v15",
id=320221101, # 3 2022 11 01(u)
ecm=13.6,
bx=25,
aux={
"tier": "NanoAOD",
"year": 2024,
"version": 15,
"run": 3,
"postfix": "",
},
)


# trailing imports to load datasets
import cmsdb.campaigns.run3_2024_nano_v15.top # noqa
import cmsdb.campaigns.run3_2024_nano_v15.ewk # noqa
import cmsdb.campaigns.run3_2024_nano_v15.higgs # noqa
import cmsdb.campaigns.run3_2024_nano_v15.data # noqa
Loading