forked from uhh-cms/cmsdb
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from anigamova/2023_cmpgns
Add 2023 (post and preBPix) campaigns
- Loading branch information
Showing
13 changed files
with
4,947 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
cmsdb/campaigns/run3_2023_postBPix_nano_tau_skim_v2/__init__.py
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,28 @@ | ||
from order import Campaign | ||
# | ||
# campaign | ||
# | ||
|
||
campaign_run3_2023_postBPix_nano_tau_skim_v2 = Campaign( | ||
name="run3_2023_postBPix_nano_tau_skim_v2", | ||
id=20231401, # run 3 year 2022 ver 12 #01 is just for separation between different configs | ||
ecm=13.6, | ||
bx=25, | ||
aux={ | ||
"tier": "NanoAOD", | ||
"year": 2023, | ||
"version": 14, | ||
"tag": "postBPix", | ||
"run": 3, | ||
"custom": { | ||
"name": "run3_2023_postBPix_nano_tau_skim_v2", | ||
"creator": "desy", | ||
"location": "/eos/cms/store/group/phys_higgs/HLepRare/skim_2024_v2/Run3_2023BPix" | ||
}, | ||
}, | ||
) | ||
|
||
import cmsdb.campaigns.run3_2023_postBPix_nano_tau_skim_v2.ewk | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_tau_skim_v2.data | ||
import cmsdb.campaigns.run3_2023_postBPix_nano_tau_skim_v2.top | ||
|
55 changes: 55 additions & 0 deletions
55
cmsdb/campaigns/run3_2023_postBPix_nano_tau_skim_v2/data.py
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,55 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
CMS datasets from the 2023 preBPix E data-taking campaign | ||
""" | ||
|
||
import cmsdb.processes as procs | ||
from cmsdb.campaigns.run3_2023_postBPix_nano_tau_skim_v2 import campaign_run3_2023_postBPix_nano_tau_skim_v2 as cpn | ||
|
||
|
||
|
||
""" | ||
CMS datasets from the 2023 preBPix data-taking campaign /eos/cms/store/group/phys_higgs/HLepRare/skim_2024_v2/Run3_2023/ | ||
""" | ||
|
||
cpn.add_dataset( | ||
name='data_e_D', | ||
id=2212010, | ||
is_data=True, | ||
processes=[procs.data_e], | ||
keys=['/EGamma0_Run2023D_v1', '/EGamma0_Run2023D_v2', '/EGamma1_Run2023D_v1', '/EGamma1_Run2023D_v2'], | ||
n_files=64 + 14 + 64 + 14, | ||
n_events= 105892646 + 22657211 + 105850543 + 22653287, | ||
aux={ | ||
'era': 'D' | ||
} | ||
) | ||
|
||
|
||
cpn.add_dataset( | ||
name='data_mu_D', | ||
id=2212011, | ||
is_data=True, | ||
processes=[procs.data_mu], | ||
keys=['/Muon0_Run2023D_v1', '/Muon0_Run2023D_v2', '/Muon1_Run2023D_v1', '/Muon1_Run2023D_v2'], | ||
n_files= 53 + 12 + 53 + 12, | ||
n_events= 100211533 + 21462916 + 100281976 + 21463645, | ||
aux={ | ||
'era': 'D' | ||
} | ||
) | ||
|
||
cpn.add_dataset( | ||
name='data_tau_D', | ||
id=2212012, | ||
is_data=True, | ||
processes=[procs.data_tau], | ||
keys=['/Tau_Run2023D_v1', '/Tau_Run2023D_v2'], | ||
n_files=31 + 7, | ||
n_events= 32092659 + 7246202, | ||
aux={ | ||
'era': 'D', | ||
} | ||
) | ||
|
Oops, something went wrong.