Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:05:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaLowPUHBHEMuonFilter(*args, **kwargs):
0004   mod = cms.EDFilter('AlCaLowPUHBHEMuonFilter',
0005     processName = cms.string('HLT'),
0006     triggerResultLabel = cms.InputTag('TriggerResults', '', 'HLT'),
0007     muonLabel = cms.InputTag('muons'),
0008     minimumMuonpT = cms.double(10),
0009     minimumMuoneta = cms.double(1.305),
0010     triggers = cms.vstring(
0011       'HLT_L1DoubleMu',
0012       'HLT_L1SingleMu'
0013     ),
0014     pfIsolationCut = cms.double(0.15),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod