Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-05-27 01:55:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_cuda_async_HGCalRecHitsProducer(*args, **kwargs):
0004   mod = cms.EDProducer('alpaka_cuda_async::HGCalRecHitsProducer',
0005     digis = cms.InputTag('hgcalDigis', 'DIGI', 'TEST'),
0006     calibSource = cms.ESInputTag('', ''),
0007     mappingSource = cms.ESInputTag('', ''),
0008     indexingSource = cms.ESInputTag('', ''),
0009     n_blocks = cms.int32(-1),
0010     n_threads = cms.int32(-1),
0011     n_hits_scale = cms.int32(-1),
0012     mightGet = cms.optional.untracked.vstring,
0013     alpaka = cms.untracked.PSet(
0014       backend = cms.untracked.string(''),
0015       synchronize = cms.optional.untracked.bool
0016     )
0017   )
0018   for a in args:
0019     mod.update_(a)
0020   mod.update_(kwargs)
0021   return mod