00001 import FWCore.ParameterSet.Config as cms 00002 00003 # With an ideal geometry (for the reconstruction) 00004 MagneticFieldMapESProducer = cms.ESProducer("MagneticFieldMapESProducer") 00005 00006 # The same as above but with a misaligned tracker geometry (for the simulation) 00007 misalignedMagneticFieldMap = cms.ESProducer("MagneticFieldMapESProducer", 00008 trackerGeometryLabel = cms.untracked.string('MisAligned'), 00009 appendToDataLabel = cms.string('MisAligned') 00010 ) 00011 00012