]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFHitMap.cxx
Coding convention corrections
[u/mrichter/AliRoot.git] / TOF / AliTOFHitMap.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 ////////////////////////////////////////////////////////////////////////
19 //
20 // AliTOFHitMap class
21 //
22 // hitmap enables fast check if the pad was already hit
23 // The index of a AliTOFSDigit is saved in the each hitmap "cell"
24 // (there is an offset +1, because the index can be zero and 
25 // zero means empty cell. 
26 // In TOF, number of strips varies according plate type, the highest
27 // number is in plate C. For all plates is used this number, so
28 // the size of the hitmap is a little bit greater than necessary, but
29 // it simplifies the access algorithm. 
30 // 
31 //
32 // Author: Jiri Chudoba (CERN), based on AliMUONHitMap
33 //
34 ////////////////////////////////////////////////////////////////////////
35
36 #include "AliLog.h"
37 #include "AliTOFHitMap.h"
38 #include "AliTOFGeometry.h"
39
40
41 #include <TClonesArray.h>
42
43 ClassImp(AliTOFHitMap)
44
45 AliTOFHitMap::AliTOFHitMap()
46 {
47 //
48 // Default ctor
49 //
50   fHitMap = 0;
51   fSDigits = 0;
52 }
53
54 ////////////////////////////////////////////////////////////////////////
55 AliTOFHitMap::AliTOFHitMap(TClonesArray *dig, AliTOFGeometry *tofGeom)
56 {
57 //
58 // ctor
59 //
60
61 // of course, these constants must not be hardwired
62 // change later
63
64   fTOFGeometry = tofGeom;
65
66   fNSector = AliTOFGeometry::NSectors();
67   fNplate = AliTOFGeometry::NPlates();
68   fNstrip = fTOFGeometry->NMaxNstrip();
69   fNpx  = AliTOFGeometry::NpadX();
70   fNpz  = AliTOFGeometry::NpadZ();
71   fMaxIndex=fNSector*fNplate*fNstrip*fNpx*fNpz;
72   fHitMap = new Int_t[fMaxIndex];
73   fSDigits =  dig;
74   Clear();
75 }
76
77 ////////////////////////////////////////////////////////////////////////
78 AliTOFHitMap::AliTOFHitMap(const AliTOFHitMap & /*hitMap*/)
79 :TObject()
80 {
81 //
82 // Dummy copy constructor
83 //
84   ;
85 }
86
87  
88 ////////////////////////////////////////////////////////////////////////
89 AliTOFHitMap::~AliTOFHitMap()
90 {
91 //
92 // Destructor
93 //
94   delete[] fHitMap;
95
96   fTOFGeometry = 0x0;
97
98 }
99
100 ////////////////////////////////////////////////////////////////////////
101 void AliTOFHitMap::Clear(const char *)
102 {
103 //
104 // Clear hitmap
105 //
106     memset(fHitMap,0,sizeof(int)*fMaxIndex);
107 }
108
109 ////////////////////////////////////////////////////////////////////////
110 Int_t AliTOFHitMap::CheckedIndex(Int_t *vol) const
111 {
112 //
113 // Return checked indices for vol
114 //
115   Int_t index=
116     vol[0]*fNplate*fNstrip*fNpx*fNpz+             // sector
117     vol[1]*fNstrip*fNpx*fNpz+                     // plate
118     vol[2]*fNpx*fNpz+                             // strip
119     vol[3]*fNpz+                                  // padx
120     vol[4];                                       // padz
121
122     if (index >= fMaxIndex) {
123       AliError("CheckedIndex - input outside bounds");
124         return -1;
125     } else {
126         return index;
127     }
128 }
129
130 ////////////////////////////////////////////////////////////////////////
131 void  AliTOFHitMap::SetHit(Int_t *vol, Int_t idigit)
132 {
133 //
134 // Assign digit to pad vol
135 //
136
137 // 0 means empty pad, we need to shift indeces by 1
138     fHitMap[CheckedIndex(vol)]=idigit+1;
139 }
140
141 ////////////////////////////////////////////////////////////////////////
142 void  AliTOFHitMap::SetHit(Int_t *vol)
143 {
144 //
145 // Assign last digit to pad vol 
146 //
147
148 // 0 means empty pad, we need to shift indeces by 1
149     fHitMap[CheckedIndex(vol)]=fSDigits->GetLast()+1;
150 }
151
152 ////////////////////////////////////////////////////////////////////////
153 Int_t AliTOFHitMap::GetHitIndex(Int_t *vol) const
154 {
155 //
156 // Get contents of pad vol
157 //
158
159 // 0 means empty pad, we need to shift indeces by 1
160     return fHitMap[CheckedIndex(vol)]-1;
161 }
162
163 ////////////////////////////////////////////////////////////////////////
164 TObject* AliTOFHitMap::GetHit(Int_t *vol) const
165 {
166 //
167 // Get pointer to object at vol
168 // return 0 if vol out of bounds
169     Int_t index=GetHitIndex(vol);
170     return (index <0) ? 0 : fSDigits->UncheckedAt(index);
171 }
172
173 ////////////////////////////////////////////////////////////////////////
174 FlagType AliTOFHitMap::TestHit(Int_t *vol) const
175 {
176 //
177 // Check if hit cell is empty, used or unused
178 //
179     Int_t inf=fHitMap[CheckedIndex(vol)];
180     if (inf > 0) {
181         return kUsed;
182     } else if (inf == 0) {
183         return kEmpty;
184     } else {
185         return kUnused;
186     }
187 }
188
189 ////////////////////////////////////////////////////////////////////////
190 AliTOFHitMap & AliTOFHitMap::operator = (const AliTOFHitMap & /*rhs*/) 
191 {
192 // Dummy assignment operator
193     return *this;
194 }