00001 import FWCore.ParameterSet.Config as cms 00002 00003 # module to build the 1d Clusters 00004 00005 dt1DClusters = cms.EDProducer("DTClusterer", 00006 debug = cms.untracked.bool(False), 00007 minLayers = cms.uint32(3), 00008 minHits = cms.uint32(3), 00009 recHits1DLabel = cms.InputTag("dt1DRecHits") 00010 ) 00011