CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dt2DSegments_CombPatternReco2D_ParamDrift_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module for 2D rechit building
4 # The algo uses the Parametrized Drift Velocity (which is a 1D rec hit algo)
5 # The block of the reconstruction algo
7 dt2DSegments = cms.EDProducer("DTRecSegment2DProducer",
8  # The reconstruction algo and its parameter set
9  DTCombinatorialPatternReco2DAlgo_ParamDrift,
10  # debuggin opt
11  debug = cms.untracked.bool(False),
12  # name of the rechit 1D collection in the event
13  recHits1DLabel = cms.InputTag("dt1DRecHits")
14 )
15 
16