CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTLocalRecoSiPixel_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 hltHighLevelSiPixel = cms.EDFilter("HLTHighLevel",
6  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
7  HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
8  'HLT_L2Mu[^_]*$',
9  'HLT_Mu[^_]*$',
10  'HLT_IsoMu[^_]*$',
11  'HLT_DoubleMu[^_]*$',
12  ),
13 
14  eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
15  andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
16  throw = cms.bool(False) # throw exception on unknown path names
17 )
18 
19 hltLocalRecoSiPixel = cms.Path(hltHighLevelSiPixel*siPixelMuonHLT)
20