File indexing completed on 2025-04-30 22:23:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def L1TSC4NGJetProducer(*args, **kwargs):
0004 mod = cms.EDProducer('L1TSC4NGJetProducer',
0005 jets = cms.InputTag('l1tSC4PFL1PuppiExtendedEmulator'),
0006 useRawPt = cms.bool(True),
0007 l1tSC4NGJetModelPath = cms.string('L1TSC4NGJetModel_v0'),
0008 maxJets = cms.int32(16),
0009 nParticles = cms.int32(16),
0010 minPt = cms.double(10),
0011 maxEta = cms.double(2.4),
0012 classes = cms.vstring(
0013 'b',
0014 'c',
0015 'uds',
0016 'g',
0017 'tau_p',
0018 'tau_n',
0019 'mu',
0020 'e'
0021 ),
0022 mightGet = cms.optional.untracked.vstring
0023 )
0024 for a in args:
0025 mod.update_(a)
0026 mod.update_(kwargs)
0027 return mod