From 196a98d7241cfbaaaa024e3be2c460c22ef8d84a Mon Sep 17 00:00:00 2001
From: Siarhei Harkusha <Siarhei.Harkusha@cern.ch>
Date: Sat, 17 Aug 2019 14:34:33 +0200
Subject: [PATCH] TileRecUtils: Fix Tile cell maker configuration for Run3

Calo cell container checker tool has been configured correctly
in new style Tile cell maker configuration for run 3.
---
 TileCalorimeter/TileRecUtils/python/TileCellMakerConfig.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/TileCalorimeter/TileRecUtils/python/TileCellMakerConfig.py b/TileCalorimeter/TileRecUtils/python/TileCellMakerConfig.py
index 100de3170fd..34f45072ddf 100644
--- a/TileCalorimeter/TileRecUtils/python/TileCellMakerConfig.py
+++ b/TileCalorimeter/TileRecUtils/python/TileCellMakerConfig.py
@@ -22,7 +22,7 @@ def CaloCellContainerCheckerToolCfg(flags):
     from TileGeoModel.TileGMConfig import TileGMCfg
     acc.merge(TileGMCfg(flags))
 
-    from CaloCellCorrection.CaloCellCorrectionConf import CaloCellContainerCheckerTool
+    from CaloRec.CaloRecConf import CaloCellContainerCheckerTool
     acc.setPrivateTools( CaloCellContainerCheckerTool() )
 
     return acc
@@ -93,7 +93,7 @@ def TileCellMakerCfg(flags, **kwargs):
         cellMakerTools += [caloCellNeighborsAverageCorrection]
 
 
-    caloCellContainerChecker = acc.popToolsAndMerge( CaloCellNeighborsAverageCorrCfg(flags) )
+    caloCellContainerChecker = acc.popToolsAndMerge( CaloCellContainerCheckerToolCfg(flags) )
     cellMakerTools += [caloCellContainerChecker]
 
     cellMakerAlg = CaloCellMaker(name = name, CaloCellMakerToolNames = cellMakerTools,
-- 
GitLab