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(''),
0013 andOr = cms.bool(True),
0014 throw = cms.bool(False)
0015 )
0016
0017 hltLocalRecoSiStrip = cms.Path(hltHighLevelSiStrip)
0018