File indexing completed on 2025-02-07 14:23:59
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def TOoLLiPProducer(*args, **kwargs):
0004 mod = cms.EDProducer('TOoLLiPProducer',
0005 jets = cms.InputTag('scPFL1Puppi'),
0006 useRawPt = cms.bool(True),
0007 TOoLLiPVersion = cms.string('TOoLLiP_v1'),
0008 NNInput = cms.string('input:0'),
0009 NNOutput = cms.string('sequential/dense_2/Sigmoid'),
0010 maxJets = cms.int32(10),
0011 nParticles = cms.int32(10),
0012 minPt = cms.double(20),
0013 maxEta = cms.double(2.4),
0014 vtx = cms.InputTag('L1VertexFinderEmulator', 'L1VerticesEmulation'),
0015 mightGet = cms.optional.untracked.vstring
0016 )
0017 for a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod