File indexing completed on 2024-11-23 03:28:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def L1TrackJetEmulatorProducer(*args, **kwargs):
0004 mod = cms.EDProducer('L1TrackJetEmulatorProducer',
0005 L1TrackInputTag = cms.InputTag('l1tTTTracksFromTrackletEmulation', 'Level1TTTracks'),
0006 trk_zMax = cms.double(15),
0007 trk_ptMax = cms.double(200),
0008 trk_etaMax = cms.double(2.4),
0009 minTrkJetpT = cms.double(-1),
0010 etaBins = cms.int32(24),
0011 phiBins = cms.int32(27),
0012 zBins = cms.int32(1),
0013 d0_cutNStubs4 = cms.double(-1),
0014 d0_cutNStubs5 = cms.double(-1),
0015 lowpTJetMinTrackMultiplicity = cms.int32(2),
0016 lowpTJetThreshold = cms.double(50),
0017 highpTJetMinTrackMultiplicity = cms.int32(3),
0018 highpTJetThreshold = cms.double(100),
0019 displaced = cms.bool(False),
0020 nDisplacedTracks = cms.int32(2),
0021 mightGet = cms.optional.untracked.vstring
0022 )
0023 for a in args:
0024 mod.update_(a)
0025 mod.update_(kwargs)
0026 return mod