CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/DQM/HLTEvF/python/HLTLocalRecoDT_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # DT DQM
00004 from DQM.DTMonitorModule.dtResolutionTask_hlt_cfi import *
00005 from DQM.DTMonitorModule.dtSegmentTask_hlt_cfi import *
00006 from DQM.DTMonitorClient.dtSegmentAnalysisTest_hlt_cfi import *
00007 from DQM.DTMonitorClient.dtResolutionAnalysisTest_hlt_cfi import *
00008 
00009 HLTHighLevel = cms.EDFilter("HLTHighLevel",
00010     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
00011     HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
00012                         'HLT_L2Mu[^_]*$', 
00013                         'HLT_Mu[^_]*$', 
00014                         'HLT_IsoMu[^_]*$', 
00015                         'HLT_DoubleMu[^_]*$', 
00016                         ),
00017     #HLTPaths = cms.vstring('HLT_L1MuOpen','HLT_L1Mu', 'HLT_L1Mu20',
00018     #                   'HLT_L2Mu9','HLT_L2Mu11',
00019 #                       'HLT_Mu3', 'HLT_Mu5', 'HLT_Mu9'),
00020     eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
00021     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
00022     throw = cms.bool(False)    # throw exception on unknown path names
00023 )
00024 
00025 dtClient = cms.Sequence(dtResolutionTaskHLT+dtSegmentTaskHLT+dtResolutionTestHLT+dtSegmentTestkHLT)
00026 hltLocalRecoDT = cms.Path(HLTHighLevel*dtClient)
00027