Skip to content
Snippets Groups Projects
Commit ae10bdb9 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'fixATEAM-484' into 'master'

fix mergeAll method of CA

Closes ATEAM-484

See merge request atlas/athena!15311
parents ac72a8a3 27811104
No related branches found
No related tags found
No related merge requests found
...@@ -348,7 +348,9 @@ class ComponentAccumulator(object): ...@@ -348,7 +348,9 @@ class ComponentAccumulator(object):
elif isinstance (other,ConfigurableService): elif isinstance (other,ConfigurableService):
self.addService(other) self.addService(other)
elif isinstance(other,ConfigurableAlgorithm): elif isinstance(other,ConfigurableAlgorithm):
self.addAlgorithm(other) self.addEventAlgorithm(other)
#FIXME: At this point we can't distingush event algos from conditions algos.
#Might become possible with new Gaudi configurables
elif isinstance(other,ConfigurableAlgTool): elif isinstance(other,ConfigurableAlgTool):
self.addPublicTool(other) self.addPublicTool(other)
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment