PandaRoot
FlukaResults.h
Go to the documentation of this file.
1 #ifndef ROOT_Results
2 #define ROOT_Results
3 
4 #include "TObject.h"
5 
6 class Results : public TObject {
7 
8  private:
9  Int_t pid, NofInt;
10  Double_t etot, ptot, px, py, pz, time, xx, yy, zz;
11 
12  public:
13  Results() : pid(0), NofInt(0), etot(0), ptot(0), px(0), py(0), pz(0), time(0), xx(0), yy(0), zz(0) {}
14 
15  Results(Int_t mpid, Int_t mnofint, Double_t metot, Double_t mptot, Double_t mpx, Double_t mpy, Double_t mpz, Double_t mtime, Double_t mxx, Double_t myy, Double_t mzz);
16 
17  virtual ~Results();
18 
19  ClassDef(Results, 4);
20 };
21 #endif
ClassDef(Results, 4)
virtual ~Results()