mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 10:07:59 +02:00
First commit
This commit is contained in:
40
JCTBGui/jctbDacs.h
Executable file
40
JCTBGui/jctbDacs.h
Executable file
@ -0,0 +1,40 @@
|
||||
#ifndef JCTBDACS_H
|
||||
#define JCTBDACS_H
|
||||
#include <TGFrame.h>
|
||||
|
||||
|
||||
#define NDACS 16
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
class multiSlsDetector;
|
||||
class jctbDac;
|
||||
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
|
||||
class jctbDacs : public TGGroupFrame {
|
||||
private:
|
||||
|
||||
|
||||
|
||||
jctbDac *dacs[NDACS];
|
||||
|
||||
multiSlsDetector* myDet;
|
||||
|
||||
public:
|
||||
jctbDacs(TGVerticalFrame *page, multiSlsDetector*);
|
||||
|
||||
int setDacAlias(string line);
|
||||
string getDacAlias();
|
||||
string getDacParameters();
|
||||
|
||||
void update();
|
||||
|
||||
ClassDef(jctbDacs,0)
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user