dc8af42e |
1 | #include "AliFMDReconstParticles.h" |
2 | |
3 | ClassImp(AliFMDReconstParticles) |
4 | |
5 | AliFMDReconstParticles::AliFMDReconstParticles() |
6 | { |
7 | fNumOfDet=0; |
cb1df35e |
8 | fNumOfMinSector=0; |
9 | fNumOfMaxSector=0; |
10 | fNumOfMinRing=0; |
11 | fNumOfMaxRing=0; |
dc8af42e |
12 | fNumOfReconstParticles=0; |
13 | } |
14 | AliFMDReconstParticles::AliFMDReconstParticles(Int_t *RecParticles) |
15 | { |
16 | fNumOfDet=RecParticles[0]; |
cb1df35e |
17 | fNumOfMinSector=RecParticles[1]; |
18 | fNumOfMaxSector=RecParticles[2]; |
19 | fNumOfMinRing=RecParticles[3]; |
20 | fNumOfMaxRing=RecParticles[4]; |
21 | fNumOfReconstParticles=RecParticles[5]; |
dc8af42e |
22 | } |