CMS 3D CMS Logo

MagneticFieldMapESProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # With an ideal geometry (for the reconstruction)
4 MagneticFieldMapESProducer = cms.ESProducer("MagneticFieldMapESProducer")
5 
6 # The same as above but with a misaligned tracker geometry (for the simulation)
7 misalignedMagneticFieldMap = cms.ESProducer("MagneticFieldMapESProducer",
8  trackerGeometryLabel = cms.untracked.string('MisAligned'),
9  appendToDataLabel = cms.string('MisAligned')
10 )
11 
12