Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # DT DQM
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     #HLTPaths = cms.vstring('HLT_L1MuOpen','HLT_L1Mu', 'HLT_L1Mu20',
0018     #           'HLT_L2Mu9','HLT_L2Mu11',
0019 #           'HLT_Mu3', 'HLT_Mu5', 'HLT_Mu9'),
0020     eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
0021     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0022     throw = cms.bool(False)    # throw exception on unknown path names
0023 )
0024 
0025 dtClient = cms.Sequence(dtResolutionTaskHLT+dtSegmentTaskHLT+dtResolutionTestHLT+dtSegmentTestkHLT)
0026 hltLocalRecoDT = cms.Path(hltHighLevel*dtClient)
0027