format
Build on RHEL9 / build (push) Failing after 2m34s
Build on RHEL8 / build (push) Failing after 3m10s
Run tests using data on local RHEL8 / build (push) Failing after 3m58s

This commit is contained in:
Erik Fröjdh
2026-08-03 10:08:25 +02:00
parent 07b994c72e
commit 09399f7b82
10 changed files with 30 additions and 48 deletions
-1
View File
@@ -11,7 +11,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
-1
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
+2 -2
View File
@@ -27,8 +27,8 @@ void define_ClusterFileSink(py::module &m, const std::string &typestr) {
using ClusterType = Cluster<T, ClusterSizeX, ClusterSizeY, CoordType>;
//TODO! adapt to set pedestal type (needs templating of ClusterFileSink)
//or maybe access through base class?
// TODO! adapt to set pedestal type (needs templating of ClusterFileSink)
// or maybe access through base class?
py::class_<ClusterFileSink<ClusterType>>(m, class_name.c_str())
.def(py::init<ClusterFinderMT<ClusterType, uint16_t, double> *,
const std::filesystem::path &>())
-1
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
-1
View File
@@ -18,7 +18,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
-1
View File
@@ -16,7 +16,6 @@
namespace py = pybind11;
using namespace aare;
#pragma GCC diagnostic push
+1 -1
View File
@@ -1,5 +1,5 @@
#pragma once
#include <cstdint>
//Configure module wide pedestal type for cluster finding
// Configure module wide pedestal type for cluster finding
using pd_type = double;