CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dt1dClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # module to build the 1d Clusters
4 
5 dt1DClusters = cms.EDProducer("DTClusterer",
6  debug = cms.untracked.bool(False),
7  minLayers = cms.uint32(3),
8  minHits = cms.uint32(3),
9  recHits1DLabel = cms.InputTag("dt1DRecHits")
10 )
11