]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONReconstHit.h
Public data members moved to private area, added setter/getters if needed. (I. Hrivna...
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstHit.h
1 #ifndef ALIMUONRECONSTHIT_H
2 #define ALIMUONRECONSTHIT_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 #include <TObject.h>
10
11 class AliMUONReconstHit : public TObject 
12 {
13   public:
14     AliMUONReconstHit() {
15        fCorrelIndex[0]=fCorrelIndex[1]=fCorrelIndex[2]=fCorrelIndex[3]=0;
16        fX[0]=fX[1]=fX[2]=fX[3]=0; fY[0]=fY[1]=fY[2]=fY[3]=0; 
17     }
18     AliMUONReconstHit(Int_t *idx, Float_t *x, Float_t *y);
19     virtual ~AliMUONReconstHit() {}
20    
21   private:
22
23     // correlation starts from the 1-st cathode  
24     // last number in arrays corresponds to cluster on 1-st cathode
25
26     Int_t       fCorrelIndex[4];  // entry number in TreeR for the associated 
27                                  // cluster candidates on the 2-nd cathode
28     Float_t     fX[4]  ;          // X of clusters on the 2-nd cathode  
29     Float_t     fY[4]  ;          // Y of clusters
30
31   ClassDef(AliMUONReconstHit,1)  // Reconstructed Hit Object for set:MUON
32 };
33 #endif