mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 04:47:14 +02:00
autogenerated commands and make format
This commit is contained in:
@ -8341,9 +8341,10 @@ rx_dbitreorder:
|
||||
store_result_in_t: false
|
||||
command_name: rx_dbitreorder
|
||||
function_alias: rx_dbitreorder
|
||||
help: "[0, 1]\n\t[Ctb] Reorder digital data to group together all samples per signal.\
|
||||
\ Default is 1. Setting to 0 means 'do not reorder' and to keep what the board\
|
||||
\ spits out, which is that all signals in a sample are grouped together."
|
||||
help: "[0, 1]\n\t[Ctb] Reorder digital data such that it groups each signal (0-63)\
|
||||
\ from all the different samples together . Default is 1. Setting to 0 means 'do\
|
||||
\ not reorder' and to keep what the board spits out, which is that all signals\
|
||||
\ in a sample are grouped together."
|
||||
infer_action: true
|
||||
template: true
|
||||
rx_discardpolicy:
|
||||
|
@ -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,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;
|
||||
|
Reference in New Issue
Block a user