]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRawCluster.h
Updated comments for Doxygen
[u/mrichter/AliRoot.git] / MUON / AliMUONRawCluster.h
1 #ifndef ALIMUONRAWCLUSTER_H
2 #define ALIMUONRAWCLUSTER_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 /// \ingroup base
11 /// \class AliMUONRawCluster
12 /// \brief MUON raw cluster
13 ///
14 /// Class for the MUON RecPoint
15 /// It contains the properties of the physics cluters found in the tracking chambers
16 /// RawCluster contains also the information from the both cathode of the chambers.
17
18
19 #include <TObject.h>
20 #include <TMath.h> // because of inline funtion GetRadius
21 #include <TArrayF.h>
22 class AliMUONRawCluster : public TObject {
23
24 public:
25    AliMUONRawCluster();
26    virtual ~AliMUONRawCluster() { }
27    Float_t      GetRadius(Int_t i) {return TMath::Sqrt(fX[i]*fX[i]+fY[i]*fY[i]);}
28    Bool_t       IsSortable() const {return kTRUE;}
29    Int_t        Compare(const TObject *obj) const;
30    Int_t        PhysicsContribution() const;
31    static Int_t BinarySearch(Float_t r, TArrayF ccord, Int_t from, Int_t upto);
32    static void  SortMin(Int_t *idx,Float_t *xdarray, Float_t *xarray, Float_t *yarray, Float_t *qarray,Int_t ntr);
33    void         DumpIndex();
34
35    Int_t        AddCharge(Int_t i, Int_t Q);
36    Int_t        AddX(Int_t i, Float_t X);
37    Int_t        AddY(Int_t i, Float_t Y);
38    Int_t        AddZ(Int_t i, Float_t Z);
39
40    Int_t        GetCharge(Int_t i) const;
41    Float_t      GetX(Int_t i) const;
42    Float_t      GetY(Int_t i) const;
43    Float_t      GetZ(Int_t i) const;
44    Int_t        GetTrack(Int_t i) const;
45    Int_t        GetPeakSignal(Int_t i) const;
46    Int_t        GetMultiplicity(Int_t i) const;
47    Int_t        GetClusterType() const;
48    Int_t        GetGhost() const;
49    Int_t        GetNcluster(Int_t i) const;
50    Float_t      GetChi2(Int_t i) const;
51    Int_t        GetIndex(Int_t i, Int_t j) const;
52    Int_t        GetOffset(Int_t i, Int_t j) const;
53    Float_t      GetContrib(Int_t i, Int_t j) const;
54    Int_t        GetPhysics(Int_t i) const;
55    Int_t        GetDetElemId() const ; 
56    Float_t      GetError(Int_t iXY) const;
57    Float_t      GetErrX() const;
58    Float_t      GetErrY() const;
59
60    Int_t        SetCharge(Int_t i,Int_t Q);
61    Int_t        SetX(Int_t i, Float_t X);
62    Int_t        SetY(Int_t i, Float_t Y);
63    Int_t        SetZ(Int_t i, Float_t Z);
64    void         SetDetElemId(Int_t Id); 
65    Int_t        SetTrack(Int_t i, Int_t track);
66    Int_t        SetPeakSignal(Int_t i, Int_t peaksignal);
67    Int_t        SetMultiplicity(Int_t i, Int_t mul);
68    Int_t        SetClusterType(Int_t type);
69    Int_t        SetGhost(Int_t ghost);
70    Int_t        SetNcluster(Int_t i, Int_t ncluster);
71    Int_t        SetChi2(Int_t i, Float_t chi2);
72    void         SetIndex(Int_t i, Int_t j, Int_t index);
73    void         SetOffset(Int_t i, Int_t j, Int_t offset);
74    void         SetContrib(Int_t i, Int_t j, Float_t contrib);
75    void         SetPhysics(Int_t i, Int_t physics);
76    void         SetError(Int_t iXY, Float_t err);
77    void         SetErrX(Float_t err);
78    void         SetErrY(Float_t err);
79
80 private:
81    Int_t       fIndexMap[50][2];  ///< Indices of digits
82    Int_t       fOffsetMap[50][2]; ///< Emmanuel special
83    Float_t     fContMap[50][2];   ///< Contribution from digit
84    Int_t       fPhysicsMap[50];   ///< Distinguish signal and background contr.
85   
86    Int_t       fQ[2]  ;           ///< Q of cluster (in ADC counts)     
87    Float_t     fX[2]  ;           ///< X of cluster
88    Float_t     fY[2]  ;           ///< Y of cluster
89    Float_t     fZ[2]  ;           ///< Z of cluster
90    Int_t       fTracks[3];        ///< Labels of overlapped tracks
91    Int_t       fPeakSignal[2];    ///< Peak signal 
92    Int_t       fMultiplicity[2];  ///< Cluster multiplicity
93    Int_t       fClusterType;      ///< Cluster type
94    Int_t       fGhost;            ///< Ghost info
95                                   // 0 if not a ghost or ghost problem solved
96                                   // >0 if ghost problem remains because
97                                   // 1 both (true and ghost) satify 
98                                   //   charge chi2 compatibility
99                                   // 2 none give satisfactory chi2
100    Int_t       fNcluster[2];      ///< Number of clusters
101    Float_t     fChi2[2];          ///< Chi**2 of fit
102    Int_t       fDetElemId;        ///< ID number of the detection element (slat) on which the cluster is found. 
103    Float_t     fErrXY[2];         ///< coordinate errors
104    ClassDef(AliMUONRawCluster,1)  //Cluster class for MUON
105 };
106
107 // inline functions
108
109 inline  Int_t  AliMUONRawCluster::GetIndex(Int_t i, Int_t j) const
110 { return fIndexMap[i][j]; }
111
112 inline  Int_t  AliMUONRawCluster::GetOffset(Int_t i, Int_t j) const
113 { return fOffsetMap[i][j]; }
114
115 inline  Float_t  AliMUONRawCluster::GetContrib(Int_t i, Int_t j) const
116 { return fContMap[i][j]; }
117
118 inline  Int_t  AliMUONRawCluster::GetPhysics(Int_t i) const
119 { return fPhysicsMap[i]; }
120
121 inline  void  AliMUONRawCluster::SetIndex(Int_t i, Int_t j, Int_t index)
122 { fIndexMap[i][j] = index; }
123
124 inline  void  AliMUONRawCluster::SetOffset(Int_t i, Int_t j, Int_t offset)
125 { fOffsetMap[i][j] = offset; }
126
127 inline  void  AliMUONRawCluster::SetContrib(Int_t i, Int_t j, Float_t contrib)
128 { fContMap[i][j] = contrib; }
129
130 inline  void  AliMUONRawCluster::SetPhysics(Int_t i, Int_t physics)
131 { fPhysicsMap[i] = physics; }
132
133 inline void AliMUONRawCluster::SetDetElemId(Int_t Id)
134 { fDetElemId = Id; }
135
136 inline Int_t AliMUONRawCluster::GetDetElemId() const
137 { return fDetElemId;}
138
139 inline void AliMUONRawCluster::SetError(Int_t iXY, Float_t err)
140 { fErrXY[iXY] = err; }
141
142 inline void AliMUONRawCluster::SetErrX(Float_t err)
143 { SetError(0, err); }
144
145 inline void AliMUONRawCluster::SetErrY(Float_t err)
146 { SetError(1, err); }
147
148 inline Float_t AliMUONRawCluster::GetError(Int_t iXY) const
149 { return fErrXY[iXY]; }
150
151 inline Float_t AliMUONRawCluster::GetErrX() const
152 { return GetError(0); }
153
154 inline Float_t AliMUONRawCluster::GetErrY() const
155 { return GetError(1); }
156
157 #endif
158
159
160
161
162
163