#ifndef MAGIC_H #define MAGIC_H /////////////////////////////////////////////////////////////////////////////// // // Magic.h // // defines MAGIC base informations // /////////////////////////////////////////////////////////////////////////////// #include // // Magic number to detect the magic file type // // const UShort_t kMagicNumber = 0xc0c0; // // Values for the eventloop control // const Int_t kCONTINUE = 2; // // ParticleId for Monte Carlo simulation // const Int_t kGAMMA = 0; const Int_t kPROTON = 14; const Int_t kHELIUM = 402; const Int_t kOXIGEN = 1608; const Int_t kIRON = 5626; #endif