File indexing completed on 2025-05-09 22:37:19
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def L1SeedConePFJetProducer(*args, **kwargs):
0004 mod = cms.EDProducer('L1SeedConePFJetProducer',
0005 L1PFObjects = cms.InputTag('l1tLayer1', 'Puppi'),
0006 nJets = cms.uint32(16),
0007 coneSize = cms.double(0.4),
0008 wideConeJet = cms.bool(False),
0009 HW = cms.bool(False),
0010 debug = cms.bool(False),
0011 doCorrections = cms.bool(False),
0012 correctorFile = cms.string(''),
0013 correctorDir = cms.string(''),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod