Project
Loading...
Searching...
No Matches
GPUTRDTracker.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15// #define ENABLE_GPUTRDDEBUG
16#define ENABLE_WARNING 0
17#define ENABLE_INFO 0
18
19#include "GPUTRDTracker.h"
20#include "GPUTRDTrackletWord.h"
21#include "GPUTRDGeometry.h"
22#include "GPUTRDTrackerDebug.h"
23#include "GPUCommonMath.h"
24#include "GPUCommonAlgorithm.h"
25
26using namespace o2::gpu;
27
29
30#ifndef GPUCA_GPUCODE
31#include "GPUMemoryResource.h"
32#include "GPUReconstruction.h"
33#include <chrono>
34#include <vector>
35
36#include "GPUChainTracking.h"
37
38template <class TRDTRK, class PROP>
40{
41 mNMaxTracks = std::max(std::max(io.nOutputTracksTPCO2, io.nTracksTPCITSO2), std::max(io.nMergedTracks, io.nOutputTracksTPCO2)); // TODO: This is a bit stupid, we should just take the correct number, not the max of all
42 mNMaxSpacePoints = io.nTRDTracklets;
43 mNMaxCollisions = io.nTRDTriggerRecords;
44}
45
46template <class TRDTRK, class PROP>
49 AllocateAndInitializeLate();
50 mMemoryPermanent = mRec->RegisterMemoryAllocation(this, &GPUTRDTracker_t<TRDTRK, PROP>::SetPointersBase, GPUMemoryResource::MEMORY_PERMANENT, "TRDInitialize");
51 mMemoryTracklets = mRec->RegisterMemoryAllocation(this, &GPUTRDTracker_t<TRDTRK, PROP>::SetPointersTracklets, GPUMemoryResource::MEMORY_INPUT, "TRDTracklets");
52 mMemoryTracks = mRec->RegisterMemoryAllocation(this, &GPUTRDTracker_t<TRDTRK, PROP>::SetPointersTracks, GPUMemoryResource::MEMORY_INOUT, "TRDTracks");
55template <class TRDTRK, class PROP>
58 //--------------------------------------------------------------------
59 // Allocate memory for fixed size objects (needs to be done only once)
60 //--------------------------------------------------------------------
61 mMaxBackendThreads = mRec->GetMaxBackendThreads();
62 computePointerWithAlignment(base, mR, kNChambers);
63 computePointerWithAlignment(base, mHypothesis, mNCandidates * mMaxBackendThreads);
64 computePointerWithAlignment(base, mCandidates, mNCandidates * 2 * mMaxBackendThreads);
65 return base;
66}
67
68template <class TRDTRK, class PROP>
70{
71 //--------------------------------------------------------------------
72 // Allocate memory for tracklets and space points
73 // (size might change for different events)
74 //--------------------------------------------------------------------
75 if (mGenerateSpacePoints) {
76 computePointerWithAlignment(base, mSpacePoints, mNMaxSpacePoints);
77 }
78 computePointerWithAlignment(base, mTrackletIndexArray, (kNChambers + 1) * mNMaxCollisions);
79 return base;
80}
81
82template <class TRDTRK, class PROP>
84{
85 //--------------------------------------------------------------------
86 // Allocate memory for tracks (this is done once per event)
87 //--------------------------------------------------------------------
88 computePointerWithAlignment(base, mTracks, mNMaxTracks);
89 computePointerWithAlignment(base, mTrackAttribs, mNMaxTracks);
90 return base;
91}
92
93template <class TRDTRK, class PROP>
94GPUTRDTracker_t<TRDTRK, PROP>::GPUTRDTracker_t() : mR(nullptr), mIsInitialized(false), mGenerateSpacePoints(false), mProcessPerTimeFrame(false), mNAngleHistogramBins(25), mAngleHistogramRange(50), mMemoryPermanent(-1), mMemoryTracklets(-1), mMemoryTracks(-1), mNMaxCollisions(0), mNMaxTracks(0), mNMaxSpacePoints(0), mTracks(nullptr), mTrackAttribs(nullptr), mNCandidates(1), mNTracks(0), mNEvents(0), mMaxBackendThreads(100), mTrackletIndexArray(nullptr), mHypothesis(nullptr), mCandidates(nullptr), mSpacePoints(nullptr), mGeo(nullptr), mRPhiA2(0), mRPhiB(0), mRPhiC2(0), mDyA2(0), mDyB(0), mDyC2(0), mAngleToDyA(0), mAngleToDyB(0), mAngleToDyC(0), mDebugOutput(false), mMaxEta(0.84f), mRoadZ(18.f), mZCorrCoefNRC(1.4f), mTPCVdrift(2.58f), mTPCTDriftOffset(0.f), mDebug(new GPUTRDTrackerDebug<TRDTRK>())
95{
96 //--------------------------------------------------------------------
97 // Default constructor
98 //--------------------------------------------------------------------
99}
100
101template <class TRDTRK, class PROP>
103{
104 //--------------------------------------------------------------------
105 // Destructor
106 //--------------------------------------------------------------------
107 delete mDebug;
108}
109
110template <class TRDTRK, class PROP>
112{
113 //--------------------------------------------------------------------
114 // Initialise tracker
115 //--------------------------------------------------------------------
116
117 UpdateGeometry();
118
119 mDebug->ExpandVectors();
120 mIsInitialized = true;
121}
122
123template <class TRDTRK, class PROP>
125{
126 //--------------------------------------------------------------------
127 // Update Geometry of TRDTracker
128 //--------------------------------------------------------------------
129 mGeo = (const GPUTRDGeometry*)GetConstantMem()->calibObjects.trdGeometry;
130 if (!mGeo) {
131 GPUFatal("TRD geometry must be provided externally");
132 }
133 float Bz = Param().bzkG;
134 float resRPhiIdeal2 = Param().rec.trd.trkltResRPhiIdeal * Param().rec.trd.trkltResRPhiIdeal;
135 GPUInfo("Initializing with B-field: %f kG", Bz);
136 if (CAMath::Abs(CAMath::Abs(Bz) - 2) < 0.1f) {
137 // magnetic field +-0.2 T
138 if (Bz > 0) {
139 GPUInfo("Loading error parameterization for Bz = +2 kG");
140 mRPhiA2 = resRPhiIdeal2, mRPhiB = -1.43e-2f, mRPhiC2 = 4.55e-2f;
141 mDyA2 = 1.225e-3f, mDyB = -9.8e-3f, mDyC2 = 3.88e-2f;
142 mAngleToDyA = -0.1f, mAngleToDyB = 1.89f, mAngleToDyC = -0.4f;
143 } else {
144 GPUInfo("Loading error parameterization for Bz = -2 kG");
145 mRPhiA2 = resRPhiIdeal2, mRPhiB = 1.43e-2f, mRPhiC2 = 4.55e-2f;
146 mDyA2 = 1.225e-3f, mDyB = 9.8e-3f, mDyC2 = 3.88e-2f;
147 mAngleToDyA = 0.1f, mAngleToDyB = 1.89f, mAngleToDyC = 0.4f;
148 }
149 } else if (CAMath::Abs(CAMath::Abs(Bz) - 5) < 0.1f) {
150 // magnetic field +-0.5 T
151 if (Bz > 0) {
152 GPUInfo("Loading error parameterization for Bz = +5 kG");
153 mRPhiA2 = resRPhiIdeal2, mRPhiB = 0.125f, mRPhiC2 = 0.0961f;
154 mDyA2 = 1.681e-3f, mDyB = 0.15f, mDyC2 = 0.1849f;
155 mAngleToDyA = 0.13f, mAngleToDyB = 2.43f, mAngleToDyC = -0.58f;
156 } else {
157 GPUInfo("Loading error parameterization for Bz = -5 kG");
158 mRPhiA2 = resRPhiIdeal2, mRPhiB = -0.14f, mRPhiC2 = 0.1156f;
159 mDyA2 = 2.209e-3f, mDyB = -0.15f, mDyC2 = 0.2025f;
160 mAngleToDyA = -0.15f, mAngleToDyB = 2.34f, mAngleToDyC = 0.56f;
161 }
162 } else {
163 // magnetic field 0 T or another value which is not covered by the error parameterizations
164 // using default values instead
165 GPUWarning("No error parameterization available for Bz = %.2f kG. Keeping default value (sigma_y = const. = 1cm)", Bz);
166 mRPhiA2 = 1.f;
167 }
168
169 // obtain average radius of TRD chambers
170 float x0[kNLayers] = {300.2f, 312.8f, 325.4f, 338.0f, 350.6f, 363.2f}; // used as default value in case no transformation matrix can be obtained
171 auto* matrix = mGeo->GetClusterMatrix(0);
172 float loc[3] = {mGeo->AnodePos(), 0.f, 0.f};
173 float glb[3] = {0.f, 0.f, 0.f};
174 for (int32_t iDet = 0; iDet < kNChambers; ++iDet) {
175 matrix = mGeo->GetClusterMatrix(iDet);
176 if (!matrix) {
177 mR[iDet] = x0[mGeo->GetLayer(iDet)];
178 continue;
179 }
180 matrix->LocalToMaster(loc, glb);
181 mR[iDet] = glb[0];
182 }
183}
184
185template <class TRDTRK, class PROP>
187{
188 //--------------------------------------------------------------------
189 // Reset tracker
190 //--------------------------------------------------------------------
191 mNTracks = 0;
192}
193
194template <class TRDTRK, class PROP>
196{
197 //--------------------------------------------------------------------
198 // Prepare tracklet index array and if requested calculate space points
199 // in part duplicated from DoTracking() method to allow for calling
200 // this function on the host prior to GPU processing
201 //--------------------------------------------------------------------
202 for (uint32_t iColl = 0; iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords; ++iColl) {
203 if (GetConstantMem()->ioPtrs.trdTrigRecMask && GetConstantMem()->ioPtrs.trdTrigRecMask[iColl] == 0) {
204 // this trigger is masked as there is no ITS information available for it
205 continue;
206 }
207 int32_t nTrklts = 0;
208 int32_t idxOffset = 0;
209 if (mProcessPerTimeFrame) {
210 idxOffset = GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl];
211 nTrklts = (iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords - 1) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl + 1] - GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl] : GetConstantMem()->ioPtrs.nTRDTracklets - GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl];
212 } else {
213 nTrklts = GetConstantMem()->ioPtrs.nTRDTracklets;
214 }
215 const GPUTRDTrackletWord* tracklets = &((GetConstantMem()->ioPtrs.trdTracklets)[idxOffset]);
216 int32_t* trkltIndexArray = &mTrackletIndexArray[iColl * (kNChambers + 1) + 1];
217 trkltIndexArray[-1] = 0;
218 int32_t currDet = 0;
219 int32_t nextDet = 0;
220 int32_t trkltCounter = 0;
221 for (int32_t iTrklt = 0; iTrklt < nTrklts; ++iTrklt) {
222 if (tracklets[iTrklt].GetDetector() > currDet) {
223 nextDet = tracklets[iTrklt].GetDetector();
224 for (int32_t iDet = currDet; iDet < nextDet; ++iDet) {
225 trkltIndexArray[iDet] = trkltCounter;
226 }
227 currDet = nextDet;
228 }
229 ++trkltCounter;
230 }
231 for (int32_t iDet = currDet; iDet <= kNChambers; ++iDet) {
232 trkltIndexArray[iDet] = trkltCounter;
233 }
234 if (mGenerateSpacePoints) {
235 if (!CalculateSpacePoints(iColl)) {
236 GPUError("Space points for at least one chamber could not be calculated (for interaction %i)", iColl);
237 break;
238 }
239 }
240 }
241 if (mGenerateSpacePoints) {
242 chainTracking->mIOPtrs.trdSpacePoints = mSpacePoints;
243 }
244 mNEvents++;
245}
246
247template <class TRDTRK, class PROP>
249{
250 //--------------------------------------------------------------------
251 // set the number of candidates to be used
252 //--------------------------------------------------------------------
253 if (!mIsInitialized) {
254 mNCandidates = n;
255 } else {
256 GPUError("Cannot change mNCandidates after initialization");
257 }
258}
259
260template <class TRDTRK, class PROP>
262{
263 //--------------------------------------------------------------------
264 // print current settings to screen
265 //--------------------------------------------------------------------
266 GPUInfo("##############################################################");
267 GPUInfo("Current settings for GPU TRD tracker:");
268 GPUInfo(" maxChi2(%.2f), chi2Penalty(%.2f), nCandidates(%i), maxMissingLayers(%i)", Param().rec.trd.maxChi2, Param().rec.trd.penaltyChi2, mNCandidates, Param().rec.trd.stopTrkAfterNMissLy);
269 GPUInfo(" ptCut = %.2f GeV, abs(eta) < %.2f", Param().rec.trd.minTrackPt, mMaxEta);
270 GPUInfo("##############################################################");
271}
272
273template <class TRDTRK, class PROP>
275{
276 mDebug->CreateStreamer();
277}
278
279#endif
280
281template <>
282GPUdi() const GPUTRDPropagatorGPU::propagatorParam* GPUTRDTracker_t<GPUTRDTrackGPU, GPUTRDPropagatorGPU>::getPropagatorParam()
283{
284 return &Param().polynomialField;
285}
286
287template <class TRDTRK, class PROP>
288GPUdi() const typename PROP::propagatorParam* GPUTRDTracker_t<TRDTRK, PROP>::getPropagatorParam()
289{
290 return GetConstantMem()->calibObjects.o2Propagator;
291}
292
293template <class TRDTRK, class PROP>
294GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::CheckTrackTRDCandidate(const TRDTRK& trk) const
295{
296 if (!trk.CheckNumericalQuality()) {
297 return false;
298 }
299 if (CAMath::Abs(trk.getEta()) > mMaxEta) {
300 return false;
301 }
302 if (trk.getPt() < Param().rec.trd.minTrackPt) {
303 return false;
304 }
305 return true;
306}
307
308template <class TRDTRK, class PROP>
309GPUd() int32_t GPUTRDTracker_t<TRDTRK, PROP>::LoadTrack(const TRDTRK& trk, uint32_t tpcTrackId, bool checkTrack, HelperTrackAttributes* attribs)
310{
311 if (mNTracks >= mNMaxTracks) {
312#ifndef GPUCA_GPUCODE
313 GPUError("Error: Track dropped (no memory available) -> must not happen");
314#endif
315 return (1);
316 }
317 if (checkTrack && !CheckTrackTRDCandidate(trk)) {
318 return 2;
319 }
320 mTracks[mNTracks] = trk;
321 mTracks[mNTracks].setRefGlobalTrackIdRaw(tpcTrackId);
322 if (attribs) {
323 mTrackAttribs[mNTracks] = *attribs;
324 }
325 mNTracks++;
326 return (0);
327}
328
329template <class TRDTRK, class PROP>
330GPUd() void GPUTRDTracker_t<TRDTRK, PROP>::DumpTracks()
331{
332 //--------------------------------------------------------------------
333 // helper function (only for debugging purposes)
334 //--------------------------------------------------------------------
335 GPUInfo("There are in total %i tracklets loaded", GetConstantMem()->ioPtrs.nTRDTracklets);
336 GPUInfo("There are %i tracks loaded. mNMaxTracks(%i)", mNTracks, mNMaxTracks);
337 for (int32_t i = 0; i < mNTracks; ++i) {
338 auto* trk = &(mTracks[i]);
339 GPUInfo("track %i: x=%f, alpha=%f, nTracklets=%i, pt=%f, time=%f", i, trk->getX(), trk->getAlpha(), trk->getNtracklets(), trk->getPt(), mTrackAttribs[i].mTime);
340 }
341}
342
343template <class TRDTRK, class PROP>
344GPUd() int32_t GPUTRDTracker_t<TRDTRK, PROP>::GetCollisionIDs(int32_t iTrk, int32_t* collisionIds) const
345{
346 //--------------------------------------------------------------------
347 // Check which TRD trigger times possibly match given input track.
348 // If ITS-TPC matches or CE-crossing TPC tracks the time is precisely
349 // known and max 1 trigger time can be assigned.
350 // For TPC-only tracks the collision IDs are stored in collisionIds array
351 // and the number of valid entries in the array is returned
352 //--------------------------------------------------------------------
353 int32_t nColls = 0;
354 for (uint32_t iColl = 0; iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords; ++iColl) {
355 if (GetConstantMem()->ioPtrs.trdTrigRecMask && GetConstantMem()->ioPtrs.trdTrigRecMask[iColl] == 0) {
356 continue;
357 }
358 if (GetConstantMem()->ioPtrs.trdTriggerTimes[iColl] > mTrackAttribs[iTrk].GetTimeMin() && GetConstantMem()->ioPtrs.trdTriggerTimes[iColl] < mTrackAttribs[iTrk].GetTimeMax()) {
359 if (nColls == 20) {
360 GPUError("Found too many collision candidates for track with tMin(%f) and tMax(%f)", mTrackAttribs[iTrk].GetTimeMin(), mTrackAttribs[iTrk].GetTimeMax());
361 return nColls;
362 }
363 collisionIds[nColls++] = iColl;
364 }
365 }
366 return nColls;
367}
368
369template <class TRDTRK, class PROP>
370GPUd() void GPUTRDTracker_t<TRDTRK, PROP>::DoTrackingThread(int32_t iTrk, int32_t threadId)
371{
372 //--------------------------------------------------------------------
373 // perform the tracking for one track (must be threadsafe)
374 //--------------------------------------------------------------------
375 int32_t collisionIds[20] = {0}; // due to the dead time there will never exist more possible TRD triggers for a single track
376 int32_t nCollisionIds = 1; // initialize with 1 for AliRoot compatibility
377 if (mProcessPerTimeFrame) {
378 nCollisionIds = GetCollisionIDs(iTrk, collisionIds);
379 if (nCollisionIds == 0) {
380 if (ENABLE_INFO) {
381 GPUInfo("Did not find TRD data for track %i with t=%f. tMin(%f), tMax(%f)", iTrk, mTrackAttribs[iTrk].mTime, mTrackAttribs[iTrk].GetTimeMin(), mTrackAttribs[iTrk].GetTimeMax());
382 }
383 // no TRD data available for the bunch crossing this track originates from
384 return;
385 }
386 }
387 PROP prop(getPropagatorParam());
388 mTracks[iTrk].setChi2(Param().rec.trd.penaltyChi2); // TODO check if this should not be higher
389 auto trkStart = mTracks[iTrk];
390 for (int32_t iColl = 0; iColl < nCollisionIds; ++iColl) {
391 // do track following for each collision candidate and keep best track
392 auto trkCopy = trkStart;
393 prop.setTrack(&trkCopy);
394 prop.setFitInProjections(true);
395 if (!FollowProlongation(&prop, &trkCopy, iTrk, threadId, collisionIds[iColl])) {
396 // track following failed
397 continue;
398 }
399 if (trkCopy.getReducedChi2() < mTracks[iTrk].getReducedChi2()) {
400 mTracks[iTrk] = trkCopy; // copy back the resulting track
401 }
402 }
403}
404
405template <class TRDTRK, class PROP>
406GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::CalculateSpacePoints(int32_t iCollision)
407{
408 //--------------------------------------------------------------------
409 // Calculates TRD space points in sector tracking coordinates
410 // from online tracklets
411 //--------------------------------------------------------------------
412
413 bool result = true;
414 int32_t idxOffset = iCollision * (kNChambers + 1); // offset for accessing mTrackletIndexArray for collision iCollision
415
416 const GPUTRDTrackletWord* tracklets = GetConstantMem()->ioPtrs.trdTracklets;
417
418 for (int32_t iDet = 0; iDet < kNChambers; ++iDet) {
419 int32_t iFirstTrackletInDet = mTrackletIndexArray[idxOffset + iDet];
420 int32_t iFirstTrackletInNextDet = mTrackletIndexArray[idxOffset + iDet + 1];
421 int32_t nTrackletsInDet = iFirstTrackletInNextDet - iFirstTrackletInDet;
422 if (nTrackletsInDet == 0) {
423 continue;
424 }
425 if (!mGeo->ChamberInGeometry(iDet)) {
426 GPUError("Found TRD tracklets in chamber %i which is not included in the geometry", iDet);
427 return false;
428 }
429 auto* matrix = mGeo->GetClusterMatrix(iDet);
430 if (!matrix) {
431 GPUError("No cluster matrix available for chamber %i. Skipping it...", iDet);
432 result = false;
433 continue;
434 }
435 const GPUTRDpadPlane* pp = mGeo->GetPadPlane(iDet);
436
437 int32_t trkltIdxOffset = (mProcessPerTimeFrame) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iCollision] : 0; // global index of first tracklet in iCollision
438 int32_t trkltIdxStart = trkltIdxOffset + iFirstTrackletInDet;
439 for (int32_t trkltIdx = trkltIdxStart; trkltIdx < trkltIdxStart + nTrackletsInDet; ++trkltIdx) {
440 int32_t trkltZbin = tracklets[trkltIdx].GetZbin();
441 float xTrkltDet[3] = {0.f}; // trklt position in chamber coordinates
442 float xTrkltSec[3] = {0.f}; // trklt position in sector coordinates
443 xTrkltDet[0] = mGeo->AnodePos() + sRadialOffset;
444 xTrkltDet[1] = tracklets[trkltIdx].GetY();
445 xTrkltDet[2] = pp->GetRowPos(trkltZbin) - pp->GetRowSize(trkltZbin) / 2.f - pp->GetRowPos(pp->GetNrows() / 2);
446 // GPUInfo("Space point local %i: x=%f, y=%f, z=%f", trkltIdx, xTrkltDet[0], xTrkltDet[1], xTrkltDet[2]);
447 matrix->LocalToMaster(xTrkltDet, xTrkltSec);
448 mSpacePoints[trkltIdx].setX(xTrkltSec[0]);
449 mSpacePoints[trkltIdx].setY(xTrkltSec[1]);
450 mSpacePoints[trkltIdx].setZ(xTrkltSec[2]);
451 mSpacePoints[trkltIdx].setDy(tracklets[trkltIdx].GetdY());
452
453 // GPUInfo("Space point global %i: x=%f, y=%f, z=%f", trkltIdx, mSpacePoints[trkltIdx].getX(), mSpacePoints[trkltIdx].getY(), mSpacePoints[trkltIdx].getZ());
454 }
455 }
456 return result;
457}
458
459template <class TRDTRK, class PROP>
460GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::FollowProlongation(PROP* prop, TRDTRK* t, int32_t iTrk, int32_t threadId, int32_t collisionId)
461{
462 //--------------------------------------------------------------------
463 // Propagate TPC track layerwise through TRD and pick up closest
464 // tracklet(s) on the way
465 // -> returns false if prolongation could not be executed fully
466 // or track does not fullfill threshold conditions
467 //--------------------------------------------------------------------
468
469 if (ENABLE_INFO) {
470 GPUInfo("Start track following for track %i at x=%f with pt=%f", t->getRefGlobalTrackIdRaw(), t->getX(), t->getPt());
471 }
472 mDebug->Reset();
473 t->setChi2(0.f);
474 float zShiftTrk = 0.f;
475 if (mProcessPerTimeFrame) {
476 zShiftTrk = (mTrackAttribs[iTrk].mTime - GetConstantMem()->ioPtrs.trdTriggerTimes[collisionId]) * mTPCVdrift * mTrackAttribs[iTrk].mSide;
477 // float addZerr = (mTrackAttribs[iTrk].mTimeAddMax + mTrackAttribs[iTrk].mTimeSubMax) * .5f * mTPCVdrift;
478 // increase Z error based on time window
479 // -> this is here since it was done before, but the efficiency seems to be better if the covariance is not updated (more tracklets are attached)
480 // t->updateCovZ2(addZerr * addZerr); // TODO check again once detailed performance study tools are available, maybe this can be tuned
481 }
482 const GPUTRDpadPlane* pad = nullptr;
483 const GPUTRDTrackletWord* tracklets = GetConstantMem()->ioPtrs.trdTracklets;
484 const GPUTRDSpacePoint* spacePoints = GetConstantMem()->ioPtrs.trdSpacePoints;
485
486#ifdef ENABLE_GPUTRDDEBUG
487 TRDTRK trackNoUp(*t);
488#endif
489
490 int32_t candidateIdxOffset = threadId * 2 * mNCandidates;
491 int32_t hypothesisIdxOffset = threadId * mNCandidates;
492 int32_t trkltIdxOffset = collisionId * (kNChambers + 1); // offset for accessing mTrackletIndexArray for given collision
493 int32_t glbTrkltIdxOffset = (mProcessPerTimeFrame) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[collisionId] : 0; // offset of first tracklet in given collision in global tracklet array
494
495 auto trkWork = t;
496 if (mNCandidates > 1) {
497 // copy input track to first candidate
498 mCandidates[candidateIdxOffset] = *t;
499 }
500
501 int32_t nCandidates = 1; // we always start with one candidate
502 int32_t nCurrHypothesis = 0; // the number of track hypothesis in given iLayer
503
504 // search window
505 float roadY = 0.f;
506 float roadZ = 0.f;
507 const int32_t nMaxChambersToSearch = 4;
508
509 mDebug->SetGeneralInfo(mNEvents, mNTracks, iTrk, t->getPt());
510
511 for (int32_t iLayer = 0; iLayer < kNLayers; ++iLayer) {
512 nCurrHypothesis = 0;
513 bool isOK = false; // if at least one candidate could be propagated or the track was stopped this becomes true
514 int32_t currIdx = candidateIdxOffset + iLayer % 2;
515 int32_t nextIdx = candidateIdxOffset + (iLayer + 1) % 2;
516 pad = mGeo->GetPadPlane(iLayer, 0);
517 float tilt = CAMath::Tan(CAMath::Pi() / 180.f * pad->GetTiltingAngle()); // tilt is signed!
518 const float zMaxTRD = pad->GetRow0();
519
520 // --------------------------------------------------------------------------------
521 //
522 // for each candidate, propagate to layer radius and look for close tracklets
523 //
524 // --------------------------------------------------------------------------------
525 for (int32_t iCandidate = 0; iCandidate < nCandidates; iCandidate++) {
526
527 int32_t det[nMaxChambersToSearch] = {-1, -1, -1, -1}; // TRD chambers to be searched for tracklets
528
529 if (mNCandidates > 1) {
530 trkWork = &mCandidates[2 * iCandidate + currIdx];
531 prop->setTrack(trkWork);
532 }
533
534 if (trkWork->getIsStopped()) {
535 Hypothesis hypo(trkWork->getNlayersFindable(), iCandidate, -1, trkWork->getChi2());
536 InsertHypothesis(hypo, nCurrHypothesis, hypothesisIdxOffset);
537 isOK = true;
538 continue;
539 }
540
541 // propagate track to average radius of TRD layer iLayer (sector 0, stack 2 is chosen as a reference)
542 if (!prop->propagateToX(mR[2 * kNLayers + iLayer], .8f, 2.f)) {
543 if (ENABLE_INFO) {
544 GPUInfo("Track propagation failed for track %i candidate %i in layer %i (pt=%f, x=%f, mR[layer]=%f)", iTrk, iCandidate, iLayer, trkWork->getPt(), trkWork->getX(), mR[2 * kNLayers + iLayer]);
545 }
546 continue;
547 }
548
549 // rotate track in new sector in case of sector crossing
550 if (!AdjustSector(prop, trkWork)) {
551 if (ENABLE_INFO) {
552 GPUInfo("Adjusting sector failed for track %i candidate %i in layer %i", iTrk, iCandidate, iLayer);
553 }
554 continue;
555 }
556
557 // check if track is findable
558 if (IsGeoFindable(trkWork, iLayer, prop->getAlpha(), zShiftTrk)) {
559 trkWork->setIsFindable(iLayer);
560 }
561
562 // define search window
563 roadY = 7.f * CAMath::Sqrt(trkWork->getSigmaY2() + 0.1f * 0.1f) + Param().rec.trd.extraRoadY; // add constant to the road to account for uncertainty due to radial deviations (few mm)
564 // roadZ = 7.f * CAMath::Sqrt(trkWork->getSigmaZ2() + 9.f * 9.f / 12.f); // take longest pad length
565 roadZ = mRoadZ + Param().rec.trd.extraRoadZ; // simply twice the longest pad length -> efficiency 99.996%
566 //
567 if (CAMath::Abs(trkWork->getZ() + zShiftTrk) - roadZ >= zMaxTRD) {
568 if (ENABLE_INFO) {
569 GPUInfo("Track out of TRD acceptance with z=%f in layer %i (eta=%f)", trkWork->getZ() + zShiftTrk, iLayer, trkWork->getEta());
570 }
571 continue;
572 }
573
574 // determine chamber(s) to be searched for tracklets
575 FindChambersInRoad(trkWork, roadY, roadZ, iLayer, det, zMaxTRD, prop->getAlpha(), zShiftTrk);
576
577 // track debug information to be stored in case no matching tracklet can be found
578 mDebug->SetTrackParameter(*trkWork, iLayer);
579
580 // look for tracklets in chamber(s)
581 for (int32_t iDet = 0; iDet < nMaxChambersToSearch; iDet++) {
582 int32_t currDet = det[iDet];
583 if (currDet == -1) {
584 continue;
585 }
586 pad = mGeo->GetPadPlane(currDet);
587 int32_t currSec = mGeo->GetSector(currDet);
588 if (currSec != GetSector(prop->getAlpha())) {
589 if (!prop->rotate(GetAlphaOfSector(currSec))) {
590 if (ENABLE_WARNING) {
591 GPUWarning("Track could not be rotated in tracklet coordinate system");
592 }
593 break;
594 }
595 }
596 if (currSec != GetSector(prop->getAlpha())) {
597 GPUError("Track is in sector %i and sector %i is searched for tracklets", GetSector(prop->getAlpha()), currSec);
598 continue;
599 }
600 // propagate track to radius of chamber
601 if (!prop->propagateToX(mR[currDet], .8f, .2f)) {
602 if (ENABLE_WARNING) {
603 GPUWarning("Track parameter for track %i, x=%f at chamber %i x=%f in layer %i cannot be retrieved", iTrk, trkWork->getX(), currDet, mR[currDet], iLayer);
604 }
605 }
606 // first propagate track to x of tracklet
607 for (int32_t trkltIdx = glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet]; trkltIdx < glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet + 1]; ++trkltIdx) {
608 if (CAMath::Abs(trkWork->getY() - spacePoints[trkltIdx].getY()) > roadY || CAMath::Abs(trkWork->getZ() + zShiftTrk - spacePoints[trkltIdx].getZ()) > roadZ) {
609 // skip tracklets which are too far away
610 // although the radii of space points and tracks may differ by ~ few mm the roads are large enough to allow no efficiency loss by this cut
611 continue;
612 }
613 float projY, projZ;
614 prop->getPropagatedYZ(spacePoints[trkltIdx].getX(), projY, projZ);
615 // correction for tilted pads (only applied if deltaZ < lPad && track z err << lPad)
616 float tiltCorr = tilt * (spacePoints[trkltIdx].getZ() - projZ);
617 float lPad = pad->GetRowSize(tracklets[trkltIdx].GetZbin());
618 if (!((CAMath::Abs(spacePoints[trkltIdx].getZ() - projZ) < lPad) && (trkWork->getSigmaZ2() < (lPad * lPad / 12.f)))) {
619 tiltCorr = 0.f; // will be zero also for TPC tracks which are shifted in z
620 }
621 // correction for mean z position of tracklet (is not the center of the pad if track eta != 0)
622 float zPosCorr = spacePoints[trkltIdx].getZ() + mZCorrCoefNRC * trkWork->getTgl();
623 float yPosCorr = spacePoints[trkltIdx].getY() - tiltCorr;
624 zPosCorr -= zShiftTrk; // shift tracklet instead of track in order to avoid having to do a re-fit for each collision
625 float deltaY = yPosCorr - projY;
626 float deltaZ = zPosCorr - projZ;
627 float trkltPosTmpYZ[2] = {yPosCorr, zPosCorr};
628 float trkltCovTmp[3] = {0.f};
629 if ((CAMath::Abs(deltaY) < roadY) && (CAMath::Abs(deltaZ) < roadZ)) { // TODO: check if this is still necessary after the cut before propagation of track
630 // tracklet is in windwow: get predicted chi2 for update and store tracklet index if best guess
631 RecalcTrkltCov(tilt, trkWork->getSnp(), pad->GetRowSize(tracklets[trkltIdx].GetZbin()), trkltCovTmp);
632 float chi2 = prop->getPredictedChi2(trkltPosTmpYZ, trkltCovTmp);
633 // TODO cut on angular pull should be made stricter when proper v-drift calibration for the TRD tracklets is implemented
634 if ((chi2 > Param().rec.trd.maxChi2) || (Param().rec.trd.applyDeflectionCut && CAMath::Abs(GetAngularPull(spacePoints[trkltIdx].getDy(), trkWork->getSnp())) > 4)) {
635 continue;
636 }
637 Hypothesis hypo(trkWork->getNlayersFindable(), iCandidate, trkltIdx, trkWork->getChi2() + chi2);
638 InsertHypothesis(hypo, nCurrHypothesis, hypothesisIdxOffset);
639 } // end tracklet in window
640 } // tracklet loop
641 } // chamber loop
642
643 // add no update to hypothesis list
644 Hypothesis hypoNoUpdate(trkWork->getNlayersFindable(), iCandidate, -1, trkWork->getChi2() + Param().rec.trd.penaltyChi2);
645 InsertHypothesis(hypoNoUpdate, nCurrHypothesis, hypothesisIdxOffset);
646 isOK = true;
647 } // end candidate loop
648
649 mDebug->SetChi2Update(mHypothesis[0 + hypothesisIdxOffset].mChi2 - t->getChi2(), iLayer); // only meaningful for ONE candidate!!!
650 mDebug->SetRoad(roadY, roadZ, iLayer); // only meaningful for ONE candidate
651 bool wasTrackStored = false;
652 // --------------------------------------------------------------------------------
653 //
654 // loop over the best N_candidates hypothesis
655 //
656 // --------------------------------------------------------------------------------
657 // GPUInfo("nCurrHypothesis=%i, nCandidates=%i", nCurrHypothesis, nCandidates);
658 // for (int32_t idx=0; idx<10; ++idx) { GPUInfo("mHypothesis[%i]: candidateId=%i, nLayers=%i, trackletId=%i, chi2=%f", idx, mHypothesis[idx].mCandidateId, mHypothesis[idx].mLayers, mHypothesis[idx].mTrackletId, mHypothesis[idx].mChi2); }
659 for (int32_t iUpdate = 0; iUpdate < nCurrHypothesis && iUpdate < mNCandidates; iUpdate++) {
660 if (mHypothesis[iUpdate + hypothesisIdxOffset].mCandidateId == -1) {
661 // no more candidates
662 if (iUpdate == 0) {
663 return false; // no valid candidates for this track (probably propagation failed)
664 }
665 break; // go to next layer
666 }
667 nCandidates = iUpdate + 1;
668 if (mNCandidates > 1) {
669 mCandidates[2 * iUpdate + nextIdx] = mCandidates[2 * mHypothesis[iUpdate + hypothesisIdxOffset].mCandidateId + currIdx];
670 trkWork = &mCandidates[2 * iUpdate + nextIdx];
671 }
672 if (mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId == -1) {
673 // no matching tracklet found
674 if (trkWork->getIsFindable(iLayer)) {
675 if (trkWork->getNmissingConsecLayers(iLayer) > Param().rec.trd.stopTrkAfterNMissLy) {
676 trkWork->setIsStopped();
677 }
678 trkWork->setChi2(trkWork->getChi2() + Param().rec.trd.penaltyChi2);
679 }
680 if (iUpdate == 0 && mNCandidates > 1) { // TODO: is thie really necessary????? CHECK!
681 *t = mCandidates[2 * iUpdate + nextIdx];
682 }
683 continue;
684 }
685 // matching tracklet found
686 if (mNCandidates > 1) {
687 prop->setTrack(trkWork);
688 }
689 int32_t trkltSec = mGeo->GetSector(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector());
690 if (trkltSec != GetSector(prop->getAlpha())) {
691 // if after a matching tracklet was found another sector was searched for tracklets the track needs to be rotated back
692 prop->rotate(GetAlphaOfSector(trkltSec));
693 }
694 if (!prop->propagateToX(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getX(), .8f, 2.f)) {
695 if (ENABLE_WARNING) {
696 GPUWarning("Final track propagation for track %i update %i in layer %i failed", iTrk, iUpdate, iLayer);
697 }
698 trkWork->setChi2(trkWork->getChi2() + Param().rec.trd.penaltyChi2);
699 if (trkWork->getIsFindable(iLayer)) {
700 if (trkWork->getNmissingConsecLayers(iLayer) >= Param().rec.trd.stopTrkAfterNMissLy) {
701 trkWork->setIsStopped();
702 }
703 }
704 if (iUpdate == 0 && mNCandidates > 1) {
705 *t = mCandidates[2 * iUpdate + nextIdx];
706 }
707 continue;
708 }
709
710 pad = mGeo->GetPadPlane(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector());
711 float tiltCorrUp = tilt * (spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() - trkWork->getZ());
712 float zPosCorrUp = spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() + mZCorrCoefNRC * trkWork->getTgl();
713 zPosCorrUp -= zShiftTrk;
714 float padLength = pad->GetRowSize(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin());
715 if (!((trkWork->getSigmaZ2() < (padLength * padLength / 12.f)) && (CAMath::Abs(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() - trkWork->getZ()) < padLength))) {
716 tiltCorrUp = 0.f;
717 }
718 float trkltPosUp[2] = {spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getY() - tiltCorrUp, zPosCorrUp};
719 float trkltCovUp[3] = {0.f};
720 RecalcTrkltCov(tilt, trkWork->getSnp(), pad->GetRowSize(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin()), trkltCovUp);
721
722#ifdef ENABLE_GPUTRDDEBUG
723 prop->setTrack(&trackNoUp);
724 prop->rotate(GetAlphaOfSector(trkltSec));
725 // prop->propagateToX(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getX(), .8f, 2.f);
726 prop->propagateToX(mR[tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector()], .8f, 2.f);
727 prop->setTrack(trkWork);
728#endif
729
730 if (!wasTrackStored) {
731#ifdef ENABLE_GPUTRDDEBUG
732 mDebug->SetTrackParameterNoUp(trackNoUp, iLayer);
733#endif
734 mDebug->SetTrackParameter(*trkWork, iLayer);
735 mDebug->SetRawTrackletPosition(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getX(), spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getY(), spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ(), iLayer);
736 mDebug->SetCorrectedTrackletPosition(trkltPosUp, iLayer);
737 mDebug->SetTrackletCovariance(trkltCovUp, iLayer);
738 mDebug->SetTrackletProperties(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getDy(), tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector(), iLayer);
739 wasTrackStored = true;
740 }
741
742 if (!prop->update(trkltPosUp, trkltCovUp)) {
743 if (ENABLE_WARNING) {
744 GPUWarning("Failed to update track %i with space point in layer %i", iTrk, iLayer);
745 }
746 trkWork->setChi2(trkWork->getChi2() + Param().rec.trd.penaltyChi2);
747 if (trkWork->getIsFindable(iLayer)) {
748 if (trkWork->getNmissingConsecLayers(iLayer) >= Param().rec.trd.stopTrkAfterNMissLy) {
749 trkWork->setIsStopped();
750 }
751 }
752 if (iUpdate == 0 && mNCandidates > 1) {
753 *t = mCandidates[2 * iUpdate + nextIdx];
754 }
755 continue;
756 }
757 if (!trkWork->CheckNumericalQuality()) {
758 if (ENABLE_INFO) {
759 GPUInfo("Track %i has invalid covariance matrix. Aborting track following\n", iTrk);
760 }
761 return false;
762 }
763 trkWork->addTracklet(iLayer, mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId);
764 trkWork->setChi2(mHypothesis[iUpdate + hypothesisIdxOffset].mChi2);
765 trkWork->setIsFindable(iLayer);
766 trkWork->setCollisionId(collisionId);
767 // check if track crosses padrows
768 float projZEntry, projYEntry;
769 // Get Z for Entry of Track
770 prop->getPropagatedYZ(trkWork->getX() - mGeo->GetCdrHght(), projYEntry, projZEntry);
771 // Get Padrow number for Exit&Entry and compare. If is not equal mark
772 // as padrow crossing. While simple, this comes with the cost of not
773 // properly handling Tracklets that hit a different Pad but still get
774 // attached to the Track. It is estimated that the probability for
775 // this is low.
776 const auto padrowEntry = pad->GetPadRowNumber(projZEntry);
777 const auto padrowExit = pad->GetPadRowNumber(trkWork->getZ());
778 if (padrowEntry != padrowExit) {
779 trkWork->setIsCrossingNeighbor(iLayer);
780 trkWork->setHasPadrowCrossing();
781 }
782 const auto currDet = tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector();
783 // Mark tracklets as Padrow crossing if they have a neighboring tracklet.
784 for (int32_t trkltIdx = glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet]; trkltIdx < glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet + 1]; ++trkltIdx) {
785 // skip orig tracklet
786 if (mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId == trkltIdx) {
787 continue;
788 }
789 if (CAMath::Abs(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin() - tracklets[trkltIdx].GetZbin()) == 1 &&
790 CAMath::Abs(tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetY() - tracklets[trkltIdx].GetY()) < 1) {
791 trkWork->setIsCrossingNeighbor(iLayer);
792 trkWork->setHasNeighbor();
793 break;
794 }
795 }
796 if (iUpdate == 0 && mNCandidates > 1) {
797 *t = mCandidates[2 * iUpdate + nextIdx];
798 }
799 } // end update loop
800
801 if (!isOK) {
802 if (ENABLE_INFO) {
803 GPUInfo("Track %i cannot be followed. Stopped in layer %i", iTrk, iLayer);
804 }
805 return false;
806 }
807 } // end layer loop
808
809 // --------------------------------------------------------------------------------
810 // add some debug information (compare labels of attached tracklets to track label)
811 // and store full track information
812 // --------------------------------------------------------------------------------
813 if (mDebugOutput) {
814 mDebug->SetTrack(*t);
815 mDebug->Output();
816 }
817 if (ENABLE_INFO) {
818 GPUInfo("Ended track following for track %i at x=%f with pt=%f. Attached %i tracklets", t->getRefGlobalTrackIdRaw(), t->getX(), t->getPt(), t->getNtracklets());
819 }
820 if (nCurrHypothesis > 1) {
821 if (CAMath::Abs(mHypothesis[hypothesisIdxOffset + 1].GetReducedChi2() - mHypothesis[hypothesisIdxOffset].GetReducedChi2()) < Param().rec.trd.chi2SeparationCut) {
822 t->setIsAmbiguous();
823 }
824 }
825 return true;
826}
827
828template <class TRDTRK, class PROP>
829GPUd() void GPUTRDTracker_t<TRDTRK, PROP>::InsertHypothesis(Hypothesis hypo, int32_t& nCurrHypothesis, int32_t idxOffset)
830{
831 // Insert hypothesis into the array. If the array is full and the reduced chi2 is worse
832 // than the worst hypothesis in the array it is dropped.
833 // The hypothesis array is always sorted.
834
835 if (nCurrHypothesis == 0) {
836 // this is the first hypothesis in the array
837 mHypothesis[idxOffset] = hypo;
838 ++nCurrHypothesis;
839 } else if (nCurrHypothesis > 0 && nCurrHypothesis < mNCandidates) {
840 // insert the hypothesis into the right position and shift all worse hypothesis to the right
841 for (int32_t i = idxOffset; i < nCurrHypothesis + idxOffset; ++i) {
842 if (hypo.GetReducedChi2() < mHypothesis[i].GetReducedChi2()) {
843 for (int32_t k = nCurrHypothesis + idxOffset; k > i; --k) {
844 mHypothesis[k] = mHypothesis[k - 1];
845 }
846 mHypothesis[i] = hypo;
847 ++nCurrHypothesis;
848 return;
849 }
850 }
851 mHypothesis[nCurrHypothesis + idxOffset] = hypo;
852 ++nCurrHypothesis;
853 return;
854 } else {
855 // array is already full, check if new hypothesis should be inserted
856 int32_t i = nCurrHypothesis + idxOffset - 1;
857 for (; i >= idxOffset; --i) {
858 if (mHypothesis[i].GetReducedChi2() < hypo.GetReducedChi2()) {
859 break;
860 }
861 }
862 if (i < (nCurrHypothesis + idxOffset - 1)) {
863 // new hypothesis should be inserted into the array
864 for (int32_t k = nCurrHypothesis + idxOffset - 1; k > i + 1; --k) {
865 mHypothesis[k] = mHypothesis[k - 1];
866 }
867 mHypothesis[i + 1] = hypo;
868 }
869 }
870}
871
872template <class TRDTRK, class PROP>
873GPUd() int32_t GPUTRDTracker_t<TRDTRK, PROP>::GetDetectorNumber(const float zPos, const float alpha, const int32_t layer) const
874{
875 //--------------------------------------------------------------------
876 // if track position is within chamber return the chamber number
877 // otherwise return -1
878 //--------------------------------------------------------------------
879 int32_t stack = mGeo->GetStack(zPos, layer);
880 if (stack < 0) {
881 return -1;
882 }
883 int32_t sector = GetSector(alpha);
884
885 return mGeo->GetDetector(layer, stack, sector);
886}
887
888template <class TRDTRK, class PROP>
889GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::AdjustSector(PROP* prop, TRDTRK* t) const
890{
891 //--------------------------------------------------------------------
892 // rotate track in new sector if necessary and
893 // propagate to previous x afterwards
894 // cancel if track crosses two sector boundaries
895 //--------------------------------------------------------------------
896 float alpha = mGeo->GetAlpha();
897 float xTmp = t->getX();
898 float y = t->getY();
899 float yMax = t->getX() * CAMath::Tan(0.5f * alpha);
900 float alphaCurr = t->getAlpha();
901
902 if (CAMath::Abs(y) > 2.f * yMax) {
903 if (ENABLE_INFO) {
904 GPUInfo("AdjustSector: Track %i with pT = %f crossing two sector boundaries at x = %f", t->getRefGlobalTrackIdRaw(), t->getPt(), t->getX());
905 }
906 return false;
907 }
908
909 int32_t nTries = 0;
910 while (CAMath::Abs(y) > yMax) {
911 if (nTries >= 2) {
912 return false;
913 }
914 int32_t sign = (y > 0) ? 1 : -1;
915 float alphaNew = alphaCurr + alpha * sign;
916 if (alphaNew > CAMath::Pi()) {
917 alphaNew -= 2 * CAMath::Pi();
918 } else if (alphaNew < -CAMath::Pi()) {
919 alphaNew += 2 * CAMath::Pi();
920 }
921 if (!prop->rotate(alphaNew)) {
922 return false;
923 }
924 if (!prop->propagateToX(xTmp, .8f, 2.f)) {
925 return false;
926 }
927 y = t->getY();
928 ++nTries;
929 }
930 return true;
931}
932
933template <class TRDTRK, class PROP>
934GPUd() int32_t GPUTRDTracker_t<TRDTRK, PROP>::GetSector(float alpha) const
935{
936 //--------------------------------------------------------------------
937 // TRD sector number for reference system alpha
938 //--------------------------------------------------------------------
939 if (alpha < 0) {
940 alpha += 2.f * CAMath::Pi();
941 } else if (alpha >= 2.f * CAMath::Pi()) {
942 alpha -= 2.f * CAMath::Pi();
943 }
944 return (int32_t)(alpha * (float)kNSectors / (2.f * CAMath::Pi()));
945}
946
947template <class TRDTRK, class PROP>
948GPUd() float GPUTRDTracker_t<TRDTRK, PROP>::GetAlphaOfSector(const int32_t sec) const
949{
950 //--------------------------------------------------------------------
951 // rotation angle for TRD sector sec
952 //--------------------------------------------------------------------
953 float alpha = 2.0f * CAMath::Pi() / (float)kNSectors * ((float)sec + 0.5f);
954 if (alpha > CAMath::Pi()) {
955 alpha -= 2 * CAMath::Pi();
956 }
957 return alpha;
958}
959
960template <class TRDTRK, class PROP>
961GPUd() void GPUTRDTracker_t<TRDTRK, PROP>::RecalcTrkltCov(const float tilt, const float snp, const float rowSize, float (&cov)[3])
962{
963 //--------------------------------------------------------------------
964 // recalculate tracklet covariance taking track phi angle into account
965 // store the new values in cov
966 //--------------------------------------------------------------------
967 float t2 = tilt * tilt; // tan^2 (tilt)
968 float c2 = 1.f / (1.f + t2); // cos^2 (tilt)
969 float sy2 = GetRPhiRes(snp);
970 float sz2 = rowSize * rowSize / 12.f;
971 cov[0] = c2 * (sy2 + t2 * sz2);
972 cov[1] = c2 * tilt * (sz2 - sy2);
973 cov[2] = c2 * (t2 * sy2 + sz2);
974}
975
976template <class TRDTRK, class PROP>
977GPUd() float GPUTRDTracker_t<TRDTRK, PROP>::GetAngularPull(float dYtracklet, float snp) const
978{
979 float dYtrack = ConvertAngleToDy(snp);
980 float dYresolution = GetAngularResolution(snp);
981 if (dYresolution < 1e-6f) {
982 return 999.f;
983 }
984 return (dYtracklet - dYtrack) / CAMath::Sqrt(dYresolution);
985}
986
987template <class TRDTRK, class PROP>
988GPUd() void GPUTRDTracker_t<TRDTRK, PROP>::FindChambersInRoad(const TRDTRK* t, const float roadY, const float roadZ, const int32_t iLayer, int32_t* det, const float zMax, const float alpha, const float zShiftTrk) const
989{
990 //--------------------------------------------------------------------
991 // determine initial chamber where the track ends up
992 // add more chambers of the same sector or (and) neighbouring
993 // stack if track is close the edge(s) of the chamber
994 //--------------------------------------------------------------------
995
996 const float yMax = CAMath::Abs(mGeo->GetCol0(iLayer));
997 float zTrk = t->getZ() + zShiftTrk;
998
999 int32_t currStack = mGeo->GetStack(zTrk, iLayer);
1000 int32_t currSec = GetSector(alpha);
1001 int32_t currDet;
1002
1003 int32_t nDets = 0;
1004
1005 if (currStack > -1) {
1006 // chamber unambiguous
1007 currDet = mGeo->GetDetector(iLayer, currStack, currSec);
1008 det[nDets++] = currDet;
1009 const GPUTRDpadPlane* pp = mGeo->GetPadPlane(iLayer, currStack);
1010 int32_t lastPadRow = mGeo->GetRowMax(iLayer, currStack, 0);
1011 float zCenter = pp->GetRowPos(lastPadRow / 2);
1012 if ((zTrk + roadZ) > pp->GetRow0() || (zTrk - roadZ) < pp->GetRowEnd()) {
1013 int32_t addStack = zTrk > zCenter ? currStack - 1 : currStack + 1;
1014 if (addStack < kNStacks && addStack > -1) {
1015 det[nDets++] = mGeo->GetDetector(iLayer, addStack, currSec);
1016 }
1017 }
1018 } else {
1019 if (CAMath::Abs(zTrk) > zMax) {
1020 // shift track in z so it is in the TRD acceptance
1021 if (zTrk > 0) {
1022 currDet = mGeo->GetDetector(iLayer, 0, currSec);
1023 } else {
1024 currDet = mGeo->GetDetector(iLayer, kNStacks - 1, currSec);
1025 }
1026 det[nDets++] = currDet;
1027 currStack = mGeo->GetStack(currDet);
1028 } else {
1029 // track in between two stacks, add both surrounding chambers
1030 // gap between two stacks is 4 cm wide
1031 currDet = GetDetectorNumber(zTrk + 4.0f, alpha, iLayer);
1032 if (currDet != -1) {
1033 det[nDets++] = currDet;
1034 }
1035 currDet = GetDetectorNumber(zTrk - 4.0f, alpha, iLayer);
1036 if (currDet != -1) {
1037 det[nDets++] = currDet;
1038 }
1039 }
1040 }
1041 // add chamber(s) from neighbouring sector in case the track is close to the boundary
1042 if ((CAMath::Abs(t->getY()) + roadY) > yMax) {
1043 const int32_t nStacksToSearch = nDets;
1044 int32_t newSec;
1045 if (t->getY() > 0) {
1046 newSec = (currSec + 1) % kNSectors;
1047 } else {
1048 newSec = (currSec > 0) ? currSec - 1 : kNSectors - 1;
1049 }
1050 for (int32_t idx = 0; idx < nStacksToSearch; ++idx) {
1051 currStack = mGeo->GetStack(det[idx]);
1052 det[nDets++] = mGeo->GetDetector(iLayer, currStack, newSec);
1053 }
1054 }
1055 // skip PHOS hole and non-existing chamber 17_4_4
1056 for (int32_t iDet = 0; iDet < nDets; iDet++) {
1057 if (!mGeo->ChamberInGeometry(det[iDet])) {
1058 det[iDet] = -1;
1059 }
1060 }
1061}
1062
1063template <class TRDTRK, class PROP>
1064GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::IsGeoFindable(const TRDTRK* t, const int32_t layer, const float alpha, const float zShiftTrk) const
1065{
1066 //--------------------------------------------------------------------
1067 // returns true if track position inside active area of the TRD
1068 // and not too close to the boundaries
1069 //--------------------------------------------------------------------
1070
1071 float zTrk = t->getZ() + zShiftTrk;
1072
1073 int32_t det = GetDetectorNumber(zTrk, alpha, layer);
1074
1075 // reject tracks between stacks
1076 if (det < 0) {
1077 return false;
1078 }
1079
1080 // reject tracks in PHOS hole and for non existent chamber 17_4_4
1081 if (!mGeo->ChamberInGeometry(det)) {
1082 return false;
1083 }
1084
1085 const GPUTRDpadPlane* pp = mGeo->GetPadPlane(det);
1086 float yMax = pp->GetColEnd();
1087 float zMax = pp->GetRow0();
1088 float zMin = pp->GetRowEnd();
1089
1090 float epsY = 5.f;
1091 float epsZ = 5.f;
1092
1093 // reject tracks closer than epsY cm to pad plane boundary
1094 if (yMax - CAMath::Abs(t->getY()) < epsY) {
1095 return false;
1096 }
1097 // reject tracks closer than epsZ cm to stack boundary
1098 if (!((zTrk > zMin + epsZ) && (zTrk < zMax - epsZ))) {
1099 return false;
1100 }
1101
1102 return true;
1103}
1104
1105#ifndef GPUCA_GPUCODE
1106namespace o2::gpu
1107{
1110} // namespace o2::gpu
1111#endif
int32_t i
bool const GPUTPCGMMerger::trackCluster const clcomparestruct * c2
float float float & zMax
float float & zMin
float & yMax
For performance analysis + error parametrization of the TRD tracker.
#define ENABLE_INFO
#define ENABLE_WARNING
Online TRD tracker based on extrapolated TPC tracks.
TRD Tracklet word for GPU tracker - 32bit tracklet info + half chamber ID + index.
uint32_t stack
Definition RawData.h:1
GPUTrackingInOutPointers & mIOPtrs
void * SetPointersTracks(void *base)
void * SetPointersBase(void *base)
void SetNCandidates(int32_t n)
void SetMaxData(const GPUTrackingInOutPointers &io)
void PrepareTracking(GPUChainTracking *chainTracking)
void * SetPointersTracklets(void *base)
GLdouble n
Definition glcorearb.h:1982
GLfloat GLfloat GLfloat alpha
Definition glcorearb.h:279
GLuint64EXT * result
Definition glcorearb.h:5662
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint GLfloat x0
Definition glcorearb.h:5034
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310
GPUdi() o2
Definition TrackTRD.h:38
GPUd() const expr uint32_t MultivariatePolynomialHelper< Dim
double * getX(double *xyDxy, int N)
double * getY(double *xyDxy, int N)
bool isOK(const SanityError &error)
GPUReconstruction * rec
GPUChainTracking * chainTracking
const GPUTRDSpacePoint * trdSpacePoints
std::vector< Tracklet64 > tracklets