source: trunk/MagicSoft/Mars/mbase/MAGIC.h@ 1299

Last change on this file since 1299 was 1278, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 912 bytes
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//
18const Int_t kCONTINUE = 2;
19const Int_t kSKIP = 2;
20
21//
22// ParticleId for Monte Carlo simulation
23//
24const Int_t kGAMMA = 0;
25const Int_t kPROTON = 14;
26const Int_t kHELIUM = 402;
27const Int_t kOXIGEN = 1608;
28const Int_t kIRON = 5626;
29
30const Double_t kPI = 3.1415926535897932384626433832795028841971693993751;
31const 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#ifdef __LINUX__
39class MLog;
40#else
41#include "MLog.h"
42#endif
43
44extern MLog gLog;
45
46#endif
Note: See TracBrowser for help on using the repository browser.