Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:33

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('PolyFit2D'),
0011     parameters = cms.PSet(
0012     #BValue = cms.double(2.02156567013928)
0013     #BValue = cms.double(3.51622117206486)
0014     BValue = cms.double(3.81143026675623)
0015     #BValue = cms.double(4.01242188708911)
0016     ),
0017     label = cms.untracked.string('')
0018 )
0019 
0020