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