File indexing completed on 2024-11-23 03:28:25
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_serial_sync_PFClusterSoAProducer(*args, **kwargs):
0004 mod = cms.EDProducer('alpaka_serial_sync::PFClusterSoAProducer',
0005 pfRecHits = cms.InputTag(''),
0006 pfClusterParams = cms.ESInputTag('', ''),
0007 topology = cms.ESInputTag('', ''),
0008 synchronise = cms.bool(False),
0009 mightGet = cms.optional.untracked.vstring,
0010 alpaka = cms.untracked.PSet(
0011 backend = cms.untracked.string('')
0012 )
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod