]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDReconstParticles.h
Reconstruction in 0.1 eta over all sectors
[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;
cb1df35e 11 Int_t fNumOfMinSector; //Number of min sector
12 Int_t fNumOfMaxSector; //Number of max sector
13 Int_t fNumOfMinRing; //Number of min ring
14 Int_t fNumOfMaxRing; //Number of max ring
dc8af42e 15 Int_t fNumOfReconstParticles; //Number of reconstructed particles
16
17 public:
18 AliFMDReconstParticles();
19 AliFMDReconstParticles (Int_t *RecParticles);
20 virtual ~AliFMDReconstParticles(){};
21 Int_t GetVolume(); //Return the number of volume
cb1df35e 22 Int_t GetNumberOfMinSector(); //Return the number of min sector
23 Int_t GetNumberOfMaxSector(); //Return the number of max sector
24 Int_t GetNumberOfMinRing(); //Return the number of min ring
25 Int_t GetNumberOfMaxRing(); //Return the number of max ring
26 Int_t GetNumberOfReconstParticles(); //Returnthe the number of reconstructed particles
27 ClassDef(AliFMDReconstParticles,2)
dc8af42e 28};
29#endif