File indexing completed on 2024-11-23 03:28:29
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_cuda_async_PixelVertexProducerAlpakaPhase1(*args, **kwargs):
0004 mod = cms.EDProducer('alpaka_cuda_async::PixelVertexProducerAlpakaPhase1',
0005 oneKernel = cms.bool(True),
0006 useDensity = cms.bool(True),
0007 useDBSCAN = cms.bool(False),
0008 useIterative = cms.bool(False),
0009 doSplitting = cms.bool(True),
0010 minT = cms.int32(2),
0011 eps = cms.double(0.07),
0012 errmax = cms.double(0.01),
0013 chi2max = cms.double(9),
0014 maxVertices = cms.int32(256),
0015 PtMin = cms.double(0.5),
0016 PtMax = cms.double(75),
0017 pixelTrackSrc = cms.InputTag('pixelTracksAlpaka'),
0018 mightGet = cms.optional.untracked.vstring,
0019 alpaka = cms.untracked.PSet(
0020 backend = cms.untracked.string('')
0021 )
0022 )
0023 for a in args:
0024 mod.update_(a)
0025 mod.update_(kwargs)
0026 return mod