File indexing completed on 2024-11-23 03:27:53
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def BeamSpotOnlineFromOfflineConverter(*args, **kwargs):
0004 mod = cms.EDAnalyzer('BeamSpotOnlineFromOfflineConverter',
0005 isHLT = cms.bool(True),
0006 IOVStartRun = cms.untracked.uint32(1),
0007 IOVStartLumi = cms.untracked.uint32(1),
0008 lastAnalyzedLumi = cms.double(1000),
0009 lastAnalyzedRun = cms.double(1),
0010 lastAnalyzedFill = cms.double(-999),
0011 numTracks = cms.int32(0),
0012 numPVs = cms.int32(0),
0013 numUsedEvents = cms.int32(0),
0014 numMaxPVs = cms.int32(0),
0015 meanPVs = cms.double(0),
0016 meanPVError = cms.double(0),
0017 rmsPVs = cms.double(0),
0018 rmsPVError = cms.double(0),
0019 startTime = cms.string(''),
0020 endTime = cms.string(''),
0021 lumiRange = cms.string(''),
0022 mightGet = cms.optional.untracked.vstring
0023 )
0024 for a in args:
0025 mod.update_(a)
0026 mod.update_(kwargs)
0027 return mod