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 NanoAOD DQM to RelVal wfs #35412

Merged
merged 9 commits into from Oct 8, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Expand Up @@ -3504,6 +3504,15 @@ def gen2021HiMix(fragment,howMuch):
'--geometry' : geom
}

upgradeStepDict['NanoDQM'][k] = {'-s':'NANO,DQM:@nanoAODDQM',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the rational to define the NanoDQM here ?
I do not see the miniAODDQM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I have updated the PR accordingly.

'--conditions':gt,
'--datatier':'NANOAODSIM,DQMIO',
'-n':'10',
'--eventcontent':'NANOEDMAODSIM,DQM',
'--filein':'file:step3_inMINIAODSIM.root',
'--geometry' : geom
}

# setup baseline and variations
for specialType,specialWF in upgradeWFs.items():
specialWF.setup(upgradeStepDict, k, upgradeProperties[year][k])
Expand Down
Expand Up @@ -174,6 +174,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
'ALCA',
'Nano',
'MiniAOD',
'NanoDQM',
],
PU = [
'DigiTrigger',
Expand All @@ -187,6 +188,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
'HARVESTGlobal',
'MiniAOD',
'Nano',
'NanoDQM',
],
suffix = '',
offset = 0.0,
Expand Down Expand Up @@ -675,6 +677,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
'MiniAOD',
'ALCA',
'Nano',
'NanoDQM',
],
PU = [
'GenSimHLBeamSpot14',
Expand All @@ -687,6 +690,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
'MiniAOD',
'ALCA',
'Nano',
'NanoDQM',
],
suffix = '_ProdLike',
offset = 0.21,
Expand Down Expand Up @@ -1208,7 +1212,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
'HLTmenu': '@relval2021',
'Era' : 'Run3',
'BeamSpot': 'Run3RoundOptics25ns13TeVLowSigmaZ',
'ScenToRun' : ['GenSim','Digi','Reco','HARVEST','ALCA'],
'ScenToRun' : ['GenSim','Digi','Reco','HARVEST','ALCA','NanoDQM'],
},
'2021Design' : {
'Geom' : 'DB:Extended',
Expand Down Expand Up @@ -1241,7 +1245,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
upgradeProperties[2017][key+'PU'] = deepcopy(upgradeProperties[2017][key])
upgradeProperties[2017][key+'PU']['ScenToRun'] = ['GenSim','DigiPU'] + \
(['RecoPU','HARVESTPU'] if '202' in key else ['RecoFakeHLTPU','HARVESTFakeHLTPU']) + \
(['Nano'] if 'Design' not in key else [])
(['NanoDQM'] if 'Design' not in key else [])

upgradeProperties[2026] = {
'2026D49' : {
Expand Down