File indexing completed on 2025-02-07 14:23:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def EcalRawToDigiGPU(*args, **kwargs):
0004 mod = cms.EDProducer('EcalRawToDigiGPU',
0005 InputLabel = cms.InputTag('rawDataCollector'),
0006 FEDs = cms.vint32(
0007 601,
0008 602,
0009 603,
0010 604,
0011 605,
0012 606,
0013 607,
0014 608,
0015 609,
0016 610,
0017 611,
0018 612,
0019 613,
0020 614,
0021 615,
0022 616,
0023 617,
0024 618,
0025 619,
0026 620,
0027 621,
0028 622,
0029 623,
0030 624,
0031 625,
0032 626,
0033 627,
0034 628,
0035 629,
0036 630,
0037 631,
0038 632,
0039 633,
0040 634,
0041 635,
0042 636,
0043 637,
0044 638,
0045 639,
0046 640,
0047 641,
0048 642,
0049 643,
0050 644,
0051 645,
0052 646,
0053 647,
0054 648,
0055 649,
0056 650,
0057 651,
0058 652,
0059 653,
0060 654
0061 ),
0062 maxChannelsEB = cms.uint32(61200),
0063 maxChannelsEE = cms.uint32(14648),
0064 digisLabelEB = cms.string('ebDigis'),
0065 digisLabelEE = cms.string('eeDigis'),
0066 mightGet = cms.optional.untracked.vstring
0067 )
0068 for a in args:
0069 mod.update_(a)
0070 mod.update_(kwargs)
0071 return mod