00001 import FWCore.ParameterSet.Config as cms 00002 00003 # With an ideal geometry (for the reconstruction) 00004 from FastSimulation.TrackerSetup.TrackerMaterial_cfi import * 00005 TrackerInteractionGeometryESProducer = cms.ESProducer("TrackerInteractionGeometryESProducer", 00006 TrackerMaterialBlock 00007 ) 00008 00009 # The same as above but with a misaligned tracker geometry (for the simulation) 00010 misalignedTrackerInteractionGeometry = cms.ESProducer("TrackerInteractionGeometryESProducer", 00011 TrackerMaterialBlock, 00012 trackerGeometryLabel = cms.untracked.string('MisAligned'), 00013 appendToDataLabel = cms.string('MisAligned') 00014 ) 00015 00016