Back to home page

Project CMSSW displayed by LXR

 
 

    


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   #=== The name of the output collection
0007   outputCollectionNames = cms.vstring("TPs","TPsUse","allMatchedTPs"),
0008   
0009   #=== Cuts on MC truth particles (i.e., tracking particles) used for tracking efficiency measurements.
0010   GenCuts = l1tVertexNTupler.GenCuts,
0011 
0012   #=== Rules for deciding when the track finding has found an L1 track candidate
0013   L1TrackDef = l1tVertexNTupler.L1TrackDef,
0014 
0015   #=== Rules for deciding when a reconstructed L1 track matches a MC truth particle (i.e. tracking particle).
0016   TrackMatchDef = l1tVertexNTupler.TrackMatchDef,
0017 
0018   #=== Vertex Reconstruction configuration
0019   VertexReconstruction = l1tVertexProducer.VertexReconstruction,
0020 
0021   #=== Input collections
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   #=== Debug printout
0029   debug = l1tVertexNTupler.debug,
0030 )