From d5edab5ad5929f21890c974b5f6e7b8227dc034e Mon Sep 17 00:00:00 2001 From: Frank Winklmeier <fwinkl@cern> Date: Fri, 6 Nov 2020 11:10:00 +0100 Subject: [PATCH] CaloRingerAlgs: explicit str conversion of DataHandle property --- .../share/CaloRingerOutputItemList_jobOptions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Reconstruction/RecoAlgs/CaloRingerAlgs/share/CaloRingerOutputItemList_jobOptions.py b/Reconstruction/RecoAlgs/CaloRingerAlgs/share/CaloRingerOutputItemList_jobOptions.py index a512fb2cb5a..eb508316993 100644 --- a/Reconstruction/RecoAlgs/CaloRingerAlgs/share/CaloRingerOutputItemList_jobOptions.py +++ b/Reconstruction/RecoAlgs/CaloRingerAlgs/share/CaloRingerOutputItemList_jobOptions.py @@ -34,8 +34,7 @@ def addOutputToList(streamList, localCType, localCKey, auxOption): streamList.append('%s#%s' % (localCType, localCKey ) ) if 'xAOD::' in localCType: auxType = localCType.replace('Container', 'AuxContainer') - auxKey = localCKey + 'Aux.' - streamList.append( '%s#%s%s' % (auxType, auxKey, auxOption) ) + streamList.append( '%s#%sAux.%s' % (auxType, localCKey, auxOption) ) def addRingerInputMetaToList(streamList, containerType): # NOTE: Keys defined at: http://acode-browser.usatlas.bnl.gov/lxr/source/atlas/Reconstruction/RecExample/RecExConfig/python/InputFilePeeker.py -- GitLab