Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltHighLevelSiStrip = cms.EDFilter("HLTHighLevel",
0004     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0005     HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
0006                            'HLT_L2Mu[^_]*$',
0007                'HLT_Mu[^_]*$',
0008                'HLT_IsoMu[^_]*$',
0009                'HLT_DoubleMu[^_]*$',
0010     ),
0011 
0012     eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
0013     andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0014     throw = cms.bool(False)    # throw exception on unknown path names
0015 )
0016 
0017 hltLocalRecoSiStrip = cms.Path(hltHighLevelSiStrip)
0018