Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalTopologyTester(**kwargs):
0004   mod = cms.EDAnalyzer('HGCalTopologyTester',
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     sector1 = 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     sector2 = cms.vint32(
0067       3,
0068       3,
0069       3,
0070       3,
0071       2,
0072       2,
0073       6,
0074       6,
0075       6,
0076       6,
0077       3,
0078       3,
0079       8,
0080       8,
0081       9,
0082       9,
0083       3,
0084       3
0085     ),
0086     cell1 = cms.vint32(
0087       0,
0088       4,
0089       12,
0090       14,
0091       18,
0092       23,
0093       1,
0094       4,
0095       7,
0096       10,
0097       13,
0098       16,
0099       0,
0100       3,
0101       6,
0102       9,
0103       12,
0104       15
0105     ),
0106     cell2 = cms.vint32(
0107       0,
0108       4,
0109       0,
0110       2,
0111       23,
0112       18,
0113       1,
0114       4,
0115       7,
0116       10,
0117       13,
0118       16,
0119       0,
0120       3,
0121       6,
0122       9,
0123       12,
0124       15
0125     ),
0126     mightGet = cms.optional.untracked.vstring
0127   )
0128   for k,v in kwargs.items():
0129     setattr(mod, k, v)
0130   return mod