Skip to content

Commit

Permalink
Merge pull request #3239 from cerminar/pclDropPromptCalibAlCareco_70x
Browse files Browse the repository at this point in the history
Change handling of AlCaReco skims dedicated to PCL in ConfigDP
  • Loading branch information
davidlange6 committed Apr 8, 2014
2 parents ec04bb8 + 4ac63d1 commit 163c46b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Configuration/DataProcessing/python/Reco.py
Expand Up @@ -63,7 +63,13 @@ def expressProcessing(self, globalTag, **args):
Proton collision data taking express processing
"""
step = stepALCAPRODUCER(args['skims'])
skims = args['skims']
# the AlCaReco skims for PCL should only run during AlCaSkimming step which uses the same configuration on the Tier0 side, for this reason we drop them here
pclWkflws = [x for x in skims if "PromptCalibProd" in x]
for wfl in pclWkflws:
skims.remove(wfl)

step = stepALCAPRODUCER(skims)
dqmStep= dqmSeq(args,'')
options = Options()
options.__dict__.update(defaultOptions.__dict__)
Expand Down

0 comments on commit 163c46b

Please sign in to comment.