From 70c633da25bc2d5c2e6c18d69dd15a580f4fab82 Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Tue, 22 Feb 2022 12:16:12 -0600
Subject: [PATCH] ImagingClusterReco has no *Collection on its inputs/outputs

---
 benchmarks/clustering/options/full_cal_reco.py    | 6 +++---
 benchmarks/imaging_ecal/options/hybrid_cluster.py | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/benchmarks/clustering/options/full_cal_reco.py b/benchmarks/clustering/options/full_cal_reco.py
index 025451d3..a257a5b9 100644
--- a/benchmarks/clustering/options/full_cal_reco.py
+++ b/benchmarks/clustering/options/full_cal_reco.py
@@ -182,10 +182,10 @@ cb_ecal_cl = ImagingCluster("cb_ecal_cl",
 
 cb_ecal_clreco = ImagingClusterReco("cb_ecal_clreco",
         samplingFraction=cb_ecal_sf,
-        inputProtoClusterCollection=cb_ecal_cl.outputProtoClusterCollection,
+        inputProtoClusters=cb_ecal_cl.outputProtoClusterCollection,
         mcHits="EcalBarrelHits",
-        outputClusterCollection="EcalBarrelImagingClusters",
-        outputLayerCollection="EcalBarrelImagingLayers")
+        outputClusters="EcalBarrelImagingClusters",
+        outputLayers="EcalBarrelImagingLayers")
 
 #Central ECAL SciFi
 # use the same daq_setting for digi/reco pair
diff --git a/benchmarks/imaging_ecal/options/hybrid_cluster.py b/benchmarks/imaging_ecal/options/hybrid_cluster.py
index 6d875efd..f31c402b 100644
--- a/benchmarks/imaging_ecal/options/hybrid_cluster.py
+++ b/benchmarks/imaging_ecal/options/hybrid_cluster.py
@@ -84,9 +84,9 @@ imcalcluster = ImagingTopoCluster('imcal_cluster',
         sectorDist=3.*cm)
 clusterreco = ImagingClusterReco('imcal_clreco',
         #OutputLevel=DEBUG,
-        inputProtoClusterCollection=imcalcluster.outputProtoClusterCollection,
-        outputLayerCollection='EcalBarrelImagingClustersLayers',
-        outputClusterCollection='EcalBarrelImagingClusters',
+        inputProtoClusters=imcalcluster.outputProtoClusterCollection,
+        outputLayers='EcalBarrelImagingClustersLayers',
+        outputClusters='EcalBarrelImagingClusters',
         mcHits="EcalBarrelHits",
         samplingFraction=kwargs['img_sf'])
 
-- 
GitLab