00001 import FWCore.ParameterSet.Config as cms 00002 00003 # Module for rechit building of simulated digis using the cell 00004 # parametrization 00005 # The reconstruction algo and its parameter set 00006 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import * 00007 dt1DRecHits = cms.EDProducer("DTRecHitProducer", 00008 # The reconstruction algo and its parameter set 00009 DTParametrizedDriftAlgo, 00010 debug = cms.untracked.bool(False), 00011 dtDigiLabel = cms.InputTag("muonDTDigis") 00012 ) 00013 00014