Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:22

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # With an ideal geometry (for the reconstruction)
0004 from FastSimulation.TrackerSetup.TrackerMaterial_cfi import *
0005 TrackerInteractionGeometryESProducer = cms.ESProducer("TrackerInteractionGeometryESProducer",
0006     TrackerMaterialBlock
0007 )
0008 
0009 # The same as above but with a misaligned tracker geometry (for the simulation)
0010 misalignedTrackerInteractionGeometry = cms.ESProducer("TrackerInteractionGeometryESProducer",
0011     TrackerMaterialBlock,
0012     trackerGeometryLabel = cms.untracked.string('MisAligned'),
0013     appendToDataLabel = cms.string('MisAligned')
0014 )
0015 
0016