Skip to content

Commit

Permalink
Merge pull request #41889 from perrotta/L1NANOinPromptReco_13_1_X
Browse files Browse the repository at this point in the history
Add L1NANO in Prompt/Tier0 configuration [13_1_X]
  • Loading branch information
cmsbuild authored Jun 8, 2023
2 parents 61ca664 + cd92dac commit c2dd0c3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Configuration/DataProcessing/python/Reco.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,17 @@ def promptReco(self, globalTag, **args):

miniAODStep = ''
nanoAODStep = ''
if not 'customs' in args:
args['customs']= []

if 'outputs' in args:
print(args['outputs'])
print(args['outputs'])
for a in args['outputs']:
if a['dataTier'] == 'MINIAOD':
miniAODStep = ',PAT'
miniAODStep = ',PAT'
if a['dataTier'] in ['NANOAOD', 'NANOEDMAOD']:
nanoAODStep = ',NANO'
nanoAODStep = ',NANO'
args['customs'].append('PhysicsTools/NanoAOD/nano_cff.nanoL1TrigObjCustomize')

self._checkRepackedFlag(options, **args)

Expand Down

0 comments on commit c2dd0c3

Please sign in to comment.