Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_rocm_async_PFClusterSoAProducer(**kwargs):
0004   mod = cms.EDProducer('alpaka_rocm_async::PFClusterSoAProducer',
0005     pfRecHits = cms.InputTag(''),
0006     pfClusterParams = cms.ESInputTag('', ''),
0007     topology = cms.ESInputTag('', ''),
0008     synchronise = cms.bool(False),
0009     pfRecHitFractionAllocation = cms.int32(120),
0010     mightGet = cms.optional.untracked.vstring,
0011     alpaka = cms.untracked.PSet(
0012       backend = cms.untracked.string('')
0013     )
0014   )
0015   for k,v in kwargs.items():
0016     setattr(mod, k, v)
0017   return mod