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 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
19 hgcGeomAnalysis = DQMEDAnalyzer('HGCGeometryValidation',
20  geometrySource = cms.untracked.vstring(
21  'HGCalEESensitive',
22  'HGCalHESiliconSensitive',
23  'Hcal'),
24  g4Source = cms.InputTag("g4SimHits","HGCalInfoLayer"),
25  verbosity= cms.int32(0),
26  )