File indexing completed on 2023-03-17 10:55:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from DQM.RPCMonitorDigi.RPCResidualsHLT_cfi import *
0005
0006 hltHighLevelRPC = cms.EDFilter("HLTHighLevel",
0007 TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0008 HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
0009 'HLT_L2Mu[^_]*$',
0010 'HLT_Mu[^_]*$',
0011 'HLT_IsoMu[^_]*$',
0012 'HLT_DoubleMu[^_]*$',
0013 ),
0014
0015
0016
0017 eventSetupPathsKey = cms.string(''),
0018 andOr = cms.bool(True),
0019 throw = cms.bool(False)
0020 )
0021
0022 hltLocalRecoRPC = cms.Path(hltHighLevelRPC*rpcSourceHLT)