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