mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
First commit
This commit is contained in:
44
JCTBGui/jctbDac.h
Executable file
44
JCTBGui/jctbDac.h
Executable file
@ -0,0 +1,44 @@
|
||||
#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
|
Reference in New Issue
Block a user