File indexing completed on 2023-03-17 11:00:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from FastSimulation.TrackerSetup.TrackerMaterial_cfi import *
0005 TrackerInteractionGeometryESProducer = cms.ESProducer("TrackerInteractionGeometryESProducer",
0006 TrackerMaterialBlock
0007 )
0008
0009
0010 misalignedTrackerInteractionGeometry = cms.ESProducer("TrackerInteractionGeometryESProducer",
0011 TrackerMaterialBlock,
0012 trackerGeometryLabel = cms.untracked.string('MisAligned'),
0013 appendToDataLabel = cms.string('MisAligned')
0014 )
0015
0016