]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFHitMap.cxx
Separated TOF libraries (base,rec,sim)
[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 <Riostream.h>
37 #include <TMath.h>
38
39 #include "AliLog.h"
40 #include "AliTOFHitMap.h"
41 #include "AliTOFSDigit.h"
42 #include "AliTOFGeometry.h"
43
44
45 #include <TClonesArray.h>
46
47 ClassImp(AliTOFHitMap)
48
49 AliTOFHitMap::AliTOFHitMap()
50 {
51 //
52 // Default ctor
53 //
54   fHitMap = 0;
55   fSDigits = 0;
56 }
57
58 ////////////////////////////////////////////////////////////////////////
59 AliTOFHitMap::AliTOFHitMap(TClonesArray *dig)
60 {
61 //
62 // ctor
63 //
64
65 // of course, these constants must not be hardwired
66 // change later
67
68   fNSector = AliTOFGeometry::NSectors();
69   fNplate = AliTOFGeometry::NPlates();
70   fNstrip = AliTOFGeometry::NStripC();
71   fNpx  = AliTOFGeometry::NpadX();
72   fNpz  = AliTOFGeometry::NpadZ();
73   fMaxIndex=fNSector*fNplate*fNstrip*fNpx*fNpz;
74   fHitMap = new Int_t[fMaxIndex];
75   fSDigits =  dig;
76   Clear();
77 }
78
79 ////////////////////////////////////////////////////////////////////////
80 AliTOFHitMap::AliTOFHitMap(const AliTOFHitMap & /*hitMap*/)
81 :TObject()
82 {
83 //
84 // Dummy copy constructor
85 //
86     ;
87 }
88
89  
90 ////////////////////////////////////////////////////////////////////////
91 AliTOFHitMap::~AliTOFHitMap()
92 {
93 //
94 // Destructor
95 //
96     delete[] fHitMap;
97 }
98
99 ////////////////////////////////////////////////////////////////////////
100 void AliTOFHitMap::Clear(const char *)
101 {
102 //
103 // Clear hitmap
104 //
105     memset(fHitMap,0,sizeof(int)*fMaxIndex);
106 }
107
108 ////////////////////////////////////////////////////////////////////////
109 Int_t AliTOFHitMap::CheckedIndex(Int_t *vol) const
110 {
111 //
112 // Return checked indices for vol
113 //
114   Int_t index=
115     (vol[0]/*-1*/)*fNplate*fNstrip*fNpx*fNpz+             // sector
116     (vol[1]/*-1*/)*fNstrip*fNpx*fNpz+                     // plate
117     (vol[2]/*-1*/)*fNpx*fNpz+                             // strip
118     (vol[3]/*-1*/)*fNpz+                                  // padx
119     (vol[4]/*-1*/);                                       // padz
120
121     if (index >= fMaxIndex) {
122       AliError("CheckedIndex - input outside bounds");
123         return -1;
124     } else {
125         return index;
126     }
127 }
128
129 ////////////////////////////////////////////////////////////////////////
130 void  AliTOFHitMap::SetHit(Int_t *vol, Int_t idigit)
131 {
132 //
133 // Assign digit to pad vol
134 //
135
136 // 0 means empty pad, we need to shift indeces by 1
137     fHitMap[CheckedIndex(vol)]=idigit+1;
138 }
139
140 ////////////////////////////////////////////////////////////////////////
141 void  AliTOFHitMap::SetHit(Int_t *vol)
142 {
143 //
144 // Assign last digit to pad vol 
145 //
146
147 // 0 means empty pad, we need to shift indeces by 1
148     fHitMap[CheckedIndex(vol)]=fSDigits->GetLast()+1;
149 }
150
151 ////////////////////////////////////////////////////////////////////////
152 Int_t AliTOFHitMap::GetHitIndex(Int_t *vol) const
153 {
154 //
155 // Get contents of pad vol
156 //
157
158 // 0 means empty pad, we need to shift indeces by 1
159     return fHitMap[CheckedIndex(vol)]-1;
160 }
161
162 ////////////////////////////////////////////////////////////////////////
163 TObject* AliTOFHitMap::GetHit(Int_t *vol) const
164 {
165 //
166 // Get pointer to object at vol
167 // return 0 if vol out of bounds
168     Int_t index=GetHitIndex(vol);
169     return (index <0) ? 0 : fSDigits->UncheckedAt(index);
170 }
171
172 ////////////////////////////////////////////////////////////////////////
173 FlagType AliTOFHitMap::TestHit(Int_t *vol) const
174 {
175 //
176 // Check if hit cell is empty, used or unused
177 //
178     Int_t inf=fHitMap[CheckedIndex(vol)];
179     if (inf > 0) {
180         return kUsed;
181     } else if (inf == 0) {
182         return kEmpty;
183     } else {
184         return kUnused;
185     }
186 }
187
188 ////////////////////////////////////////////////////////////////////////
189 AliTOFHitMap & AliTOFHitMap::operator = (const AliTOFHitMap & /*rhs*/) 
190 {
191 // Dummy assignment operator
192     return *this;
193 }
194
195
196
197
198