mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-07-05 19:57:24 +02:00
formatting
This commit is contained in:
@@ -173,7 +173,7 @@ class DataProcessor : private virtual slsDetectorDefs, public ThreadObject {
|
||||
uint32_t streamingTimerInMs;
|
||||
uint32_t streamingStartFnum;
|
||||
uint32_t currentFreqCount{0};
|
||||
struct timespec timerbegin{};
|
||||
struct timespec timerbegin {};
|
||||
bool framePadding;
|
||||
std::atomic<bool> startedFlag{false};
|
||||
std::atomic<uint64_t> firstIndex{0};
|
||||
|
||||
@@ -17,8 +17,8 @@ namespace sls {
|
||||
class File : private virtual slsDetectorDefs {
|
||||
|
||||
public:
|
||||
File() {};
|
||||
virtual ~File() {};
|
||||
File(){};
|
||||
virtual ~File(){};
|
||||
|
||||
virtual fileFormat GetFileFormat() const = 0;
|
||||
virtual void CloseFile() = 0;
|
||||
|
||||
@@ -193,8 +193,8 @@ class GeneralData {
|
||||
slsDetectorDefs::NO_DISCARD};
|
||||
/* actual image size after ctboffset and ctbreorder */
|
||||
uint32_t actualImageSize{0};
|
||||
GeneralData() {};
|
||||
virtual ~GeneralData() {};
|
||||
GeneralData(){};
|
||||
virtual ~GeneralData(){};
|
||||
|
||||
// Returns the pixel depth in byte, 4 bits being 0.5 byte
|
||||
float GetPixelDepth() { return float(dynamicRange) / 8; }
|
||||
|
||||
Reference in New Issue
Block a user