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 # This cfi contains everything needed to use the parabolic magnetic
0004 # field engine.
0005 
0006 idealMagneticFieldRecordSource = cms.ESSource("EmptyESSource",
0007     recordName = cms.string('IdealMagneticFieldRecord'),
0008     iovIsRunNotTime = cms.bool(True),
0009     firstValid = cms.vuint32(1)
0010 )
0011 
0012 ParametrizedMagneticFieldProducer = cms.ESProducer("ParametrizedMagneticFieldProducer",
0013     version = cms.string('Parabolic'),
0014     label = cms.untracked.string(''),
0015     parameters=cms.PSet()
0016 )
0017