Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:19

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TOoLLiPProducer(**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 k,v in kwargs.items():
0018     setattr(mod, k, v)
0019   return mod