Skip to content

Commit 488561a

Browse files
committed
2024 skims wfs
1 parent eb45085 commit 488561a

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

Configuration/PyReleaseValidation/python/relval_standard.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,20 @@
589589

590590
## special HLT scouting workflow (with hardcoded private input file from ScoutingPFMonitor skimmed to remove all events without scouting)
591591
workflows[145.415] = ['',['HLTDR3_ScoutingPFMonitor_2024','RECONANORUN3_ScoutingPFMonitor_reHLT_2024','HARVESTRUN3_ScoutingPFMonitor_2024']]
592+
592593
##################################################################
594+
### run3 (2024) skims - Era F ###
595+
workflows[146.101] = ['',['RunZeroBias2024F','HLTDR3_2024','SKIMZEROBIASRUN3_reHLT_2024','HARVESTRUN3_ZB_2024']]
596+
workflows[146.102] = ['',['RunBTagMu2024F','HLTDR3_2024','SKIMBTAGMURUN3_reHLT_2024','HARVESTRUN3_2024']]
597+
workflows[146.103] = ['',['RunJetMET02024F','HLTDR3_2024','SKIMJETMET0RUN3_reHLT_2024','HARVESTRUN3_2024']]
598+
workflows[146.104] = ['',['RunDisplacedJet2024F','HLTDR3_2024','SKIMDISPLACEDJETRUN3_reHLT_2024','HARVESTRUN3_2024']]
599+
workflows[146.105] = ['',['RunEGamma02024F','HLTDR3_2024','SKIMEGAMMA0RUN3_reHLT_2024','HARVESTRUN3_2024']]
600+
workflows[146.106] = ['',['RunTau2024F','HLTDR3_2024','SKIMTAURUN3_reHLT_2024','HARVESTRUN3_2024']]
601+
workflows[146.107] = ['',['RunMuon02024F','HLTDR3_2024','SKIMMUON0RUN3_reHLT_2024','HARVESTRUN3_2024']]
602+
workflows[146.108] = ['',['RunMuonEG2024F','HLTDR3_2024','SKIMMUONEGRUN3_reHLT_2024','HARVESTRUN3_2024']]
603+
workflows[146.109] = ['',['RunNoBPTX2024F','HLTDR3_2024','SKIMNOBPTXRUN3_reHLT_2024','HARVESTRUN3_2024']]
604+
workflows[146.110] = ['',['RunHcalNZS2024F','HLTDR3_2024','SKIMHCALNZSRUN3_reHLT_2024','HARVESTRUN3_2024']]
605+
workflows[146.111] = ['',['RunPark2MuonLowMass02024F','HLTDR3_2024','SKIMPARKINGDOUBLEMUONLOWMASS0RUN3_reHLT_2024','HARVESTRUN3_2024']]
593606

594607
### fastsim ###
595608
workflows[5.1] = ['TTbarFS', ['TTbarFS','HARVESTFS']]

Configuration/PyReleaseValidation/python/relval_steps.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3284,11 +3284,21 @@ def gen2024HiMix(fragment,howMuch):
32843284
for s in autoSkim.keys():
32853285

32863286
if 'ZeroBias' in s:
3287-
steps['SKIM'+s.upper()+'RUN3_reHLT_2023'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@rerecoZeroBias+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2023']])
3287+
steps['SKIM'+s.upper()+'RUN3_reHLT_2023'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@rerecoZeroBiasFakeHLT+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2023']])
32883288
elif 'Cosmics' in s:
32893289
steps['SKIM'+s.upper()+'RUN3_reHLT_2023'] = merge([{'--scenario':'cosmics', '-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,DQM'%(autoSkim[s]), '--datatier':'RECO,DQMIO', '--eventcontent':'RECO,DQM'},steps['RECONANORUN3_reHLT_2023']])
32903290
else:
3291-
steps['SKIM'+s.upper()+'RUN3_reHLT_2023'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@standardDQM+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2023']])
3291+
steps['SKIM'+s.upper()+'RUN3_reHLT_2023'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@standardDQMFakeHLT+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2023']])
3292+
3293+
# Run-3 2024 skim
3294+
for s in autoSkim.keys():
3295+
3296+
if 'ZeroBias' in s:
3297+
steps['SKIM'+s.upper()+'RUN3_reHLT_2024'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@rerecoZeroBias+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2024']])
3298+
elif 'Cosmics' in s:
3299+
steps['SKIM'+s.upper()+'RUN3_reHLT_2024'] = merge([{'--scenario':'cosmics', '-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,DQM'%(autoSkim[s]), '--datatier':'RECO,DQMIO', '--eventcontent':'RECO,DQM'},steps['RECONANORUN3_reHLT_2024']])
3300+
else:
3301+
steps['SKIM'+s.upper()+'RUN3_reHLT_2024'] = merge([{'-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,NANO,DQM:@standardDQM+@miniAODDQM+@nanoAODDQM'%(autoSkim[s])},steps['RECONANORUN3_reHLT_2024']])
32923302

32933303
# mask away - to be removed once we'll migrate the matrix to be fully unscheduled for RECO step
32943304
#steps['RECOmAOD']=merge([step3DefaultsUnsch])

0 commit comments

Comments
 (0)