Line | |
---|
1 | #ifndef MARS_MAGIC
|
---|
2 | #define MARS_MAGIC
|
---|
3 | ///////////////////////////////////////////////////////////////////////////////
|
---|
4 | //
|
---|
5 | // Magic.h
|
---|
6 | //
|
---|
7 | // defines MAGIC base informations
|
---|
8 | //
|
---|
9 | ///////////////////////////////////////////////////////////////////////////////
|
---|
10 | #ifndef ROOT_TROOT
|
---|
11 | #include <TROOT.h>
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | //
|
---|
15 | // Check here if Mars can be compiled with the present root version
|
---|
16 | //
|
---|
17 | #ifndef __CINT__
|
---|
18 | #if ROOT_VERSION_CODE < ROOT_VERSION(3,05,06)
|
---|
19 | #error Your root version is too old to compile Mars, use root>=3.05/06
|
---|
20 | #endif
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | //
|
---|
24 | // Values for the eventloop control
|
---|
25 | //
|
---|
26 | const Int_t kCONTINUE = 2;
|
---|
27 | const Int_t kSKIP = 2;
|
---|
28 | const Int_t kERROR = 3;
|
---|
29 |
|
---|
30 | //
|
---|
31 | // ColorId for calibration
|
---|
32 | //
|
---|
33 | enum PulserColor_t
|
---|
34 | {
|
---|
35 | kBLUE,
|
---|
36 | kGREEN,
|
---|
37 | kUV,
|
---|
38 | kCT1
|
---|
39 | };
|
---|
40 |
|
---|
41 | const Double_t kRad2Deg = 180.0/3.1415926535897932384626433832795028841971693993751;
|
---|
42 |
|
---|
43 | #endif
|
---|
44 |
|
---|
45 |
|
---|
46 |
|
---|
47 |
|
---|
48 |
|
---|
49 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.