File indexing completed on 2025-02-07 14:24:08
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_serial_sync_SiPixelPhase2DigiToCluster(*args, **kwargs):
0004 mod = cms.EDProducer('alpaka_serial_sync::SiPixelPhase2DigiToCluster',
0005 IncludeErrors = cms.bool(True),
0006 clusterThreshold_layer1 = cms.int32(4000),
0007 clusterThreshold_otherLayers = cms.int32(4000),
0008 ElectronPerADCGain = cms.double(1500),
0009 Phase2ReadoutMode = cms.int32(3),
0010 Phase2DigiBaseline = cms.uint32(1000),
0011 Phase2KinkADC = cms.uint32(8),
0012 InputDigis = cms.InputTag('simSiPixelDigis', 'Pixel'),
0013 mightGet = cms.optional.untracked.vstring,
0014 alpaka = cms.untracked.PSet(
0015 backend = cms.untracked.string(''),
0016 synchronize = cms.optional.untracked.bool
0017 )
0018 )
0019 for a in args:
0020 mod.update_(a)
0021 mod.update_(kwargs)
0022 return mod