CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/HLTriggerOffline/Muon/python/outputCommands_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # When re-running HLT, this function will provide a set of output commands to
00004 # provide the minimal content necessary for input to HLTMuonValidator.
00005 def outputCommands(hlt_name):
00006     return cms.untracked.vstring(
00007         'drop *_*_*_*',
00008         'keep *_genParticles_*_*',
00009         'keep recoMuons_muons_*_RECO',
00010         'keep *_hltL1extraParticles_*_%s' % hlt_name,
00011         'keep *_hltL2Muons_*_%s' % hlt_name,
00012         'keep *_hltL3Muons_*_%s' % hlt_name,
00013         'keep *_hltL2MuonCandidates_*_%s' % hlt_name,
00014         'keep *_hltL3MuonCandidates_*_%s' % hlt_name,
00015         'keep *_hltTriggerSummaryRAW_*_%s' % hlt_name,
00016         'keep *_TriggerResults_*_%s' % hlt_name,
00017         'keep *_hltL2MuonSeeds_*_%s' % hlt_name,
00018         'keep *_hltL3TrajectorySeed_*_%s' % hlt_name,
00019         )