Skip to content
Snippets Groups Projects
Commit 0de54e42 authored by Francesca Pastore's avatar Francesca Pastore Committed by Chandler Robert Baker
Browse files

fix Upsequence for SelectionCA

fix Upsequence for SelectionCA
parent 76cad207
No related branches found
No related tags found
2 merge requests!641532023-07-05: Daily sweep of 23.0 into main,!64104fix Upsequence for SelectionCA
......@@ -29,6 +29,7 @@ import re
from AthenaCommon.Logging import logging
log = logging.getLogger( __name__ )
# Pool of mutable ComboHypo instances (as opposed to immutable cache of RecoFragmentsPool)
_ComboHypoPool = dict()
......@@ -1087,12 +1088,12 @@ class SelectionCA(ComponentAccumulator):
''' upSequenceCA is the user CA to run before the recoCA'''
ca=ComponentAccumulator()
ca.addSequence(self.stepViewSequence)
if upSequenceCA:
ca.merge(upSequenceCA, sequenceName=self.stepViewSequence.name)
ca.addEventAlgo(recoCA.inputMaker(), sequenceName=self.stepViewSequence.name)
if robPrefetchCA:
ca.merge(robPrefetchCA, self.stepViewSequence.name)
ca.merge(recoCA, sequenceName=self.stepViewSequence.name)
if upSequenceCA:
self.merge(upSequenceCA)
self.merge(ca)
......
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