CMS 3D CMS Logo

DefaultClusterizer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 DefaultClusterizer = cms.PSet(
7  Algorithm = cms.string('ThreeThresholdAlgorithm'),
8  ChannelThreshold = cms.double(2.0),
9  SeedThreshold = cms.double(3.0),
10  ClusterThreshold = cms.double(5.0),
11  MaxSequentialHoles = cms.uint32(0),
12  MaxSequentialBad = cms.uint32(1),
13  MaxAdjacentBad = cms.uint32(0),
14  RemoveApvShots = cms.bool(True),
15  clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone')),
16  ConditionsLabel = cms.string("")
17  )