00001 import FWCore.ParameterSet.Config as cms 00002 00003 # Module for 4D rechit building 00004 # The block of the reconstruction algo 00005 from RecoLocalMuon.DTSegment.DTRefitAndCombineReco4DAlgo_cfi import * 00006 dt4DSegments = cms.EDProducer("DTRecSegment4DProducer", 00007 # The reconstruction algo and its parameter set 00008 DTRefitAndCombineReco4DAlgo, 00009 # debuggin opt 00010 debug = cms.untracked.bool(False), 00011 # name of the rechit 2D collection in the event 00012 recHits1DLabel = cms.InputTag("dt1DRecHits"), 00013 # name of the rechit 2D collection in the event 00014 recHits2DLabel = cms.InputTag("dt2DSegments") 00015 ) 00016 00017