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 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(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
0015     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0016     throw = cms.bool(False)    # throw exception on unknown path names
0017 )
0018 
0019 hltLocalRecoSiPixel = cms.Path(hltHighLevelSiPixel*siPixelMuonHLT)
0020