Skip to content
Snippets Groups Projects
Commit 3f2e624c authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'master-larrod-again' into 'master'

LArSuperCellEnable.py: configure CaloSuperCellAlignCondAlg if it has not yet been configured

See merge request atlas/athena!58983
parents 790ba9ad a78ea68a
No related merge requests found
......@@ -7,6 +7,12 @@ theLArSCL1Maker=LArSCL1Maker()
from LArROD.LArSCellGetter import LArSCellGetter
theLArSCellGetter = LArSCellGetter()
from AthenaCommon.AlgSequence import AthSequencer
condSeq = AthSequencer("AthCondSeq")
if not hasattr(condSeq,"CaloSuperCellAlignCondAlg"):
from CaloAlignmentAlgs.CaloAlignmentAlgsConf import CaloSuperCellAlignCondAlg
condSeq += CaloSuperCellAlignCondAlg("CaloSuperCellAlignCondAlg")
streamRDO.ItemList+=["LArDigitContainer#LArDigitSCL2"]
streamRDO.ItemList+=["CaloCellContainer#SCellnoBCID"]
streamRDO.ItemList+=["CaloCellContainer#SCell"]
......
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