-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2023_postBPix_nano_v12 campaign initial commit
- Loading branch information
Showing
6 changed files
with
2,741 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
# coding: utf-8 | ||
|
||
""" | ||
Common, analysis independent definition of the run3_2023_postBPix_nano_v12 campaign | ||
with datasets at NanoAOD tier in version 12. | ||
See https://python-order.readthedocs.io/en/latest/quickstart.html#analysis-campaign-and-config. | ||
Dataset ids are identical to those in DAS (https://cmsweb.cern.ch/das). | ||
""" | ||
|
||
from order import Campaign | ||
|
||
# | ||
# campaign | ||
# | ||
|
||
run3_2023_postBPix_nano_v12 = Campaign( | ||
name="run3_2023_postBPix_nano_v12", | ||
id=320231202, # 3 2023 12 02(u) | ||
ecm=13.6, | ||
bx=25, | ||
aux={ | ||
"tier": "NanoAOD", | ||
"run": 3, | ||
"year": 2023, | ||
"version": 12, | ||
"postfix": "BPix", | ||
}, | ||
tags={"BPix, postBPix"}, | ||
) | ||
|
||
# trailing imports to load datasets | ||
# import cmsdb.campaigns.run3_2023_postBPix_nano_v12.data # noqa | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_v12.top # noqa | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_v12.ewk # noqa | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_v12.qcd # noqa | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_v12.higgs # noqa | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_v12.hh2bbvv # noqa |
Oops, something went wrong.