Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:56:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # This cfi contains everything needed to use the uniform magnetic
0004 # field engine.
0005 idealMagneticFieldRecordSource = cms.ESSource("EmptyESSource",
0006     recordName = cms.string('IdealMagneticFieldRecord'),
0007     iovIsRunNotTime = cms.bool(True),
0008     firstValid = cms.vuint32(1)
0009 )
0010 
0011 UniformMagneticFieldESProducer = cms.ESProducer("UniformMagneticFieldESProducer",
0012     ZFieldInTesla = cms.double(0.0),
0013     label = cms.untracked.string('')
0014 )
0015 
0016