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 l1tInputDataProducer = cms.EDProducer('InputDataProducer',
0006   #=== The name of the output collection
0007   outputCollectionName = cms.string("InputData"),
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   hepMCInputTag = cms.InputTag("generatorSmeared","","SIM"),
0023   genParticleInputTag = cms.InputTag("genParticles",""),
0024   tpInputTag = cms.InputTag("mix", "MergedTrackTruth"),
0025   tpValueMapInputTag = cms.InputTag("l1tTPStubValueMapProducer:TPs"),
0026   stubInputTag = cms.InputTag("TTStubsFromPhase2TrackerDigis", "StubAccepted"),
0027 
0028   #=== Debug printout
0029   debug = l1tVertexNTupler.debug,
0030 )