CMS 3D CMS Logo

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