Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siPixelClusters = cms.EDProducer("SiPixelClusterProducer",
0004     ChannelThreshold = cms.int32(1000),
0005     ClusterMode = cms.string('PixelThresholdClusterizer'),
0006     ClusterThreshold = cms.int32(4000),
0007     ClusterThreshold_L1 = cms.int32(4000),
0008     ElectronPerADCGain = cms.double(1500.0),
0009     MissCalibrate = cms.bool(False),
0010     Phase2Calibration = cms.bool(True),
0011     Phase2DigiBaseline = cms.double(1000.0),
0012     Phase2KinkADC = cms.int32(8),
0013     Phase2ReadoutMode = cms.int32(3),
0014     SeedThreshold = cms.int32(1000),
0015     SplitClusters = cms.bool(False),
0016     VCaltoElectronGain = cms.int32(1),
0017     VCaltoElectronGain_L1 = cms.int32(1),
0018     VCaltoElectronOffset = cms.int32(0),
0019     VCaltoElectronOffset_L1 = cms.int32(0),
0020     maxNumberOfClusters = cms.int32(-1),
0021     mightGet = cms.optional.untracked.vstring,
0022     payloadType = cms.string('None'),
0023     src = cms.InputTag("simSiPixelDigis","Pixel")
0024 )