File indexing completed on 2023-11-06 23:38:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 siStripClusterizerFromRawGPU = cms.EDProducer('SiStripClusterizerFromRawGPU',
0004 ProductLabel = cms.InputTag('rawDataCollector'),
0005 ConditionsLabel = cms.string(''),
0006 Clusterizer = cms.PSet(
0007 Algorithm = cms.string('ThreeThresholdAlgorithm'),
0008 ConditionsLabel = cms.string(''),
0009 ChannelThreshold = cms.double(2),
0010 SeedThreshold = cms.double(3),
0011 ClusterThreshold = cms.double(5),
0012 MaxSequentialHoles = cms.uint32(0),
0013 MaxSequentialBad = cms.uint32(1),
0014 MaxAdjacentBad = cms.uint32(0),
0015 MaxClusterSize = cms.uint32(768),
0016 RemoveApvShots = cms.bool(True),
0017 setDetId = cms.bool(True),
0018 clusterChargeCut = cms.PSet(
0019 value = cms.double(-1)
0020 )
0021 ),
0022 mightGet = cms.optional.untracked.vstring
0023 )