Skip to content

Commit

Permalink
Merge pull request #8 from anigamova/2023_cmpgns
Browse files Browse the repository at this point in the history
Add 2023 (post and preBPix) campaigns
  • Loading branch information
anigamova authored Jan 22, 2025
2 parents 83cfac2 + 5fdd59d commit a0fba0a
Show file tree
Hide file tree
Showing 13 changed files with 4,947 additions and 0 deletions.
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

0 comments on commit a0fba0a

Please sign in to comment.