Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:27:49

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaHEMuonFilter(*args, **kwargs):
0004   mod = cms.EDFilter('AlCaHEMuonFilter',
0005     processName = cms.string('HLT'),
0006     triggerResultLabel = cms.InputTag('TriggerResults', '', 'HLT'),
0007     muonLabel = cms.InputTag('muons'),
0008     triggers = cms.vstring(
0009       'HLT_IsoMu',
0010       'HLT_Mu'
0011     ),
0012     muonPtCut = cms.double(5),
0013     muonEtaCut = cms.double(1.305),
0014     pfCut = cms.bool(True),
0015     pfIsolationCut = cms.double(0.15),
0016     trackIsolationCut = cms.double(3),
0017     caloIsolationCut = cms.double(5),
0018     preScale = cms.int32(1),
0019     mightGet = cms.optional.untracked.vstring
0020   )
0021   for a in args:
0022     mod.update_(a)
0023   mod.update_(kwargs)
0024   return mod