CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HGCalTopology_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # This cfi should be included to build the HGCal Topologies
5 #
6 HGCalEETopologyBuilder = cms.ESProducer("HGCalTopologyBuilder",
7  Name = cms.untracked.string("HGCalEESensitive"),
8  Type = cms.untracked.int32(0),
9  HalfType = cms.untracked.bool(False)
10  )
11 
12 
13 HGCalHESilTopologyBuilder = cms.ESProducer("HGCalTopologyBuilder",
14  Name = cms.untracked.string("HGCalHESiliconSensitive"),
15  Type = cms.untracked.int32(1),
16  HalfType = cms.untracked.bool(False)
17  )
18 
19 
20 HGCalHESciTopologyBuilder = cms.ESProducer("HGCalTopologyBuilder",
21  Name = cms.untracked.string("HGCalHEScintillatorSensitive"),
22  Type = cms.untracked.int32(2),
23  HalfType = cms.untracked.bool(True)
24  )
25