File indexing completed on 2025-02-07 14:23:50
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalPartialWaferTester(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalPartialWaferTester',
0005 nameSense = cms.string('HGCalHESiliconSensitive'),
0006 waferOrientations = cms.vint32(
0007 0,
0008 1,
0009 2,
0010 3,
0011 4,
0012 5
0013 ),
0014 partialTypes = cms.vint32(
0015 11,
0016 12,
0017 13,
0018 14,
0019 15,
0020 16,
0021 21,
0022 22,
0023 23,
0024 24,
0025 25
0026 ),
0027 numberOfTrials = cms.int32(1000),
0028 mightGet = cms.optional.untracked.vstring
0029 )
0030 for a in args:
0031 mod.update_(a)
0032 mod.update_(kwargs)
0033 return mod