-
Notifications
You must be signed in to change notification settings - Fork 3
/
psi46test.h
52 lines (37 loc) · 1.02 KB
/
psi46test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef PSI46TEST_H
#define PSI46TEST_H
#define withROOT
#include <TGFrame.h>
#include <TRootEmbeddedCanvas.h>
#include <TCanvas.h>
#include "version.h"
#include "pixel_dtb.h"
#include "settings.h"
//DP#include "prober.h"
#include "protocol.h"
//DP#include "pixelmap.h"
//DP#include "test.h"
//DP#include "chipdatabase.h"
#define VERSIONINFO TITLE " " VERSION " (" TIMESTAMP ")" // from version.h
// global variables:
extern int nEntry; // counts the entries in the log file
extern CTestboard tb; // in pixel_dtb.h
extern CSettings settings; // global settings
//DP extern CProber prober; // prober
extern CProtocol Log; // log file
//DP extern CChip g_chipdata;
//DP extern int delayAdjust;
//DP extern int deserAdjust;
void cmd( );
#ifdef withROOT
class MyMainFrame:public TGMainFrame {
private:
TGMainFrame * fMain;
TRootEmbeddedCanvas *fEcanvas;
public:
MyMainFrame( const TGWindow * p, UInt_t w, UInt_t h );
virtual ~ MyMainFrame( );
TCanvas *GetCanvas( );
};
#endif
#endif