From 6942bc8e69e10cf010bbf06a7bce38b2aabf65e9 Mon Sep 17 00:00:00 2001 From: Sylvester Joosten Date: Fri, 18 Mar 2022 18:49:43 +0000 Subject: [PATCH] Fix bug where sector and layer ID were swapped for imaging calorimeter hits. --- JugReco/src/components/ImagingPixelReco.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JugReco/src/components/ImagingPixelReco.cpp b/JugReco/src/components/ImagingPixelReco.cpp index 47225b63..62ed5a98 100644 --- a/JugReco/src/components/ImagingPixelReco.cpp +++ b/JugReco/src/components/ImagingPixelReco.cpp @@ -139,7 +139,7 @@ public: 0, // timeError TODO {gpos.x() / m_lUnit, gpos.y() / m_lUnit, gpos.z() / m_lUnit}, // global pos {0, 0, 0}, // @TODO: add dimension - lid,sid, + sid,lid, {pos.x() / m_lUnit, pos.y() / m_lUnit, pos.z() / m_lUnit}}); // local pos } return StatusCode::SUCCESS; -- GitLab