File indexing completed on 2024-11-23 03:28:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def GaussEvtVtxGenerator(*args, **kwargs):
0004 mod = cms.EDProducer('GaussEvtVtxGenerator',
0005 MeanX = cms.double(0),
0006 MeanY = cms.double(0),
0007 MeanZ = cms.double(0),
0008 SigmaX = cms.double(0),
0009 SigmaY = cms.double(0),
0010 SigmaZ = cms.double(0),
0011 TimeOffset = cms.double(0),
0012 src = cms.required.InputTag,
0013 readDB = cms.required.bool,
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod