CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dt4DSegments_MTPatternReco4D_ParamDrift_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module for 4D rechit building
4 # The block of the reconstruction algo
6 dt4DSegments = cms.EDProducer("DTRecSegment4DProducer",
7  # The reconstruction algo and its parameter set
8  DTMeantimerPatternReco4DAlgo_ParamDrift,
9  # debug option
10  debug = cms.untracked.bool(False),
11  # name of the rechit 1D collection in the event
12  recHits1DLabel = cms.InputTag("dt1DRecHits"),
13  # name of the rechit 2D collection in the event
14  recHits2DLabel = cms.InputTag("dt2DSegments")
15 )
16 
17