Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:06

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalGeometryDump(*args, **kwargs):
0004   mod = cms.EDAnalyzer('HGCalGeometryDump',
0005     detectorNames = cms.vstring(
0006       'HGCalEESensitive',
0007       'HGCalHESiliconSensitive',
0008       'HGCalHEScintillatorSensitive'
0009     ),
0010     detectorTypes = cms.vint32(
0011       0,
0012       0,
0013       1
0014     ),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod