formatting
Build on RHEL9 docker image / build (push) Successful in 3m35s
Build on RHEL8 docker image / build (push) Successful in 4m50s
Run Simulator Tests on local RHEL9 / build (push) Failing after 6m13s
Run Simulator Tests on local RHEL8 / build (push) Failing after 8m4s

This commit is contained in:
2026-05-08 09:58:00 +02:00
parent 7d959cd1a7
commit e081502abc
23 changed files with 302 additions and 288 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ template <class T, class Allocator = std::allocator<T>> class Result {
public:
Result() = default;
Result(std::initializer_list<T> list) : vec(list) {};
Result(std::initializer_list<T> list) : vec(list){};
/** Custom constructor from integer type to Result<ns> or Result<bool> */
template <typename V, typename = typename std::enable_if<
@@ -17,12 +17,12 @@ class detectorData {
: progressIndex(progressIndex), fileName(fileName),
fileIndex(fileIndex), nx(nx), ny(ny), data(data),
databytes(databytes), dynamicRange(dynamicRange),
completeImage(completeImage) {};
completeImage(completeImage){};
/**
* data has to be deleted by caller
*/
~detectorData() {};
~detectorData(){};
int64_t getChannel(int i) {
int off = dynamicRange / 8;