File indexing completed on 2024-04-06 12:21:30
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from L1Trigger.Phase2L1ParticleFlow.l1pfJetMet_cff import L1TPFJetsExtendedTask
0004
0005 from L1Trigger.Phase2L1ParticleFlow.TOoLLiPProducer_cfi import TOoLLiPProducer
0006 l1tTOoLLiPProducer = TOoLLiPProducer.clone(
0007 jets = ("l1tSC4PFL1PuppiExtended", ""),
0008 maxJets = 6,
0009 minPt = 10,
0010 vtx = ("l1tVertexFinderEmulator","L1VerticesEmulation")
0011 )
0012
0013
0014 l1tTOoLLiPProducerCorrectedEmulator = l1tTOoLLiPProducer.clone(
0015 jets = ("l1tSC4PFL1PuppiExtendedCorrectedEmulator", "")
0016 )
0017
0018 L1TTOoLLiPTask = cms.Task(
0019 L1TPFJetsExtendedTask, l1tTOoLLiPProducer, l1tTOoLLiPProducerCorrectedEmulator
0020 )