mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-25 15:50:03 +02:00
45 lines
605 B
C++
Executable File
45 lines
605 B
C++
Executable File
#ifndef JCTBDAC_H
|
|
#define JCTBDAC_H
|
|
#include <TGFrame.h>
|
|
|
|
|
|
|
|
class TGTextEntry;
|
|
class TGLabel;
|
|
class TGNumberEntry;
|
|
class TGCheckButton;
|
|
|
|
|
|
class multiSlsDetector;
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
class jctbDac : public TGHorizontalFrame {
|
|
|
|
|
|
private:
|
|
TGLabel *dacsLabel;
|
|
TGNumberEntry *dacsEntry;
|
|
TGCheckButton *dacsUnit;
|
|
TGLabel *dacsValue;
|
|
int id;
|
|
|
|
multiSlsDetector* myDet;
|
|
public:
|
|
jctbDac(TGGroupFrame*, int , multiSlsDetector*);
|
|
void setValue();
|
|
int getValue();
|
|
|
|
|
|
int setLabel(char *tit, int mv);
|
|
string getLabel();
|
|
|
|
|
|
|
|
ClassDef(jctbDac,0)
|
|
};
|
|
|
|
|
|
#endif
|