Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:28

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoLocalTracker.SiStripClusterizer.SiStripClusterChargeCut_cfi import *
0004 from RecoLocalTracker.SiStripClusterizer.SiStripClusterizerConditionsESProducer_cfi import *
0005 
0006 DefaultClusterizer = cms.PSet(
0007     Algorithm = cms.string('ThreeThresholdAlgorithm'),
0008     ChannelThreshold = cms.double(2.0),
0009     SeedThreshold = cms.double(3.0),
0010     ClusterThreshold = cms.double(5.0),
0011     MaxSequentialHoles = cms.uint32(0),
0012     MaxSequentialBad = cms.uint32(1),
0013     MaxAdjacentBad = cms.uint32(0),
0014     MaxClusterSize = cms.uint32(768),
0015     RemoveApvShots     = cms.bool(True),
0016     clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone')),
0017     ConditionsLabel = cms.string("")
0018     )