383238cf |
1 | |
2 | ////////////////////////////////////////////////////////////////////////////// |
3 | // // |
4 | // Forward Multiplicity Detector have to be reconstructed // |
5 | // number of particles in fixed pseudorapidity interval from // |
6 | // fNumOfMinRing to fNumOfMaxRing // |
7 | // and phi interval // |
8 | // from fNumOfMinSector to fNumOfMaxSector // |
9 | ////////////////////////////////////////////////////////////////////////////// |
10 | |
11 | |
dc8af42e |
12 | #include "AliFMDReconstParticles.h" |
13 | |
14 | ClassImp(AliFMDReconstParticles) |
15 | |
16 | AliFMDReconstParticles::AliFMDReconstParticles() |
17 | { |
18 | fNumOfDet=0; |
cb1df35e |
19 | fNumOfMinSector=0; |
20 | fNumOfMaxSector=0; |
21 | fNumOfMinRing=0; |
22 | fNumOfMaxRing=0; |
dc8af42e |
23 | fNumOfReconstParticles=0; |
24 | } |
25 | AliFMDReconstParticles::AliFMDReconstParticles(Int_t *RecParticles) |
26 | { |
27 | fNumOfDet=RecParticles[0]; |
cb1df35e |
28 | fNumOfMinSector=RecParticles[1]; |
29 | fNumOfMaxSector=RecParticles[2]; |
30 | fNumOfMinRing=RecParticles[3]; |
31 | fNumOfMaxRing=RecParticles[4]; |
32 | fNumOfReconstParticles=RecParticles[5]; |
dc8af42e |
33 | } |