File indexing completed on 2025-02-07 14:23:50
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalValidHexTester(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalValidHexTester',
0005 NameDevice = cms.string('HGCal HE Silicon'),
0006 NameSense = cms.string('HGCalHESiliconSensitive'),
0007 Layers = cms.vint32(
0008 21,
0009 21,
0010 22,
0011 22
0012 ),
0013 ModuleU = cms.vint32(
0014 3,
0015 -3,
0016 3,
0017 -3
0018 ),
0019 ModuleV = cms.vint32(
0020 6,
0021 -6,
0022 6,
0023 -6
0024 ),
0025 Types = cms.vint32(
0026 2,
0027 2,
0028 2,
0029 2
0030 ),
0031 mightGet = cms.optional.untracked.vstring
0032 )
0033 for a in args:
0034 mod.update_(a)
0035 mod.update_(kwargs)
0036 return mod