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