Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_serial_sync_HGCalSoALayerClustersProducer(**kwargs):
0004   mod = cms.EDProducer('alpaka_serial_sync::HGCalSoALayerClustersProducer',
0005     hgcalRecHitsLayerClustersSoA = cms.InputTag('TO BE DEFINED'),
0006     hgcalRecHitsSoA = cms.InputTag('TO BE DEFINED'),
0007     thresholdW0 = cms.double(2.9),
0008     positionDeltaRho2 = cms.double(1.69),
0009     mightGet = cms.optional.untracked.vstring,
0010     alpaka = cms.untracked.PSet(
0011       backend = cms.untracked.string('')
0012     )
0013   )
0014   for k,v in kwargs.items():
0015     setattr(mod, k, v)
0016   return mod