autogenerated commands and make format

This commit is contained in:
Mazzoleni Alice Francesca
2025-04-11 10:45:02 +02:00
parent f9bc2eb126
commit 9d8f9a9ba9
18 changed files with 50 additions and 63 deletions

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<

View File

@ -17,7 +17,7 @@ class detectorData {
: progressIndex(progressIndex), fileName(fileName),
fileIndex(fileIndex), nx(nx), ny(ny), data(data),
databytes(databytes), dynamicRange(dynamicRange),
completeImage(completeImage){};
completeImage(completeImage) {};
detectorData(double progressIndex, std::string fileName, int nx, int ny,
char *data, int databytes, int dynamicRange,
@ -26,11 +26,11 @@ class detectorData {
: progressIndex(progressIndex), fileName(fileName),
fileIndex(fileIndex), nx(nx), ny(ny), data(data),
databytes(databytes), dynamicRange(dynamicRange),
completeImage(completeImage), rxRoi(rxRoi){};
completeImage(completeImage), rxRoi(rxRoi) {};
/**
* data has to be deleted by caller
*/
~detectorData(){};
~detectorData() {};
int64_t getChannel(int i) {
int off = dynamicRange / 8;