]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHRawCluster.h
First interation on SplitByLocalMaxima with Nico
[u/mrichter/AliRoot.git] / RICH / AliRICHRawCluster.h
CommitLineData
543d5224 1#ifndef AliRICHRawCluster_h
2#define AliRICHRawCluster_h
237c933d 3
4
5/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6 * See cxx source for full Copyright notice */
7
237c933d 8#include <TObject.h>
237c933d 9
10
543d5224 11class AliRICHRawCluster : public TObject
12{
13public:
14 AliRICHRawCluster();
15 virtual ~AliRICHRawCluster(){;}
16 Bool_t IsSortable() const {return kTRUE;} //virtual
17 Int_t Compare(const TObject *obj) const; //virtual
6ce834b4 18 void Print(const Option_t *option="")const; //virtual
543d5224 19 Int_t PhysicsContribution();
237c933d 20public:
543d5224 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
543d5224 27 Float_t fContMap[50]; //Contribution from digit
28 Int_t fPhysicsMap[50]; // physics processes
29 Int_t fMultiplicity; //cluster multiplicity
30 Int_t fNcluster[2]; //number of clusters
31 Int_t fClusterType; //??
32 Int_t fCtype; //CL0, CL1, etc...
6ce834b4 33 ClassDef(AliRICHRawCluster,2) //Cluster object for set:RICH
237c933d 34};
35#endif