Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def L1TTkMuonFilter(*args, **kwargs):
0004   mod = cms.EDFilter('L1TTkMuonFilter',
0005     saveTags = cms.bool(True),
0006     MinPt = cms.double(-1),
0007     MinEta = cms.double(-5),
0008     MaxEta = cms.double(5),
0009     MinN = cms.int32(1),
0010     inputTag = cms.InputTag('L1TkMuons'),
0011     applyQuality = cms.bool(False),
0012     applyDuplicateRemoval = cms.bool(True),
0013     qualities = cms.vint32(),
0014     Scalings = cms.PSet(
0015       barrel = cms.vdouble(
0016         0,
0017         1,
0018         0
0019       ),
0020       overlap = cms.vdouble(
0021         0,
0022         1,
0023         0
0024       ),
0025       endcap = cms.vdouble(
0026         0,
0027         1,
0028         0
0029       )
0030     ),
0031     mightGet = cms.optional.untracked.vstring
0032   )
0033   for a in args:
0034     mod.update_(a)
0035   mod.update_(kwargs)
0036   return mod