Rev 146 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 146 | Rev 167 | ||
---|---|---|---|
1 | #ifndef _workstation_h_ |
1 | #ifndef _workstation_h_ |
2 | #define _workstation_h_ |
2 | #define _workstation_h_ |
3 | 3 | ||
4 | // Debug signal (0 = no debug, 1 = printout debug, 2 = structure + printout debug) |
4 | // Debug signal (0 = no debug, 1 = printout debug, 2 = structure + printout debug) |
5 | #define DBGSIG 0 |
5 | #define DBGSIG 0 |
6 | 6 | ||
7 | // Define the working computer (O=offline, S=offline with scope, I=IJS/online) and the base directory |
7 | // Define the working computer (O=offline, S=offline with scope, I=IJS/online) and the base directory |
8 | #define WORKSTAT 'O' |
8 | #define WORKSTAT 'O' |
9 | 9 | ||
10 | // Define if working computer is connected to IJS ethernet network (for fieldpoint) |
10 | // Define if working computer is connected to IJS ethernet network (for fieldpoint) |
11 | #define IJSNET 0 |
11 | #define IJSNET 0 |
12 | 12 | ||
13 | #ifdef WORKSTAT |
13 | #ifdef WORKSTAT |
14 | #define rootdir "/ |
14 | #define rootdir "/data0/gkukec/private/ijs-sipm/sipmscan/trunk" |
15 | #endif |
15 | #endif |
16 | 16 | ||
17 | // Title colors and font |
17 | // Title colors and font |
18 | #define FORECOLOR 0xfcfcfc |
18 | #define FORECOLOR 0xfcfcfc |
19 | #define BACKCOLOR 0x2e5a86 |
19 | #define BACKCOLOR 0x2e5a86 |
20 | #define FONT "-*-helvetica-bold-r-normal-*-13-*-*-*-*-*-iso8859-" |
20 | #define FONT "-*-helvetica-bold-r-normal-*-13-*-*-*-*-*-iso8859-" |
21 | #define HELPFONT "-*-courier-bold-r-normal-*-13-*-*-*-*-*-iso8859-" |
21 | #define HELPFONT "-*-courier-bold-r-normal-*-13-*-*-*-*-*-iso8859-" |
22 | 22 | ||
23 | // Global variables |
23 | // Global variables |
24 | #define histext ".root" |
24 | #define histext ".root" |
25 | #define histextall "*.root" |
25 | #define histextall "*.root" |
26 | #define tdctimeconversion 45.0909 |
26 | #define tdctimeconversion 45.0909 |
27 | #define lenconversion 0.3595 |
27 | #define lenconversion 0.3595 |
28 | #define rotconversion (6.3281/3600.) |
28 | #define rotconversion (6.3281/3600.) |
29 | #define histname "hdata" |
29 | #define histname "hdata" |
30 | #define singlewait 3 |
30 | #define singlewait 3 |
31 | #define doublewait 2 |
31 | #define doublewait 2 |
32 | 32 | ||
33 | #endif |
33 | #endif |
34 | 34 |