CMS 3D CMS Logo

siPixelClusters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 siPixelClusters = cms.EDProducer("SiPixelClusterProducer",
4  ChannelThreshold = cms.int32(1000),
5  ClusterMode = cms.string('PixelThresholdClusterizer'),
6  ClusterThreshold = cms.int32(4000),
7  ClusterThreshold_L1 = cms.int32(4000),
8  ElectronPerADCGain = cms.double(1500.0),
9  MissCalibrate = cms.bool(False),
10  Phase2Calibration = cms.bool(True),
11  Phase2DigiBaseline = cms.double(1000.0),
12  Phase2KinkADC = cms.int32(8),
13  Phase2ReadoutMode = cms.int32(3),
14  SeedThreshold = cms.int32(1000),
15  SplitClusters = cms.bool(False),
16  VCaltoElectronGain = cms.int32(1),
17  VCaltoElectronGain_L1 = cms.int32(1),
18  VCaltoElectronOffset = cms.int32(0),
19  VCaltoElectronOffset_L1 = cms.int32(0),
20  maxNumberOfClusters = cms.int32(-1),
21  mightGet = cms.optional.untracked.vstring,
22  payloadType = cms.string('None'),
23  src = cms.InputTag("simSiPixelDigis","Pixel")
24 )