CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
constantsTrackerPostLS2.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import Geometry.TrackerGeometryBuilder.trackerSLHCGeometryConstants_cfi as trackerGeometryConstants_cfi
4 
5 def customise(process):
6 
7  process.trackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants)
8  process.idealForDigiTrackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants)
9 
10  process.trackerNumberingGeometry.fromDDD = cms.bool( True )
11  process.trackerNumberingGeometry.layerNumberPXB = cms.uint32(18)
12  process.trackerNumberingGeometry.totalBlade = cms.uint32(56)
13 
14  return process