CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQM/HLTEvF/python/HLTLocalRecoSiPixel_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from DQM.SiPixelMonitorClient.SiPixelMuonHLT_cfi import *
00004 
00005 hltHighLevelSiPixel = cms.EDFilter("HLTHighLevel",
00006     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
00007     HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
00008                            'HLT_L2Mu[^_]*$',
00009                            'HLT_Mu[^_]*$',
00010                            'HLT_IsoMu[^_]*$',
00011                            'HLT_DoubleMu[^_]*$',
00012     ),
00013 
00014     eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
00015     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
00016     throw = cms.bool(False)    # throw exception on unknown path names
00017 )
00018 
00019 hltLocalRecoSiPixel = cms.Path(hltHighLevelSiPixel*siPixelMuonHLT)
00020