dc8af42e |
1 | #include "AliFMDReconstParticles.h" |
2 | |
3 | ClassImp(AliFMDReconstParticles) |
4 | |
5 | AliFMDReconstParticles::AliFMDReconstParticles() |
6 | { |
7 | fNumOfDet=0; |
8 | fNumOfSector=0; |
9 | fNumOfRing=0; |
10 | fNumOfReconstParticles=0; |
11 | } |
12 | AliFMDReconstParticles::AliFMDReconstParticles(Int_t *RecParticles) |
13 | { |
14 | fNumOfDet=RecParticles[0]; |
15 | fNumOfSector=RecParticles[1]; |
16 | fNumOfRing=RecParticles[2]; |
17 | fNumOfReconstParticles=RecParticles[3]; |
18 | } |
19 | Int_t AliFMDReconstParticles::GetVolume(){return fNumOfDet;} |
20 | Int_t AliFMDReconstParticles::GetNumberOfSector() {return fNumOfSector;} |
21 | Int_t AliFMDReconstParticles::GetNumberOfRing() {return fNumOfRing;} |
22 | Int_t AliFMDReconstParticles::GetNumberOfReconstParticles() {return fNumOfReconstParticles;} |
23 | |