Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_cuda_async_SiPixelPhase2DigiToCluster(*args, **kwargs):
0004   mod = cms.EDProducer('alpaka_cuda_async::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