]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/tracking-ca/AliHLTTPCCANeighboursFinder.cxx
updae of the GPU framework
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCANeighboursFinder.cxx
1 // @(#) $Id: AliHLTTPCCANeighboursFinder1.cxx 27042 2008-07-02 12:06:02Z richterm $
2 // **************************************************************************
3 // This file is property of and copyright by the ALICE HLT Project          *
4 // ALICE Experiment at CERN, All rights reserved.                           *
5 //                                                                          *
6 // Primary Authors: Sergey Gorbunov <sergey.gorbunov@kip.uni-heidelberg.de> *
7 //                  Ivan Kisel <kisel@kip.uni-heidelberg.de>                *
8 //                  for The ALICE HLT Project.                              *
9 //                                                                          *
10 // Permission to use, copy, modify and distribute this software and its     *
11 // documentation strictly for non-commercial purposes is hereby granted     *
12 // without fee, provided that the above copyright notice appears in all     *
13 // copies and that both the copyright notice and this permission notice     *
14 // appear in the supporting documentation. The authors make no claims       *
15 // about the suitability of this software for any purpose. It is            *
16 // provided "as is" without express or implied warranty.                    *
17 //                                                                          *
18 //***************************************************************************
19
20 #include "AliHLTTPCCANeighboursFinder.h"
21 #include "AliHLTTPCCAMath.h"
22 #include "AliHLTTPCCAHitArea.h"
23 #include "AliHLTTPCCATracker.h"
24 #include "AliHLTTPCCAHit.h"
25
26 //#define DRAW
27
28 #ifdef DRAW
29 #include "AliHLTTPCCADisplay.h"
30 #endif
31
32 GPUd() void AliHLTTPCCANeighboursFinder::Thread
33 ( int /*nBlocks*/, int nThreads, int iBlock, int iThread, int iSync,
34   AliHLTTPCCASharedMemory &s, AliHLTTPCCATracker &tracker )
35 {
36   //* find neighbours
37
38   if ( iSync == 0 ) {
39 #ifdef HLTCA_GPUCODE
40         for (int i = iThread;i < sizeof(AliHLTTPCCARow) / sizeof(int);i += nThreads)
41         {
42                 reinterpret_cast<int*>(&s.fRow)[i] = reinterpret_cast<int*>(&tracker.SliceDataRows()[iBlock])[i];
43                 if (iBlock >= 2 && iBlock <= tracker.Param().NRows() - 3)
44                 {
45                         reinterpret_cast<int*>(&s.fRowUp)[i] = reinterpret_cast<int*>(&tracker.SliceDataRows()[iBlock + 2])[i];
46                         reinterpret_cast<int*>(&s.fRowDown)[i] = reinterpret_cast<int*>(&tracker.SliceDataRows()[iBlock - 2])[i];
47                 }
48         }
49         __syncthreads();
50 #endif
51     if ( iThread == 0 ) {
52       s.fNRows = tracker.Param().NRows();
53       s.fIRow = iBlock;
54       if ( s.fIRow < s.fNRows ) {
55 #ifdef HLTCA_GPUCODE
56                 const AliHLTTPCCARow &row = s.fRow;
57 #else
58                 const AliHLTTPCCARow &row = tracker.Row( s.fIRow );
59 #endif
60         s.fNHits = row.NHits();
61
62         if ( ( s.fIRow >= 2 ) && ( s.fIRow <= s.fNRows - 3 ) ) {
63           s.fIRowUp = s.fIRow + 2;
64           s.fIRowDn = s.fIRow - 2;
65
66           // references to the rows above and below
67
68 #ifdef HLTCA_GPUCODE
69           const AliHLTTPCCARow &rowUp = s.fRowUp;
70           const AliHLTTPCCARow &rowDn = s.fRowDown;
71 #else
72           const AliHLTTPCCARow &rowUp = tracker.Row( s.fIRowUp );
73           const AliHLTTPCCARow &rowDn = tracker.Row( s.fIRowDn );
74 #endif
75           // the axis perpendicular to the rows
76           const float xDn = rowDn.X();
77           const float x   = row.X();
78           const float xUp = rowUp.X();
79
80           // number of hits in rows above and below
81           s.fUpNHits = tracker.Row( s.fIRowUp ).NHits();
82           s.fDnNHits = tracker.Row( s.fIRowDn ).NHits();
83
84           // distance of the rows (absolute and relative)
85           s.fUpDx = xUp - x;
86           s.fDnDx = xDn - x;
87           s.fUpTx = xUp / x;
88           s.fDnTx = xDn / x;
89           // UpTx/DnTx is used to move the HitArea such that central events are preferred (i.e. vertices
90           // coming from y = 0, z = 0).
91
92           //s.fGridUp = tracker.Row( s.fIRowUp ).Grid();
93           //s.fGridDn = tracker.Row( s.fIRowDn ).Grid();
94         }
95       }
96     }
97   } else if ( iSync == 1 ) {
98     if ( s.fIRow < s.fNRows ) {
99       if ( ( s.fIRow <= 1 ) || ( s.fIRow >= s.fNRows - 2 ) ) {
100 #ifdef HLTCA_GPUCODE
101                 const AliHLTTPCCARow &row = s.fRow;
102 #else
103                 const AliHLTTPCCARow &row = tracker.Row( s.fIRow );
104 #endif
105         for ( int ih = iThread; ih < s.fNHits; ih += nThreads ) {
106           tracker.SetHitLinkUpData( row, ih, -1 );
107           tracker.SetHitLinkDownData( row, ih, -1 );
108         }
109       } else {
110 /*#ifdef HLTCA_GPUCODE
111           const AliHLTTPCCARow &rowUp = s.fRowUp;
112           const AliHLTTPCCARow &rowDn = s.fRowDown;
113 #else
114           const AliHLTTPCCARow &rowUp = tracker.Row( s.fIRowUp );
115           const AliHLTTPCCARow &rowDn = tracker.Row( s.fIRowDn );
116 #endif
117
118         for ( unsigned int ih = iThread; ih < s.fGridUp.N() + s.fGridUp.Ny() + 2; ih += nThreads ) {
119           s.fGridContentUp[ih] = tracker.FirstHitInBin( rowUp, ih );
120         }
121         for ( unsigned int ih = iThread; ih < s.fGridDn.N() + s.fGridDn.Ny() + 2; ih += nThreads ) {
122           s.fGridContentDn[ih] = tracker.FirstHitInBin( rowDn, ih );
123         }*/
124       }
125     }
126   } else if ( iSync == 2 ) {
127     if ( ( s.fIRow <= 1 ) || ( s.fIRow >= s.fNRows - 2 ) ) return;
128
129     float chi2Cut = 3.*3.*4 * ( s.fUpDx * s.fUpDx + s.fDnDx * s.fDnDx );
130     const float kAreaSize = tracker.Param().NeighboursSearchArea();
131     //float chi2Cut = 3.*3.*(s.fUpDx*s.fUpDx + s.fDnDx*s.fDnDx ); //SG
132 #define kMaxN 20
133
134 #ifdef HLTCA_GPUCODE
135                   const AliHLTTPCCARow &row = s.fRow;
136           const AliHLTTPCCARow &rowUp = s.fRowUp;
137           const AliHLTTPCCARow &rowDn = s.fRowDown;
138 #else
139                   const AliHLTTPCCARow &row = tracker.Row( s.fIRow );
140                   const AliHLTTPCCARow &rowUp = tracker.Row( s.fIRowUp );
141           const AliHLTTPCCARow &rowDn = tracker.Row( s.fIRowDn );
142 #endif
143     const float y0 = row.Grid().YMin();
144     const float z0 = row.Grid().ZMin();
145     const float stepY = row.HstepY();
146     const float stepZ = row.HstepZ();
147
148         for ( int ih = iThread; ih < s.fNHits; ih += nThreads ) {
149
150       unsigned short *neighUp = s.fB[iThread];
151       float2 *yzUp = s.fA[iThread];
152 #if defined(HLTCA_GPUCODE) & kMaxN > ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP
153           unsigned short neighUp2[kMaxN - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP];
154           float2 yzUp2[kMaxN - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP];
155 #endif
156       //unsigned short neighUp[5];
157       //float2 yzUp[5];
158
159       int linkUp = -1;
160       int linkDn = -1;
161
162       if ( s.fDnNHits > 0 && s.fUpNHits > 0 ) {
163
164         int nNeighUp = 0;
165
166         // coordinates of the hit in the current row
167 #if defined(HLTCA_GPU_TEXTURE_FETCHa)
168                 ushort2 tmpval = tex1Dfetch(gAliTexRefu2, ((char*) tracker.Data().HitData() - tracker.pData()->GPUTextureBase()) / sizeof(ushort2) + row.HitNumberOffset() + ih);
169         const float y = y0 + tmpval.x * stepY;
170         const float z = z0 + tmpval.y * stepZ;
171 #else
172         const float y = y0 + tracker.HitDataY( row, ih ) * stepY;
173         const float z = z0 + tracker.HitDataZ( row, ih ) * stepZ;
174 #endif
175
176         AliHLTTPCCAHitArea areaDn, areaUp;
177         areaUp.Init( rowUp, tracker.Data(), y*s.fUpTx, z*s.fUpTx, kAreaSize, kAreaSize );
178         areaDn.Init( rowDn, tracker.Data(), y*s.fDnTx, z*s.fDnTx, kAreaSize, kAreaSize );
179
180         do {
181           AliHLTTPCCAHit h;
182           int i = areaUp.GetNext( tracker, rowUp, tracker.Data(), &h );
183           if ( i < 0 ) break;
184 #if defined(HLTCA_GPUCODE) & kMaxN > ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP
185                   if (nNeighUp >= ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP)
186                   {
187                         neighUp2[nNeighUp - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP] = ( unsigned short ) i;
188                         yzUp2[nNeighUp - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP] = CAMath::MakeFloat2( s.fDnDx * ( h.Y() - y ), s.fDnDx * ( h.Z() - z ) );
189                   }
190                   else
191 #endif
192                   {
193                         neighUp[nNeighUp] = ( unsigned short ) i;
194                         yzUp[nNeighUp] = CAMath::MakeFloat2( s.fDnDx * ( h.Y() - y ), s.fDnDx * ( h.Z() - z ) );
195                   }
196           if ( ++nNeighUp >= kMaxN ) break;
197         } while ( 1 );
198
199         int nNeighDn = 0;
200
201         if ( nNeighUp > 0 ) {
202
203           int bestDn = -1, bestUp = -1;
204           float bestD = 1.e10;
205
206           do {
207             AliHLTTPCCAHit h;
208             int i = areaDn.GetNext( tracker, rowDn, tracker.Data(), &h );
209             if ( i < 0 ) break;
210
211             nNeighDn++;
212             float2 yzdn = CAMath::MakeFloat2( s.fUpDx * ( h.Y() - y ), s.fUpDx * ( h.Z() - z ) );
213
214             for ( int iUp = 0; iUp < nNeighUp; iUp++ ) {
215 #if defined(HLTCA_GPUCODE) & kMaxN > ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP
216                           float2 yzup = iUp >= ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP ? yzUp2[iUp - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP] : yzUp[iUp];
217 #else
218               float2 yzup = yzUp[iUp];
219 #endif
220
221               float dy = yzdn.x - yzup.x;
222               float dz = yzdn.y - yzup.y;
223               float d = dy * dy + dz * dz;
224               if ( d < bestD ) {
225                 bestD = d;
226                 bestDn = i;
227                 bestUp = iUp;
228               }
229             }
230           } while ( 1 );
231
232           if ( bestD <= chi2Cut ) {
233 #if defined(HLTCA_GPUCODE) & kMaxN > ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP
234                         linkUp = bestUp >= ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP ? neighUp2[bestUp - ALIHLTTPCCANEIGHBOURS_FINDER_MAX_NNEIGHUP] : neighUp[bestUp];
235 #else
236             linkUp = neighUp[bestUp];
237 #endif
238             linkDn = bestDn;
239           }
240         }
241 #ifdef DRAW
242         std::cout << "n NeighUp = " << nNeighUp << ", n NeighDn = " << nNeighDn << std::endl;
243 #endif
244
245       }
246
247       tracker.SetHitLinkUpData( row, ih, linkUp );
248       tracker.SetHitLinkDownData( row, ih, linkDn );
249 #ifdef DRAW
250       std::cout << "Links for row " << s.fIRow << ", hit " << ih << ": " << linkUp << " " << linkDn << std::endl;
251       if ( s.fIRow == 22 && ih == 5 ) {
252         AliHLTTPCCADisplay::Instance().DrawSliceLink( s.fIRow, ih, -1, -1, 1 );
253         AliHLTTPCCADisplay::Instance().DrawSliceHit( s.fIRow, ih, kBlue, 1. );
254         AliHLTTPCCADisplay::Instance().Ask();
255       }
256 #endif
257     }
258   }
259 }
260