ClusterFinder

This commit is contained in:
Erik Fröjdh
2024-11-06 12:41:41 +01:00
parent 5b2809d6b0
commit cbfd1f0b6c
10 changed files with 358 additions and 156 deletions

View File

@@ -2,6 +2,8 @@
#include "file.hpp"
#include "var_cluster.hpp"
#include "pixel_map.hpp"
#include "pedestal.hpp"
#include "cluster.hpp"
//Pybind stuff
#include <pybind11/pybind11.h>
@@ -13,4 +15,7 @@ PYBIND11_MODULE(_aare, m) {
define_file_io_bindings(m);
define_var_cluster_finder_bindings(m);
define_pixel_map_bindings(m);
define_pedestal_bindings<double>(m, "Pedestal");
define_pedestal_bindings<float>(m, "Pedestal_float32");
define_cluster_finder_bindings(m);
}