File indexing completed on 2024-11-23 03:28:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalWaferInFileOrientation(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalWaferInFileOrientation',
0005 detectorName = cms.string('HGCalHESiliconSensitive'),
0006 layers = cms.vint32(
0007 33,
0008 33,
0009 33,
0010 33,
0011 33,
0012 33
0013 ),
0014 waferUs = cms.vint32(
0015 12,
0016 12,
0017 -3,
0018 -3,
0019 -9,
0020 -9
0021 ),
0022 waferVs = cms.vint32(
0023 3,
0024 9,
0025 9,
0026 -12,
0027 3,
0028 -12
0029 ),
0030 types = cms.vint32(
0031 2,
0032 2,
0033 2,
0034 2,
0035 2,
0036 2
0037 ),
0038 mightGet = cms.optional.untracked.vstring
0039 )
0040 for a in args:
0041 mod.update_(a)
0042 mod.update_(kwargs)
0043 return mod