File indexing completed on 2025-02-07 14:23:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def BetafuncEvtVtxGenerator(*args, **kwargs):
0004 mod = cms.EDProducer('BetafuncEvtVtxGenerator',
0005 X0 = cms.double(0),
0006 Y0 = cms.double(0),
0007 Z0 = cms.double(0),
0008 SigmaZ = cms.double(0),
0009 BetaStar = cms.double(0),
0010 Emittance = cms.double(0),
0011 Alpha = cms.double(0),
0012 Phi = cms.double(0),
0013 TimeOffset = cms.double(0),
0014 src = cms.required.InputTag,
0015 readDB = cms.required.bool,
0016 mightGet = cms.optional.untracked.vstring
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod