]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDReconstParticles.h
Use default arguments only in the header file (Sun)
[u/mrichter/AliRoot.git] / FMD / AliFMDReconstParticles.h
CommitLineData
dc8af42e 1#ifndef AliFMDReconstParticles_h
2#define AliFMDReconstParticles_h
3
4#include <TClonesArray.h>
5#include <TObject.h>
6class AliFMDReconstParticles: public TObject
7{
8 //Reconstracted Particles Class
9 private:
10 Int_t fNumOfDet; //Number of FMD disk;
11 Int_t fNumOfSector; //Number of sector
12 Int_t fNumOfRing; //Number of ring
13 Int_t fNumOfReconstParticles; //Number of reconstructed particles
14
15 public:
16 AliFMDReconstParticles();
17 AliFMDReconstParticles (Int_t *RecParticles);
18 virtual ~AliFMDReconstParticles(){};
19 Int_t GetVolume(); //Return the number of volume
20 Int_t GetNumberOfSector(); //Return the number of sector
21 Int_t GetNumberOfRing(); //Return the number of ring
22 Int_t GetNumberOfReconstParticles(); //Returnthe number of reconstructed particles
23 ClassDef(AliFMDReconstParticles,1)
24};
25#endif