diff --git a/Event/EventBookkeeperTools/python/CutFlowHelpers.py b/Event/EventBookkeeperTools/python/CutFlowHelpers.py index fa5d50aafd0c8df8298906486f570d3d9597b038..deda3827fb6412372315f6582181ecc818152dbf 100644 --- a/Event/EventBookkeeperTools/python/CutFlowHelpers.py +++ b/Event/EventBookkeeperTools/python/CutFlowHelpers.py @@ -96,10 +96,10 @@ def CreateCutFlowSvc( svcName="CutFlowSvc", seq=None, addMetaDataToAllOutputFile from OutputStreamAthenaPool.MultipleStreamManager import MSMgr # Explicitely add file metadata from input and from transient store, # but only the ones that we always create. - MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperContainer#"+primary_name ) - MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperAuxContainer#"+primary_name+"Aux.*" ) - MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperContainer#Incomplete"+primary_name ) - MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperAuxContainer#Incomplete"+primary_name+"Aux.*" ) + MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperContainer#"+primary_name+"*" ) + MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperAuxContainer#"+primary_name+"*Aux.*" ) + MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperContainer#Incomplete"+primary_name+"*" ) + MSMgr.AddMetaDataItemToAllStreams( "xAOD::CutBookkeeperAuxContainer#Incomplete"+primary_name+"*Aux.*" ) pass return diff --git a/Event/EventBookkeeperTools/python/EventBookkeeperToolsConfig.py b/Event/EventBookkeeperTools/python/EventBookkeeperToolsConfig.py index 0465d1f5b3cf36371b4df6340a5489d4c2cf4db5..af6472f8988b2089119557d08cb0786530da6f44 100644 --- a/Event/EventBookkeeperTools/python/EventBookkeeperToolsConfig.py +++ b/Event/EventBookkeeperTools/python/EventBookkeeperToolsConfig.py @@ -40,8 +40,8 @@ def CutFlowSvcCfg(flags): def CutFlowOutputList(flags, base_name='CutBookkeepers'): """CutFlow output metadata list""" return [ - 'xAOD::CutBookkeeperContainer#' + base_name, - 'xAOD::CutBookkeeperAuxContainer#' + base_name + 'Aux.*', - 'xAOD::CutBookkeeperContainer#Incomplete' + base_name, - 'xAOD::CutBookkeeperAuxContainer#Incomplete' + base_name + 'Aux.*' + 'xAOD::CutBookkeeperContainer#' + base_name + '*', + 'xAOD::CutBookkeeperAuxContainer#' + base_name + '*Aux.*', + 'xAOD::CutBookkeeperContainer#Incomplete' + base_name + '*', + 'xAOD::CutBookkeeperAuxContainer#Incomplete' + base_name + '*Aux.*' ]