File indexing completed on 2025-02-07 14:23:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalTBTopologyTester(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalTBTopologyTester',
0005 detectorName = cms.string('HGCalEESensitive'),
0006 types = cms.vint32(
0007 0,
0008 0,
0009 0,
0010 0,
0011 0,
0012 0,
0013 1,
0014 1,
0015 1,
0016 1,
0017 1,
0018 1,
0019 2,
0020 2,
0021 2,
0022 2,
0023 2,
0024 2
0025 ),
0026 layers = cms.vint32(
0027 1,
0028 2,
0029 3,
0030 4,
0031 5,
0032 6,
0033 7,
0034 8,
0035 9,
0036 10,
0037 11,
0038 12,
0039 13,
0040 14,
0041 15,
0042 16,
0043 17,
0044 18
0045 ),
0046 sector = cms.vint32(
0047 1,
0048 1,
0049 2,
0050 2,
0051 3,
0052 3,
0053 5,
0054 5,
0055 6,
0056 6,
0057 7,
0058 7,
0059 8,
0060 8,
0061 9,
0062 9,
0063 10,
0064 10
0065 ),
0066 cells = cms.vint32(
0067 0,
0068 4,
0069 12,
0070 14,
0071 18,
0072 23,
0073 1,
0074 4,
0075 7,
0076 10,
0077 13,
0078 16,
0079 0,
0080 3,
0081 6,
0082 9,
0083 12,
0084 15
0085 ),
0086 mightGet = cms.optional.untracked.vstring
0087 )
0088 for a in args:
0089 mod.update_(a)
0090 mod.update_(kwargs)
0091 return mod