CMS 3D CMS Logo

dt1DRecHits_ParamDrift_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module for rechit building of simulated digis using the cell
4 # parametrization
5 # The reconstruction algo and its parameter set
7 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
8  # The reconstruction algo and its parameter set
9  DTParametrizedDriftAlgo,
10  debug = cms.untracked.bool(False),
11  dtDigiLabel = cms.InputTag("muonDTDigis")
12 )
13 
14