Skip to content

Commit

Permalink
Merge pull request #6664 from Martin-Grunewald/L1fixMap74
Browse files Browse the repository at this point in the history
L1T/74X: Add missing postls1-customisation of hltL1GtObjectMap
  • Loading branch information
nclopezo committed Nov 29, 2014
2 parents a97dfe9 + 129e4b9 commit a72f4b3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions L1Trigger/L1TCommon/python/customsPostLS1.py
Expand Up @@ -73,6 +73,13 @@ def customiseSimL1EmulatorForPostLS1(process):
process.hltL1RawToDigiSeq = cms.Sequence(process.hltCaloStage1Digis + process.hltCaloStage1LegacyFormatDigis)
process.HLTL1UnpackerSequence.replace(process.hltGctDigis, process.hltL1RawToDigiSeq)

alist=['hltL1GtObjectMap']
for a in alist:
#print "INFO: checking for", a, "in process."
if hasattr(process,a):
#print "INFO: customizing ", a, "to use new calo Stage 1 digis converted to legacy format"
getattr(process, a).GctInputTag = cms.InputTag("hltCaloStage1LegacyFormatDigis")

alist=['hltL1extraParticles']
for a in alist:
#print "INFO: checking for", a, "in process."
Expand Down

0 comments on commit a72f4b3

Please sign in to comment.