From 3f5cff4161a8c67415ee544c2de5fa068889a660 Mon Sep 17 00:00:00 2001 From: Chao Peng <cpeng@anl.gov> Date: Thu, 9 Sep 2021 21:45:34 +0000 Subject: [PATCH] update merger for the recent endcap_i ecal --- benchmarks/clustering/options/full_cal_reco.py | 8 +++++--- benchmarks/ecal/options/endcap_i.py | 6 ++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/benchmarks/clustering/options/full_cal_reco.py b/benchmarks/clustering/options/full_cal_reco.py index e757b3bf..a42d4199 100644 --- a/benchmarks/clustering/options/full_cal_reco.py +++ b/benchmarks/clustering/options/full_cal_reco.py @@ -58,8 +58,8 @@ sim_coll = [ "EcalEndcapNHits", "EcalEndcapPHits", "EcalBarrelHits", - "HcalBarrelHits", "EcalBarrelScFiHits", + "HcalBarrelHits", "HcalEndcapPHits", "HcalEndcapNHits", ] @@ -133,8 +133,10 @@ ci_ecal_merger = CalHitsMerger("ci_ecal_merger", # OutputLevel=DEBUG, inputHitCollection=ci_ecal_reco.outputHitCollection, outputHitCollection="EcalEndcapPHitsRecoXY", - fields=["layer", "slice"], - fieldRefNumbers=[1, 0], + # fields=["layer", "slice"], + # fieldRefNumbers=[1, 0], + fields=["fiber_x", "fiber_y"], + fieldRefNumbers=[1, 1], readoutClass="EcalEndcapPHits") ci_ecal_cl = IslandCluster("ci_ecal_cl", diff --git a/benchmarks/ecal/options/endcap_i.py b/benchmarks/ecal/options/endcap_i.py index 43a2b158..0bd79e2c 100644 --- a/benchmarks/ecal/options/endcap_i.py +++ b/benchmarks/ecal/options/endcap_i.py @@ -69,8 +69,10 @@ ci_ecal_merger = CalHitsMerger("ci_ecal_merger", # OutputLevel=DEBUG, inputHitCollection=ci_ecal_reco.outputHitCollection, outputHitCollection="EcalEndcapPHitsRecoXY", - fields=["layer", "slice"], - fieldRefNumbers=[1, 0], + fields=["fiber_x", "fiber_y"], + fieldRefNumbers=[1, 1], + # fields=["layer", "slice"], + # fieldRefNumbers=[1, 0], readoutClass="EcalEndcapPHits") ci_ecal_cl = IslandCluster("ci_ecal_cl", -- GitLab