File indexing completed on 2025-01-04 00:29:21
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_rocm_async_EcalRecHitParametersESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('alpaka_rocm_async::EcalRecHitParametersESProducer',
0005 ChannelStatusToBeExcluded = cms.vstring(
0006 'kDAC',
0007 'kNoisy',
0008 'kNNoisy',
0009 'kFixedG6',
0010 'kFixedG1',
0011 'kFixedG0',
0012 'kNonRespondingIsolated',
0013 'kDeadVFE',
0014 'kDeadFE',
0015 'kNoDataNoTP'
0016 ),
0017 flagsMapDBReco = cms.PSet(
0018 kGood = cms.vstring(
0019 'kOk',
0020 'kDAC',
0021 'kNoLaser',
0022 'kNoisy'
0023 ),
0024 kNeighboursRecovered = cms.vstring(
0025 'kFixedG0',
0026 'kNonRespondingIsolated',
0027 'kDeadVFE'
0028 ),
0029 kDead = cms.vstring('kNoDataNoTP'),
0030 kNoisy = cms.vstring(
0031 'kNNoisy',
0032 'kFixedG6',
0033 'kFixedG1'
0034 ),
0035 kTowerRecovered = cms.vstring('kDeadFE')
0036 ),
0037 appendToDataLabel = cms.string(''),
0038 alpaka = cms.untracked.PSet(
0039 backend = cms.untracked.string(''),
0040 synchronize = cms.optional.untracked.bool
0041 )
0042 )
0043 for a in args:
0044 mod.update_(a)
0045 mod.update_(kwargs)
0046 return mod