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

Last change on this file since 1266 was 1118, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 986 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//This will be fixed soon. It doesn't work with Alphas at the moment
39class MLog;
40#if !defined (__CINT__) || defined (__LINUX__)
41extern MLog gLog;
42#endif
43
44#endif
Note: See TracBrowser for help on using the repository browser.