mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
format
This commit is contained in:
@ -181,9 +181,9 @@ class slsDetectorDefs {
|
||||
int ymin{-1};
|
||||
int ymax{-1};
|
||||
ROI() = default;
|
||||
ROI(int xmin, int xmax) : xmin(xmin), xmax(xmax) {};
|
||||
ROI(int xmin, int xmax) : xmin(xmin), xmax(xmax){};
|
||||
ROI(int xmin, int xmax, int ymin, int ymax)
|
||||
: xmin(xmin), xmax(xmax), ymin(ymin), ymax(ymax) {};
|
||||
: xmin(xmin), xmax(xmax), ymin(ymin), ymax(ymax){};
|
||||
constexpr std::array<int, 4> getIntArray() const {
|
||||
return std::array<int, 4>({xmin, xmax, ymin, ymax});
|
||||
}
|
||||
@ -234,7 +234,7 @@ typedef struct {
|
||||
int x{0};
|
||||
int y{0};
|
||||
xy() = default;
|
||||
xy(int x, int y) : x(x), y(y) {};
|
||||
xy(int x, int y) : x(x), y(y){};
|
||||
} __attribute__((packed));
|
||||
#endif
|
||||
|
||||
|
@ -4,11 +4,11 @@
|
||||
#define RELEASE "developer"
|
||||
#define APILIB "developer 0x230224"
|
||||
#define APIRECEIVER "developer 0x230224"
|
||||
#define APICTB "developer 0x240910"
|
||||
#define APIGOTTHARD "developer 0x240910"
|
||||
#define APICTB "developer 0x240910"
|
||||
#define APIGOTTHARD "developer 0x240910"
|
||||
#define APIGOTTHARD2 "developer 0x240910"
|
||||
#define APIJUNGFRAU "developer 0x240910"
|
||||
#define APIMYTHEN3 "developer 0x240910"
|
||||
#define APIMOENCH "developer 0x240910"
|
||||
#define APIJUNGFRAU "developer 0x240910"
|
||||
#define APIMYTHEN3 "developer 0x240910"
|
||||
#define APIMOENCH "developer 0x240910"
|
||||
#define APIXILINXCTB "developer 0x240910"
|
||||
#define APIEIGER "developer 0x240910"
|
||||
#define APIEIGER "developer 0x240910"
|
||||
|
Reference in New Issue
Block a user