]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHRawCluster.h
Removed
[u/mrichter/AliRoot.git] / RICH / AliRICHRawCluster.h
1 #ifndef AliRICHRawCluster_h
2 #define AliRICHRawCluster_h
3
4
5 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6  * See cxx source for full Copyright notice                               */
7
8 #include <TObject.h>
9
10
11 class AliRICHRawCluster : public TObject 
12 {
13 public:    
14            AliRICHRawCluster();
15   virtual ~AliRICHRawCluster(){;}
16   Bool_t IsSortable() const {return kTRUE;}  //virtual
17   Int_t  Compare(const TObject *obj) const;  //virtual
18   void   Print(const Option_t *option)const; //virtual  
19   Int_t  PhysicsContribution();
20 public:
21   Int_t       fTracks[3];      //labels of overlapped tracks
22   Int_t       fQ  ;            // Q of cluster (in ADC counts)     
23   Float_t     fX  ;            // X of cluster
24   Float_t     fY  ;            // Y of cluster
25   Int_t       fPeakSignal;     // Charge in the peak
26   Int_t       fIndexMap[50];   //indeces of digits
27   Int_t       fOffsetMap[50];  // offset map
28   Float_t     fContMap[50];    //Contribution from digit
29   Int_t       fPhysicsMap[50]; // physics processes
30   Int_t       fMultiplicity;   //cluster multiplicity
31   Int_t       fNcluster[2];    //number of clusters
32   Int_t       fClusterType;    //??
33   Int_t       fCtype;          //CL0, CL1, etc...    
34   ClassDef(AliRICHRawCluster,1)  //Cluster object for set:RICH
35 };
36 #endif