Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:55:03

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # RPC DQM
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     #HLTPaths = cms.vstring('HLT_L1MuOpen','HLT_L1Mu', 'HLT_L1Mu20',
0015     #           'HLT_L2Mu9','HLT_L2Mu11',
0016 #           'HLT_Mu3', 'HLT_Mu5', 'HLT_Mu9'),
0017     eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
0018     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0019     throw = cms.bool(False)    # throw exception on unknown path names
0020 )
0021 
0022 hltLocalRecoRPC = cms.Path(hltHighLevelRPC*rpcSourceHLT)