mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 10:07:59 +02:00
mythen3 gui: discard bits option for debugging
This commit is contained in:
@ -54,6 +54,7 @@ class qDrawPlot : public QWidget, private Ui::PlotObject {
|
||||
void SetAccumulate(bool enable);
|
||||
void ResetAccumulate();
|
||||
void DisplayStatistics(bool enable);
|
||||
void SetNumDiscardBits(int value);
|
||||
void EnableGainPlot(bool enable);
|
||||
void ClonePlot();
|
||||
void SavePlot();
|
||||
@ -148,6 +149,7 @@ class qDrawPlot : public QWidget, private Ui::PlotObject {
|
||||
bool hasGainData{false};
|
||||
bool isGainDataExtracted{false};
|
||||
bool disableZoom{false};
|
||||
int numDiscardBits{0};
|
||||
|
||||
int progress{0};
|
||||
int64_t currentFrame{0};
|
||||
|
@ -2,13 +2,15 @@
|
||||
|
||||
#include "ui_form_tab_advanced.h"
|
||||
|
||||
class qDrawPlot;
|
||||
|
||||
#include "Detector.h"
|
||||
|
||||
class qTabAdvanced:public QWidget, private Ui::TabAdvancedObject{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
qTabAdvanced(QWidget *parent, sls::Detector* detector);
|
||||
qTabAdvanced(QWidget *parent, sls::Detector* detector, qDrawPlot* p);
|
||||
~qTabAdvanced();
|
||||
|
||||
public slots:
|
||||
@ -61,6 +63,7 @@ private:
|
||||
void GetSubDeadTime();
|
||||
|
||||
sls::Detector *det;
|
||||
qDrawPlot *plot;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user