]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONReconstHit.h
Removing extrap.F (Christian)
[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 // Revision of includes 07/05/2004
9
10 #include <TObject.h>
11
12 class AliMUONReconstHit : public TObject 
13 {
14   public:
15     AliMUONReconstHit();
16     AliMUONReconstHit(Int_t *idx, Float_t *x, Float_t *y);
17     virtual ~AliMUONReconstHit() {}
18    
19   private:
20
21     // correlation starts from the 1-st cathode  
22     // last number in arrays corresponds to cluster on 1-st cathode
23
24     Int_t       fCorrelIndex[4];  // entry number in TreeR for the associated 
25                                  // cluster candidates on the 2-nd cathode
26     Float_t     fX[4]  ;          // X of clusters on the 2-nd cathode  
27     Float_t     fY[4]  ;          // Y of clusters
28
29   ClassDef(AliMUONReconstHit,1)  // Reconstructed Hit Object for set:MUON
30 };
31 #endif