Skip to content
Snippets Groups Projects
Commit 0895120f authored by Jean-Baptiste De Vivie De Regie's avatar Jean-Baptiste De Vivie De Regie Committed by Duc Ta
Browse files

Store subtracted calo cells instead of AllCalo when HI reco and cell subtraction

Store subtracted calo cells instead of AllCalo when HI reco and cell subtraction
parent 0f362ce6
No related branches found
No related tags found
2 merge requests!777912025-02-12: merge of 24.0 into main,!77690Store subtracted calo cells instead of AllCalo when HI reco and cell subtraction
......@@ -57,7 +57,7 @@ def CaloCellMakerCfg(flags):
result.addEventAlgo(cellAlgo, primary=True)
outputContainers = ["CaloCellContainer#AllCalo"]
outputContainers = [f'CaloCellContainer#{flags.Egamma.Keys.Input.CaloCells}']
if flags.GeoModel.Run in [LHCPeriod.Run1, LHCPeriod.Run2, LHCPeriod.Run3]:
outputContainers += ["TileCellContainer#MBTSContainer"]
if flags.GeoModel.Run is LHCPeriod.Run2:
......
......@@ -70,11 +70,10 @@ def CaloRecoCfg(flags, clustersname=None):
from TileRecAlgs.MBTSTimeDiffEventInfoAlgConfig import MBTSTimeDiffEventInfoAlgCfg
result.merge(MBTSTimeDiffEventInfoAlgCfg(flags))
#Configure AOD Cell-Thinning based on samplings:
from CaloRec.CaloThinCellsBySamplingAlgConfig import CaloThinCellsBySamplingAlgCfg
result.merge(CaloThinCellsBySamplingAlgCfg(flags,'StreamAOD', ['TileGap3']))
if not flags.HeavyIon.Egamma.doSubtractedClusters:
#Configure AOD Cell-Thinning based on samplings:
from CaloRec.CaloThinCellsBySamplingAlgConfig import CaloThinCellsBySamplingAlgCfg
result.merge(CaloThinCellsBySamplingAlgCfg(flags,'StreamAOD', ['TileGap3']))
return result
......
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