CMS 3D CMS Logo

FastSimGeometryESProducer_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)
5 FastSimGeometryESProducer = cms.ESProducer("FastSimGeometryESProducer",
6  TrackerMaterialBlock
7 )
8 
9 # The same as above but with a misaligned tracker geometry (for the simulation)
10 misalignedGeometry = cms.ESProducer("FastSimGeometryESProducer",
11  TrackerMaterialBlock,
12  trackerGeometryLabel = cms.untracked.string('MisAligned'),
13  appendToDataLabel = cms.string('MisAligned')
14 )
15 
16