File indexing completed on 2025-02-07 14:23:37
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def BeamProfileHLLHC2DBWriter(*args, **kwargs):
0004 mod = cms.EDAnalyzer('BeamProfileHLLHC2DBWriter',
0005 recordName = cms.string('SimBeamSpotHLLHCObjectsRcd'),
0006 MeanX = cms.double(0),
0007 MeanY = cms.double(0),
0008 MeanZ = cms.double(0),
0009 EProton = cms.double(0),
0010 CrabFrequency = cms.double(0),
0011 RF800 = cms.double(0),
0012 CrossingAngle = cms.double(0),
0013 CrabbingAngleCrossing = cms.double(0),
0014 CrabbingAngleSeparation = cms.double(0),
0015 BetaCrossingPlane = cms.double(0),
0016 BetaSeparationPlane = cms.double(0),
0017 HorizontalEmittance = cms.double(0),
0018 VerticalEmittance = cms.double(0),
0019 BunchLength = cms.double(0),
0020 TimeOffset = cms.double(0),
0021 mightGet = cms.optional.untracked.vstring
0022 )
0023 for a in args:
0024 mod.update_(a)
0025 mod.update_(kwargs)
0026 return mod