CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTLocalRecoDT_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # DT DQM
8 
9 hltHighLevel = cms.EDFilter("HLTHighLevel",
10  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
11  HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
12  'HLT_L2Mu[^_]*$',
13  'HLT_Mu[^_]*$',
14  'HLT_IsoMu[^_]*$',
15  'HLT_DoubleMu[^_]*$',
16  ),
17  #HLTPaths = cms.vstring('HLT_L1MuOpen','HLT_L1Mu', 'HLT_L1Mu20',
18  # 'HLT_L2Mu9','HLT_L2Mu11',
19 # 'HLT_Mu3', 'HLT_Mu5', 'HLT_Mu9'),
20  eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
21  andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
22  throw = cms.bool(False) # throw exception on unknown path names
23 )
24 
25 dtClient = cms.Sequence(dtResolutionTaskHLT+dtSegmentTaskHLT+dtResolutionTestHLT+dtSegmentTestkHLT)
26 hltLocalRecoDT = cms.Path(hltHighLevel*dtClient)
27