PandaRoot
FlukaResults.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef ROOT_Results
14 #define ROOT_Results
15 
16 #include "TObject.h"
17 
18 class Results : public TObject {
19 
20  private:
21  Int_t pid, NofInt;
22  Double_t etot, ptot, px, py, pz, time, xx, yy, zz;
23 
24  public:
25  Results() : pid(0), NofInt(0), etot(0), ptot(0), px(0), py(0), pz(0), time(0), xx(0), yy(0), zz(0) {}
26 
27  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);
28 
29  virtual ~Results();
30 
31  ClassDef(Results, 4);
32 };
33 #endif
ClassDef(Results, 4)
virtual ~Results()