Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaHBHEMuonFilter(*args, **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 a in args:
0022     mod.update_(a)
0023   mod.update_(kwargs)
0024   return mod