Line | |
---|
1 | #ifndef MARS_MAGIC
|
---|
2 | #define MARS_MAGIC
|
---|
3 | ///////////////////////////////////////////////////////////////////////////////
|
---|
4 | //
|
---|
5 | // Magic.h
|
---|
6 | //
|
---|
7 | // defines MAGIC base informations
|
---|
8 | //
|
---|
9 | ///////////////////////////////////////////////////////////////////////////////
|
---|
10 |
|
---|
11 | #ifndef ROOT_TROOT
|
---|
12 | #include <TROOT.h>
|
---|
13 | #endif
|
---|
14 |
|
---|
15 | //
|
---|
16 | // Values for the eventloop control
|
---|
17 | //
|
---|
18 | const Int_t kCONTINUE = 2;
|
---|
19 | const Int_t kSKIP = 2;
|
---|
20 |
|
---|
21 | //
|
---|
22 | // ParticleId for Monte Carlo simulation
|
---|
23 | //
|
---|
24 | const Int_t kGAMMA = 0;
|
---|
25 | const Int_t kPROTON = 14;
|
---|
26 | const Int_t kHELIUM = 402;
|
---|
27 | const Int_t kOXIGEN = 1608;
|
---|
28 | const Int_t kIRON = 5626;
|
---|
29 |
|
---|
30 | const Double_t kPI = 3.1415926535897932384626433832795028841971693993751;
|
---|
31 | const Double_t kRad2Deg = 180.0/kPI;
|
---|
32 |
|
---|
33 | //
|
---|
34 | // This is the definition of a global output stream, which by
|
---|
35 | // default pipes all output to the stdout
|
---|
36 | //
|
---|
37 |
|
---|
38 | //This will be fixed soon. It doesn't work with Alphas at the moment
|
---|
39 | class MLog;
|
---|
40 | #if !defined (__CINT__) || defined (__LINUX__)
|
---|
41 | extern MLog gLog;
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.