From ddf412fe8d2303b01eb7a1992487aa03682abcbf Mon Sep 17 00:00:00 2001 From: Archil Durglishvili Date: Wed, 11 Dec 2024 18:22:40 +0100 Subject: [PATCH] add topo-clustering for HCal endcap in ALLEGRO_o1_v03/run_digi_reco.py --- FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py b/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py index 334d137..35d6d8a 100644 --- a/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py +++ b/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py @@ -854,15 +854,18 @@ def setupTopoClusters(inputCells, if runHCal: CaloTopoClusterInputs = { "ecalBarrel": ecalBarrelPositionedCellsName, - "hcalBarrel": hcalBarrelPositionedCellsName + "hcalBarrel": hcalBarrelPositionedCellsName, + "hcalEndcap": hcalEndcapPositionedCellsName, } CaloTopoClusterReadouts = { "ecalBarrel": ecalBarrelReadoutName, - "hcalBarrel": hcalBarrelReadoutName + "hcalBarrel": hcalBarrelReadoutName, + "hcalEndcap": hcalEndcapReadoutName, } CaloTopoClusterPositioningTools = { "ecalBarrel": cellPositionEcalBarrelTool, "hcalBarrel": cellPositionHCalBarrelTool, + "hcalEndcap": cellPositionHCalEndcapTool, } setupTopoClusters(CaloTopoClusterInputs, CaloTopoClusterReadouts,