CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/MagneticField/Engine/python/uniformMagneticField_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This cfi contains everything needed to use the uniform magnetic
00004 # field engine.
00005 idealMagneticFieldRecordSource = cms.ESSource("EmptyESSource",
00006     recordName = cms.string('IdealMagneticFieldRecord'),
00007     iovIsRunNotTime = cms.bool(True),
00008     firstValid = cms.vuint32(1)
00009 )
00010 
00011 UniformMagneticFieldESProducer = cms.ESProducer("UniformMagneticFieldESProducer",
00012     ZFieldInTesla = cms.double(0.0),
00013     label = cms.untracked.string('')
00014 )
00015 
00016