File indexing completed on 2024-11-23 03:28:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalGeometryNewCornersTest(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalGeometryNewCornersTest',
0005 detectorName = cms.string('HGCalHESiliconSensitive'),
0006 layers = cms.vint32(
0007 27,
0008 28,
0009 29,
0010 30,
0011 31,
0012 32
0013 ),
0014 waferUs = cms.vint32(
0015 -2,
0016 -3,
0017 1,
0018 -8,
0019 2,
0020 8
0021 ),
0022 waferVs = cms.vint32(
0023 0,
0024 -2,
0025 3,
0026 0,
0027 9,
0028 0
0029 ),
0030 types = cms.vint32(
0031 0,
0032 0,
0033 0,
0034 2,
0035 2,
0036 2
0037 ),
0038 debugFlag = cms.bool(False),
0039 mightGet = cms.optional.untracked.vstring
0040 )
0041 for a in args:
0042 mod.update_(a)
0043 mod.update_(kwargs)
0044 return mod