Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:58:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaHBHEMuonFilter(**kwargs):
0004   mod = cms.EDFilter('AlCaHBHEMuonFilter',
0005     ProcessName = cms.string('HLT'),
0006     TriggerResultLabel = cms.InputTag('TriggerResults', '', 'HLT'),
0007     MuonLabel = cms.InputTag('muons'),
0008     MinimumMuonP = cms.double(5),
0009     Triggers = cms.vstring(
0010       'HLT_IsoMu',
0011       'HLT_Mu'
0012     ),
0013     PFCut = cms.bool(True),
0014     PFIsolationCut = cms.double(0.12),
0015     TrackIsolationCut = cms.double(3),
0016     CaloIsolationCut = cms.double(5),
0017     PreScale = cms.int32(2),
0018     OnlyOuterTrack = cms.bool(False),
0019     mightGet = cms.optional.untracked.vstring
0020   )
0021   for k,v in kwargs.items():
0022     setattr(mod, k, v)
0023   return mod