File indexing completed on 2025-02-07 14:24:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def PixelVertexProducerCUDAHIonPhase1(*args, **kwargs):
0004 mod = cms.EDProducer('PixelVertexProducerCUDAHIonPhase1',
0005 onGPU = cms.bool(True),
0006 oneKernel = cms.bool(True),
0007 useDensity = cms.bool(True),
0008 useDBSCAN = cms.bool(False),
0009 useIterative = cms.bool(False),
0010 doSplitting = cms.bool(True),
0011 minT = cms.int32(2),
0012 eps = cms.double(0.07),
0013 errmax = cms.double(0.01),
0014 chi2max = cms.double(9),
0015 PtMin = cms.double(0.5),
0016 PtMax = cms.double(75),
0017 pixelTrackSrc = cms.InputTag('pixelTracksCUDA'),
0018 mightGet = cms.optional.untracked.vstring
0019 )
0020 for a in args:
0021 mod.update_(a)
0022 mod.update_(kwargs)
0023 return mod