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

Last change on this file since 812 was 690, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 897 bytes
Line 
1#ifndef MAGIC_H
2#define MAGIC_H
3///////////////////////////////////////////////////////////////////////////////
4//
5// Magic.h
6//
7// defines MAGIC base informations
8//
9///////////////////////////////////////////////////////////////////////////////
10
11#include <TROOT.h>
12
13//
14// Values for the eventloop control
15//
16const Int_t kCONTINUE = 2;
17
18//
19// ParticleId for Monte Carlo simulation
20//
21const Int_t kGAMMA = 0;
22const Int_t kPROTON = 14;
23const Int_t kHELIUM = 402;
24const Int_t kOXIGEN = 1608;
25const Int_t kIRON = 5626;
26
27const Double_t kPI = 3.1415926535897932384626433832795028841971693993751;
28const Double_t kRad2Deg = 180.0/kPI;
29
30//
31// This is the definition of a global output stream, which by
32// default pipes all output to the stdout
33//
34
35//This will be fixed soon. It doesn't work with Alphas at the moment
36class MLog;
37#ifndef __CINT__
38extern MLog gLog;
39#endif
40
41#endif
Note: See TracBrowser for help on using the repository browser.