1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 ////////////////////////////////////////////////////////////////////////
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.
32 // Author: Jiri Chudoba (CERN), based on AliMUONHitMap
34 ////////////////////////////////////////////////////////////////////////
37 #include "AliTOFHitMap.h"
38 #include "AliTOFGeometry.h"
41 #include <TClonesArray.h>
43 ClassImp(AliTOFHitMap)
45 AliTOFHitMap::AliTOFHitMap()
54 ////////////////////////////////////////////////////////////////////////
55 AliTOFHitMap::AliTOFHitMap(TClonesArray *dig, AliTOFGeometry *tofGeom)
61 // of course, these constants must not be hardwired
64 fTOFGeometry = tofGeom;
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];
77 ////////////////////////////////////////////////////////////////////////
78 AliTOFHitMap::AliTOFHitMap(const AliTOFHitMap & /*hitMap*/)
82 // Dummy copy constructor
88 ////////////////////////////////////////////////////////////////////////
89 AliTOFHitMap::~AliTOFHitMap()
100 ////////////////////////////////////////////////////////////////////////
101 void AliTOFHitMap::Clear(const char *)
106 memset(fHitMap,0,sizeof(int)*fMaxIndex);
109 ////////////////////////////////////////////////////////////////////////
110 Int_t AliTOFHitMap::CheckedIndex(Int_t *vol) const
113 // Return checked indices for vol
116 vol[0]*fNplate*fNstrip*fNpx*fNpz+ // sector
117 vol[1]*fNstrip*fNpx*fNpz+ // plate
118 vol[2]*fNpx*fNpz+ // strip
122 if (index >= fMaxIndex) {
123 AliError("CheckedIndex - input outside bounds");
130 ////////////////////////////////////////////////////////////////////////
131 void AliTOFHitMap::SetHit(Int_t *vol, Int_t idigit)
134 // Assign digit to pad vol
137 // 0 means empty pad, we need to shift indeces by 1
138 fHitMap[CheckedIndex(vol)]=idigit+1;
141 ////////////////////////////////////////////////////////////////////////
142 void AliTOFHitMap::SetHit(Int_t *vol)
145 // Assign last digit to pad vol
148 // 0 means empty pad, we need to shift indeces by 1
149 fHitMap[CheckedIndex(vol)]=fSDigits->GetLast()+1;
152 ////////////////////////////////////////////////////////////////////////
153 Int_t AliTOFHitMap::GetHitIndex(Int_t *vol) const
156 // Get contents of pad vol
159 // 0 means empty pad, we need to shift indeces by 1
160 return fHitMap[CheckedIndex(vol)]-1;
163 ////////////////////////////////////////////////////////////////////////
164 TObject* AliTOFHitMap::GetHit(Int_t *vol) const
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);
173 ////////////////////////////////////////////////////////////////////////
174 FlagType AliTOFHitMap::TestHit(Int_t *vol) const
177 // Check if hit cell is empty, used or unused
179 Int_t inf=fHitMap[CheckedIndex(vol)];
182 } else if (inf == 0) {
189 ////////////////////////////////////////////////////////////////////////
190 AliTOFHitMap & AliTOFHitMap::operator = (const AliTOFHitMap & /*rhs*/)
192 // Dummy assignment operator