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