File indexing completed on 2024-11-23 03:28:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalGeometryRotTest(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalGeometryRotTest',
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 cellUs = cms.vint32(
0031 16,
0032 4,
0033 8,
0034 11,
0035 11,
0036 5
0037 ),
0038 cellVs = cms.vint32(
0039 20,
0040 10,
0041 17,
0042 13,
0043 9,
0044 2
0045 ),
0046 types = cms.vint32(
0047 0,
0048 0,
0049 0,
0050 2,
0051 2,
0052 2
0053 ),
0054 mightGet = cms.optional.untracked.vstring
0055 )
0056 for a in args:
0057 mod.update_(a)
0058 mod.update_(kwargs)
0059 return mod