File indexing completed on 2023-03-17 11:14:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 idealMagneticFieldRecordSource = cms.ESSource("EmptyESSource",
0004 recordName = cms.string('IdealMagneticFieldRecord'),
0005 iovIsRunNotTime = cms.bool(True),
0006 firstValid = cms.vuint32(1)
0007 )
0008
0009 ParametrizedMagneticFieldProducer = cms.ESProducer("ParametrizedMagneticFieldProducer",
0010 version = cms.string('OAE_85l_030919'),
0011 parameters = cms.PSet(
0012 a = cms.double(4.643),
0013 b0 = cms.double(40.681),
0014 l = cms.double(15.284)
0015 ),
0016 label = cms.untracked.string('')
0017 )
0018
0019