Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-18 03:41:46

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