CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TrackerInteractionGeometryESProducer_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 TrackerInteractionGeometryESProducer = cms.ESProducer("TrackerInteractionGeometryESProducer",
6  TrackerMaterialBlock
7 )
8 
9 # The same as above but with a misaligned tracker geometry (for the simulation)
10 misalignedTrackerInteractionGeometry = cms.ESProducer("TrackerInteractionGeometryESProducer",
11  TrackerMaterialBlock,
12  trackerGeometryLabel = cms.untracked.string('MisAligned'),
13  appendToDataLabel = cms.string('MisAligned')
14 )
15 
16