Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:36

0001 import FWCore.ParameterSet.Config as cms
0002 from SimG4Core.Configuration.SimG4Core_cff import *
0003 
0004 g4SimHits.Watchers = cms.VPSet(cms.PSet(
0005         SimG4HGCalValidation = cms.PSet(
0006             Names = cms.vstring(
0007                 'HGCalEESensitive',  
0008                 'HGCalHESiliconSensitive',
0009                 'HGCalHEScintillatorSensitive',
0010                 ),
0011             Types = cms.vint32(1,1,1),
0012             LabelLayerInfo = cms.string("HGCalInfoLayer"),
0013             ),
0014         type = cms.string('SimG4HGCalValidation')
0015         )
0016                                )
0017 
0018 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0019 hgcGeomAnalysis = DQMEDAnalyzer('HGCGeometryValidation',
0020                                  geometrySource = cms.untracked.vstring(
0021         'HGCalEESensitive',
0022         'HGCalHESiliconSensitive',
0023         'HGCalHEScintillatorSensitive'),
0024                                  g4Source = cms.InputTag("g4SimHits","HGCalInfoLayer"),
0025                                  verbosity= cms.int32(0),
0026                                  )