Skip to content

Commit

Permalink
Merge pull request #13457 from lveldere/fastsim-fix-l1muons-80X
Browse files Browse the repository at this point in the history
FastSim: fix L1 muons (bug fix)
  • Loading branch information
cmsbuild committed Mar 1, 2016
2 parents a5c91fe + 308fbe9 commit e4b1500
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion FastSimulation/Configuration/python/DigiAliases_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,12 @@ def loadTriggerDigiAliases():
cms.VPSet(
cms.PSet(type = cms.string("L1GlobalTriggerEvmReadoutRecord")),
cms.PSet(type = cms.string("L1GlobalTriggerObjectMapRecord")),
cms.PSet(type = cms.string("L1GlobalTriggerReadoutRecord")))})
cms.PSet(type = cms.string("L1GlobalTriggerReadoutRecord"))),
"simGmtDigis" :
cms.VPSet(
cms.PSet(type = cms.string("L1MuGMTReadoutCollection")),
cms.PSet(type = cms.string("L1MuGMTCands")))
})


gmtDigis = cms.EDAlias (
Expand Down
1 change: 1 addition & 0 deletions FastSimulation/Configuration/python/EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

def dropSimDigis(outputCommands):
outputCommands.append("drop *_sim*Digis*_*_*")
outputCommands.append("drop *_gmtDigis*_*_*")

extraPremixContent = ['keep *_mix_generalTracks_*']

Expand Down

0 comments on commit e4b1500

Please sign in to comment.