Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # module to build the 1d Clusters
0004 
0005 dt1DClusters = cms.EDProducer("DTClusterer",
0006     debug = cms.untracked.bool(False),
0007     minLayers = cms.uint32(3),
0008     minHits = cms.uint32(3),
0009     recHits1DLabel = cms.InputTag("dt1DRecHits")
0010 )
0011