mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 01:58:00 +02:00
First commit
This commit is contained in:
44
JCTBGui/jctbSignals.h
Executable file
44
JCTBGui/jctbSignals.h
Executable file
@ -0,0 +1,44 @@
|
||||
#ifndef JCTBSIGNALS_H
|
||||
#define JCTBSIGNALS_H
|
||||
#include <TGFrame.h>
|
||||
|
||||
|
||||
#define NSIGNALS 64
|
||||
#define NIOSIGNALS 52
|
||||
#define ADCLATCH 63
|
||||
|
||||
|
||||
|
||||
|
||||
class TGNumberEntry;
|
||||
class multiSlsDetector;
|
||||
class jctbSignal;
|
||||
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
class jctbSignals : public TGGroupFrame {
|
||||
private:
|
||||
|
||||
jctbSignal *signals[NSIGNALS];
|
||||
|
||||
TGNumberEntry *eIOCntrlRegister;
|
||||
TGNumberEntry *eClkCntrlRegister;
|
||||
|
||||
multiSlsDetector *myDet;
|
||||
|
||||
public:
|
||||
jctbSignals(TGVerticalFrame *page, multiSlsDetector *det);
|
||||
int setSignalAlias(string line);
|
||||
string getSignalAlias();
|
||||
|
||||
void update();
|
||||
|
||||
|
||||
void ToggledOutReg(Int_t);
|
||||
void ToggledClockReg(Int_t);
|
||||
void ToggledPlot(Int_t);
|
||||
ClassDef(jctbSignals,0)
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user