File indexing completed on 2024-04-06 12:10:01
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMOffline.Trigger.DiDispStaMuonMonitor_cfi import hltDiDispStaMuonMonitoring
0004
0005
0006 hltDiDispStaMuonCosmicMonitoring = hltDiDispStaMuonMonitoring.clone(
0007 FolderName = 'HLT/EXO/DiDispStaMuon/DoubleL2Mu23NoVtx_2Cha_CosmicSeed/',
0008 numGenericTriggerEventPSet = dict(hltPaths = ["HLT_DoubleL2Mu23NoVtx_2Cha_CosmicSeed_v*"])
0009 )
0010
0011 hltDiDispStaMuon10VetoL3Mu0DxyMax1cmMonitoring = hltDiDispStaMuonMonitoring.clone(
0012 FolderName = 'HLT/EXO/DiDispStaMuon/DoubleL2Mu10NoVtx_2Cha_VetoL3Mu0DxyMax1cm/',
0013 numGenericTriggerEventPSet = dict(hltPaths = ["HLT_DoubleL2Mu10NoVtx_2Cha_VetoL3Mu0DxyMax1cm_v*"])
0014 )
0015
0016 hltDiDispStaMuonL2MuL3Mu16VetoL3Mu0DxyMax1cmMonitoring = hltDiDispStaMuonMonitoring.clone(
0017 FolderName = 'HLT/EXO/DiDispStaMuon/DoubleL2Mu_L3Mu16NoVtx_VetoL3Mu0DxyMax0p1cm/',
0018 numGenericTriggerEventPSet = dict(hltPaths = ["HLT_DoubleL2Mu_L3Mu16NoVtx_VetoL3Mu0DxyMax0p1cm_v*"])
0019 )
0020
0021 hltDiDispStaMuon10CosmicVetoL3Mu0DxyMax1cmMonitoring = hltDiDispStaMuonMonitoring.clone(
0022 FolderName = 'HLT/EXO/DiDispStaMuon/DoubleL2Mu10NoVtx_2Cha_CosmicSeed_VetoL3Mu0DxyMax1cm/',
0023 numGenericTriggerEventPSet = dict(hltPaths = ["HLT_DoubleL2Mu10NoVtx_2Cha_CosmicSeed_VetoL3Mu0DxyMax1cm_v*"])
0024 )
0025
0026 exoHLTdispStaMuonMonitoring = cms.Sequence(
0027 hltDiDispStaMuonMonitoring
0028 + hltDiDispStaMuonCosmicMonitoring
0029 + hltDiDispStaMuon10VetoL3Mu0DxyMax1cmMonitoring
0030 + hltDiDispStaMuonL2MuL3Mu16VetoL3Mu0DxyMax1cmMonitoring
0031 + hltDiDispStaMuon10CosmicVetoL3Mu0DxyMax1cmMonitoring
0032 )