Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def L1TEGammaFilteredCollectionProducer(*args, **kwargs):
0004   mod = cms.EDProducer('L1TEGammaFilteredCollectionProducer',
0005     inputTag = cms.InputTag('L1EGammaClusterEmuProducer'),
0006     quality = cms.int32(2),
0007     qualIsMask = cms.bool(True),
0008     applyQual = cms.bool(True),
0009     minBX = cms.int32(-1),
0010     maxBX = cms.int32(1),
0011     minPt = cms.double(5),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod