CMS 3D CMS Logo

TOoLLiPProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from L1Trigger.Phase2L1ParticleFlow.l1pfJetMet_cff import L1TPFJetsExtendedTask
4 
5 from L1Trigger.Phase2L1ParticleFlow.TOoLLiPProducer_cfi import TOoLLiPProducer
6 l1tTOoLLiPProducer = TOoLLiPProducer.clone(
7  jets = ("l1tSC4PFL1PuppiExtended", ""),
8  maxJets = 6,
9  minPt = 10,
10  vtx = ("l1tVertexFinderEmulator","L1VerticesEmulation")
11 )
12 
13 
14 l1tTOoLLiPProducerCorrectedEmulator = l1tTOoLLiPProducer.clone(
15  jets = ("l1tSC4PFL1PuppiExtendedCorrectedEmulator", "")
16 )
17 
18 L1TTOoLLiPTask = cms.Task(
19  L1TPFJetsExtendedTask, l1tTOoLLiPProducer, l1tTOoLLiPProducerCorrectedEmulator
20 )