From dbffea15c0b11b11093db57d696ae5a238051358 Mon Sep 17 00:00:00 2001 From: Alice Date: Thu, 23 Oct 2025 17:50:17 +0200 Subject: [PATCH] fix: included deleted file --- python/src/bind_ClusterVector.hpp | 1 - python/src/module.cpp | 16 ---------------- 2 files changed, 17 deletions(-) diff --git a/python/src/bind_ClusterVector.hpp b/python/src/bind_ClusterVector.hpp index 86e4589..009ed45 100644 --- a/python/src/bind_ClusterVector.hpp +++ b/python/src/bind_ClusterVector.hpp @@ -6,7 +6,6 @@ #include "aare/NDView.hpp" #include "aare/Pedestal.hpp" #include "np_helper.hpp" -#include "utils/bind_Vector.hpp" #include #include diff --git a/python/src/module.cpp b/python/src/module.cpp index d6b46cc..5005fc6 100644 --- a/python/src/module.cpp +++ b/python/src/module.cpp @@ -9,7 +9,6 @@ #include "bind_ClusterFinderMT.hpp" #include "bind_ClusterVector.hpp" #include "bind_calibration.hpp" -#include "utils/bind_Vector.hpp" // TODO! migrate the other names #include "ctb_raw_file.hpp" @@ -116,21 +115,6 @@ PYBIND11_MODULE(_aare, m) { reduce_to_3x3(m); reduce_to_3x3(m); - define_Vector>( - m, "Sum_index_pair_d", - fmt::format("T{{{}:sum:i:index}}", - py::format_descriptor::format())); - - define_Vector>( - m, "Sum_index_pair_f", - fmt::format("T{{{}:sum:i:index}}", - py::format_descriptor::format())); - - define_Vector>( - m, "Sum_index_pair_i", - fmt::format("T{{{}:sum:i:index}}", - py::format_descriptor::format())); - using Sum_index_pair_d = Sum_index_pair; PYBIND11_NUMPY_DTYPE(Sum_index_pair_d, sum, index); using Sum_index_pair_f = Sum_index_pair;