File indexing completed on 2024-09-13 22:52:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltSiPixelClusters = 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 )
0025
0026 from Configuration.ProcessModifiers.alpaka_cff import alpaka
0027 _hltSiPixelClusters = cms.EDProducer('SiPixelDigisClustersFromSoAAlpakaPhase2',
0028 src = cms.InputTag('hltPhase2SiPixelClustersSoA'),
0029 clusterThreshold_layer1 = cms.int32(4000),
0030 clusterThreshold_otherLayers = cms.int32(4000),
0031 produceDigis = cms.bool(False),
0032 storeDigis = cms.bool(False)
0033 )
0034 alpaka.toReplaceWith(hltSiPixelClusters, _hltSiPixelClusters)