File indexing completed on 2024-04-06 12:22:12
0001 import FWCore.ParameterSet.Config as cms
0002 from L1Trigger.VertexFinder.l1tVertexNTupler_cfi import l1tVertexNTupler
0003 from L1Trigger.VertexFinder.l1tVertexProducer_cfi import l1tVertexProducer
0004
0005 l1tTPStubValueMapProducer = cms.EDProducer('TPStubValueMapProducer',
0006
0007 outputCollectionNames = cms.vstring("TPs","TPsUse","allMatchedTPs"),
0008
0009
0010 GenCuts = l1tVertexNTupler.GenCuts,
0011
0012
0013 L1TrackDef = l1tVertexNTupler.L1TrackDef,
0014
0015
0016 TrackMatchDef = l1tVertexNTupler.TrackMatchDef,
0017
0018
0019 VertexReconstruction = l1tVertexProducer.VertexReconstruction,
0020
0021
0022 l1TracksTruthMapInputTags = cms.InputTag("TTTrackAssociatorFromPixelDigis", "Level1TTTracks"),
0023 tpInputTag = cms.InputTag("mix", "MergedTrackTruth"),
0024 stubInputTag = cms.InputTag("l1tTTStubsFromPhase2TrackerDigis", "StubAccepted"),
0025 stubTruthInputTag = cms.InputTag("l1tTTStubAssociatorFromPixelDigis", "StubAccepted"),
0026 clusterTruthInputTag = cms.InputTag("l1tTTClusterAssociatorFromPixelDigis", "ClusterAccepted"),
0027
0028
0029 debug = l1tVertexNTupler.debug,
0030 )