Subversion Repositories f9daq

Rev

Rev 117 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
117 f9daq 1
#ifndef _windowedtest_h_
2
#define _windowedtest_h_
3
 
128 f9daq 4
#define debug 0
5
#define winWidth 1240
6
#define winHeight 900
117 f9daq 7
#define WINDOW_NAME "CAMAC/MPOD/4MM DAQ software"
8
#define BSIZE 10000
9
#define histname "hdata"
10
 
128 f9daq 11
#include <time.h>
12
 
13
//int debugSig = 0;
14
 
117 f9daq 15
enum EMenuIds {
16
   M_FILE_NEW,
17
//   M_FILE_CLOSE,
18
   M_FILE_EXIT,
19
 
20
   M_ANALYSIS_HISTTYPE,
21
   M_ANALYSIS_HISTTYPE_1DADC,
22
   M_ANALYSIS_HISTTYPE_1DTDC,
23
   M_ANALYSIS_HISTTYPE_2D,
24
   M_ANALYSIS_HISTTYPE_SURF,
25
   M_ANALYSIS_FIT,
26
   M_ANALYSIS_FITSEL,
27
   M_ANALYSIS_INTEGX,
28
   M_ANALYSIS_INTEGY,
128 f9daq 29
   M_ANALYSIS_PHOTMU,
117 f9daq 30
 
128 f9daq 31
   M_TOOLS_FIELDPOINT,
32
 
117 f9daq 33
   M_WINDOW_HOR,
34
   M_WINDOW_VERT,
35
 
36
   M_HELP_ABOUT
37
};
38
 
128 f9daq 39
// Function that transforms timestamp to local time
40
void GetTime(int intime, char *outtime);
41
 
117 f9daq 42
#endif