CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
constantsHCALPostLS2.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import Geometry.HcalEventSetup.hcalSLHCTopologyConstants_cfi as hcalTopologyConstants_cfi
4 
5 def customise(process):
6 
7  process.hcalTopologyIdeal.hcalTopologyConstants.mode = cms.string('HcalTopologyMode::SLHC')
8  process.hcalTopologyIdeal.hcalTopologyConstants.maxDepthHB = cms.int32(7)
9  process.hcalTopologyIdeal.hcalTopologyConstants.maxDepthHE = cms.int32(7)
10 
11  process.hcalTopologyIdeal.hcalTopologyConstants = cms.PSet(hcalTopologyConstants_cfi.hcalTopologyConstants)
12  process.es_hardcode.hcalTopologyConstants = cms.PSet(hcalTopologyConstants_cfi.hcalTopologyConstants)
13  process.CaloTowerHardcodeGeometryEP = cms.PSet(hcalTopologyConstants_cfi.hcalTopologyConstants)
14 
15  return process