File indexing completed on 2024-04-06 12:07:38
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from DQM.DTMonitorModule.dtResolutionTask_hlt_cfi import *
0005 from DQM.DTMonitorModule.dtSegmentTask_hlt_cfi import *
0006 from DQM.DTMonitorClient.dtSegmentAnalysisTest_hlt_cfi import *
0007 from DQM.DTMonitorClient.dtResolutionAnalysisTest_hlt_cfi import *
0008
0009 hltHighLevel = cms.EDFilter("HLTHighLevel",
0010 TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0011 HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
0012 'HLT_L2Mu[^_]*$',
0013 'HLT_Mu[^_]*$',
0014 'HLT_IsoMu[^_]*$',
0015 'HLT_DoubleMu[^_]*$',
0016 ),
0017
0018
0019
0020 eventSetupPathsKey = cms.string(''),
0021 andOr = cms.bool(True),
0022 throw = cms.bool(False)
0023 )
0024
0025 dtClient = cms.Sequence(dtResolutionTaskHLT+dtSegmentTaskHLT+dtResolutionTestHLT+dtSegmentTestkHLT)
0026 hltLocalRecoDT = cms.Path(hltHighLevel*dtClient)
0027