Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2023 (post and preBPix) campaigns #8

Merged
merged 6 commits into from
Jan 22, 2025
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
28 changes: 28 additions & 0 deletions cmsdb/campaigns/run3_2023_postBPix_nano_tau_skim_v2/__init__.py
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 cmsdb/campaigns/run3_2023_postBPix_nano_tau_skim_v2/data.py
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',
}
)

Loading
Loading