From 08bd798bce1dcf0d65e5d90099ffd91b2da1e21d Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Sat, 30 Jul 2022 19:40:06 +0000
Subject: [PATCH] fix: sciglass needs RecoCoG instead of ImagingClusterReco

---
 options/reconstruction.py | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/options/reconstruction.py b/options/reconstruction.py
index 2eb6bcf6..e0fdae05 100644
--- a/options/reconstruction.py
+++ b/options/reconstruction.py
@@ -724,15 +724,23 @@ else:
     )
     algorithms.append(sciglass_ecal_cl)
 
-    sciglass_ecal_clreco = ImagingClusterReco(
+    sciglass_ecal_clreco = RecoCoG(
         "sciglass_ecal_clreco",
-        inputProtoClusters=sciglass_ecal_cl.outputProtoClusterCollection,
-        mcHits="EcalBarrelHits",
-        outputClusters="EcalBarrelClusters",
-        outputLayers="EcalBarrelLayers",
+        inputProtoClusterCollection=sciglass_ecal_cl.outputProtoClusterCollection,
+        outputClusterCollection="EcalBarrelClusters",
+        logWeightBase=4.6,
     )
     algorithms.append(sciglass_ecal_clreco)
 
+    ## barrel cluster merger
+    # barrel_clus_merger = ClusterMerger(
+    #     "barrel_clus_merger",
+    #     inputClusters=sciglass_ecal_clreco.outputClusterCollection,
+    #     outputClusters="EcalBarrelMergedClusters",
+    #     outputRelations="EcalBarrelMergedClusterRelations"
+    # )
+    # algorithms.append(barrel_clus_merger)
+
 # Central Barrel Hcal
 cb_hcal_daq = calo_daq["hcal_barrel"]
 
-- 
GitLab