File indexing completed on 2024-11-23 03:28:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HGCalTestNeighbor(*args, **kwargs):
0004 mod = cms.EDAnalyzer('HGCalTestNeighbor',
0005 detector = cms.string('HGCalEESensitive'),
0006 pX = cms.vdouble(
0007 2,
0008 5,
0009 10,
0010 100
0011 ),
0012 pY = cms.vdouble(
0013 2,
0014 5,
0015 10,
0016 100
0017 ),
0018 pZ = cms.vdouble(
0019 10,
0020 5,
0021 20,
0022 50
0023 ),
0024 mightGet = cms.optional.untracked.vstring
0025 )
0026 for a in args:
0027 mod.update_(a)
0028 mod.update_(kwargs)
0029 return mod