CMS 3D CMS Logo

hgcGeometryValidation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 
4 g4SimHits.Watchers = cms.VPSet(cms.PSet(
5  SimG4HGCalValidation = cms.PSet(
6  Names = cms.vstring(
7  'HGCalEECell',
8  'HGCalHECell',
9  'HEScintillator',
10  ),
11  Types = cms.vint32(1,1,2),
12  LabelLayerInfo = cms.string("HGCalInfoLayer"),
13  ),
14  type = cms.string('SimG4HGCalValidation')
15  )
16  )
17 
18 hgcGeomAnalysis = cms.EDAnalyzer("HGCGeometryValidation",
19  geometrySource = cms.untracked.vstring(
20  'HGCalEESensitive',
21  'HGCalHESiliconSensitive',
22  'Hcal'),
23  g4Source = cms.InputTag("g4SimHits","HGCalInfoLayer"),
24  )