00001 import FWCore.ParameterSet.Config as cms
00002
00003 siStripClusters = cms.EDFilter("SiStripClusterizer",
00004 MaxHolesInCluster = cms.int32(0),
00005 ChannelThreshold = cms.double(2.0),
00006 DigiProducersList = cms.VPSet(cms.PSet(
00007 DigiLabel = cms.string('ZeroSuppressed'),
00008 DigiProducer = cms.string('simSiStripDigis')
00009 ),
00010 cms.PSet(
00011 DigiLabel = cms.string('VirginRaw'),
00012 DigiProducer = cms.string('siStripZeroSuppression')
00013 ),
00014 cms.PSet(
00015 DigiLabel = cms.string('ProcessedRaw'),
00016 DigiProducer = cms.string('siStripZeroSuppression')
00017 ),
00018 cms.PSet(
00019 DigiLabel = cms.string('ScopeMode'),
00020 DigiProducer = cms.string('siStripZeroSuppression')
00021 )),
00022 ClusterMode = cms.string('ThreeThresholdClusterizer'),
00023 SeedThreshold = cms.double(3.0),
00024 SiStripQualityLabel = cms.string(''),
00025
00026 ClusterThreshold = cms.double(5.0)
00027 )
00028
00029
00030