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('OAE_1103l_071212'),
0011     parameters = cms.PSet(
0012         BValue = cms.string('3_8T')
0013     ),
0014     label = cms.untracked.string('')
0015 )
0016 
0017