Project
Loading...
Searching...
No Matches
GPUITSFitterKernels.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#include "GPUITSFitterKernels.h"
16#include "GPUConstantMem.h"
17
20#include "ITStracking/Road.h"
21#include "ITStracking/Cluster.h"
22#include "ITStracking/Cell.h"
24
25#if defined(CA_DEBUG) && !defined(GPUCA_GPUCODE_DEVICE)
26#include <cstdio>
27#endif
28
29using namespace o2::gpu;
30using namespace o2;
31using namespace o2::its;
32
33GPUdii() bool GPUITSFitterKernels::fitTrack(GPUITSFitter& GPUrestrict() Fitter, GPUTPCGMPropagator& GPUrestrict() prop, GPUITSTrack& GPUrestrict() track, int32_t start, int32_t end, int32_t step)
34{
35 for (int32_t iLayer{start}; iLayer != end; iLayer += step) {
36 if (track.mClusters[iLayer] == o2::its::constants::its::UnusedIndex) {
37 continue;
38 }
39 const TrackingFrameInfo& GPUrestrict() trackingHit = Fitter.trackingFrame()[iLayer][track.mClusters[iLayer]];
40
41 if (prop.PropagateToXAlpha(trackingHit.xTrackingFrame, trackingHit.alphaTrackingFrame, step > 0)) {
42 return false;
43 }
44
45 if (prop.Update(trackingHit.positionTrackingFrame[0], trackingHit.positionTrackingFrame[1], 0, false, trackingHit.covarianceTrackingFrame[0], trackingHit.covarianceTrackingFrame[2])) {
46 return false;
47 }
48
49 /*const float xx0 = (iLayer > 2) ? 0.008f : 0.003f; // Rough layer thickness //FIXME
50 constexpr float radiationLength = 9.36f; // Radiation length of Si [cm]
51 constexpr float density = 2.33f; // Density of Si [g/cm^3]
52 if (!track.correctForMaterial(xx0, xx0 * radiationLength * density, true))
53 return false;*/
54 }
55 return true;
56}
57
58template <>
59GPUdii() void GPUITSFitterKernels::Thread<0>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, GPUsharedref() GPUSharedMemory& smem, processorType& GPUrestrict() processors)
60{
61 GPUITSFitter& Fitter = processors.itsFitter;
62
64 prop.SetPolynomialField(&processors.param.polynomialField);
65 prop.SetMaxSinPhi(GPUCA_MAX_SIN_PHI);
66 prop.SetToyMCEventsFlag(0);
67 prop.SetFitInProjections(1);
68 float bz = -5.f; // FIXME
69
70#ifdef CA_DEBUG
71 int32_t roadCounters[4]{0, 0, 0, 0};
72 int32_t fitCounters[4]{0, 0, 0, 0};
73 int32_t backpropagatedCounters[4]{0, 0, 0, 0};
74 int32_t refitCounters[4]{0, 0, 0, 0};
75#endif
76 for (int32_t iRoad = get_global_id(0); iRoad < Fitter.NumberOfRoads(); iRoad += get_global_size(0)) {
77 Road<5>& road = Fitter.roads()[iRoad];
79 int32_t lastCellLevel = o2::its::constants::its::UnusedIndex;
80 CA_DEBUGGER(int32_t nClusters = 2);
81
82 for (int32_t iCell{0}; iCell < Fitter.NumberOfLayers() - 2; ++iCell) {
83 const int32_t cellIndex = road[iCell];
84 if (cellIndex == o2::its::constants::its::UnusedIndex) {
85 continue;
86 } else {
87 clusters[iCell] = Fitter.cells()[iCell][cellIndex].getFirstClusterIndex();
88 clusters[iCell + 1] = Fitter.cells()[iCell][cellIndex].getSecondClusterIndex();
89 clusters[iCell + 2] = Fitter.cells()[iCell][cellIndex].getThirdClusterIndex();
90 lastCellLevel = iCell;
92 }
93 }
94
95 CA_DEBUGGER(roadCounters[nClusters - 4]++);
96
97 if (lastCellLevel == o2::its::constants::its::UnusedIndex) {
98 continue;
99 }
100
102 for (int32_t iC{0}; iC < 7; iC++) {
104 clusters[iC] = Fitter.clusters()[iC][clusters[iC]].clusterId;
105 }
106 }
108 const auto& cluster1 = Fitter.trackingFrame()[lastCellLevel + 2][clusters[lastCellLevel + 2]];
109 const auto& cluster2 = Fitter.trackingFrame()[lastCellLevel + 1][clusters[lastCellLevel + 1]];
110 const auto& cluster3 = Fitter.trackingFrame()[lastCellLevel][clusters[lastCellLevel]];
111
112 GPUITSTrack temporaryTrack;
113 {
114 const float ca = CAMath::Cos(cluster3.alphaTrackingFrame), sa = CAMath::Sin(cluster3.alphaTrackingFrame);
115 const float x1 = cluster1.xCoordinate * ca + cluster1.yCoordinate * sa;
116 const float y1 = -cluster1.xCoordinate * sa + cluster1.yCoordinate * ca;
117 const float z1 = cluster1.zCoordinate;
118 const float x2 = cluster2.xCoordinate * ca + cluster2.yCoordinate * sa;
119 const float y2 = -cluster2.xCoordinate * sa + cluster2.yCoordinate * ca;
120 const float z2 = cluster2.zCoordinate;
121 const float x3 = cluster3.xTrackingFrame;
122 const float y3 = cluster3.positionTrackingFrame[0];
123 const float z3 = cluster3.positionTrackingFrame[1];
124
125 const float crv = o2::its::math_utils::computeCurvature(x1, y1, x2, y2, x3, y3);
126 const float x0 = o2::its::math_utils::computeCurvatureCentreX(x1, y1, x2, y2, x3, y3);
127 const float tgl12 = o2::its::math_utils::computeTanDipAngle(x1, y1, x2, y2, z1, z2);
128 const float tgl23 = o2::its::math_utils::computeTanDipAngle(x2, y2, x3, y3, z2, z3);
129
130 const float r2 = CAMath::Sqrt(cluster2.xCoordinate * cluster2.xCoordinate + cluster2.yCoordinate * cluster2.yCoordinate);
131 const float r3 = CAMath::Sqrt(cluster3.xCoordinate * cluster3.xCoordinate + cluster3.yCoordinate * cluster3.yCoordinate);
132 const float fy = 1.f / (r2 - r3);
133 const float& tz = fy;
134 const float cy = (o2::its::math_utils::computeCurvature(x1, y1, x2, y2 + o2::its::constants::its::Resolution, x3, y3) - crv) / (o2::its::constants::its::Resolution * bz * constants::math::B2C) * 20.f; // FIXME: MS contribution to the cov[14] (*20 added)
136
137 temporaryTrack.X() = cluster3.xTrackingFrame;
138 temporaryTrack.Y() = y3;
139 temporaryTrack.Z() = z3;
140 temporaryTrack.SinPhi() = crv * (x3 - x0);
141 temporaryTrack.DzDs() = 0.5f * (tgl12 + tgl23);
142 temporaryTrack.QPt() = CAMath::Abs(bz) < constants::math::Almost0 ? constants::math::Almost0 : crv / (bz * constants::math::B2C);
143 temporaryTrack.TZOffset() = 0;
144 temporaryTrack.Cov()[0] = s2;
145 temporaryTrack.Cov()[1] = 0.f;
146 temporaryTrack.Cov()[2] = s2;
147 temporaryTrack.Cov()[3] = s2 * fy;
148 temporaryTrack.Cov()[4] = 0.f;
149 temporaryTrack.Cov()[5] = s2 * fy * fy;
150 temporaryTrack.Cov()[6] = 0.f;
151 temporaryTrack.Cov()[7] = s2 * tz;
152 temporaryTrack.Cov()[8] = 0.f;
153 temporaryTrack.Cov()[9] = s2 * tz * tz;
154 temporaryTrack.Cov()[10] = s2 * cy;
155 temporaryTrack.Cov()[11] = 0.f;
156 temporaryTrack.Cov()[12] = s2 * fy * cy;
157 temporaryTrack.Cov()[13] = 0.f;
158 temporaryTrack.Cov()[14] = s2 * cy * cy;
159 temporaryTrack.SetChi2(0);
160 temporaryTrack.SetNDF(-5);
161
162 prop.SetTrack(&temporaryTrack, cluster3.alphaTrackingFrame);
163 }
164
165 for (size_t iC = 0; iC < 7; ++iC) {
166 temporaryTrack.mClusters[iC] = clusters[iC];
167 }
168 bool fitSuccess = fitTrack(Fitter, prop, temporaryTrack, Fitter.NumberOfLayers() - 4, -1, -1);
169 if (!fitSuccess) {
170 continue;
171 }
172 CA_DEBUGGER(fitCounters[nClusters - 4]++);
173 temporaryTrack.ResetCovariance();
174 fitSuccess = fitTrack(Fitter, prop, temporaryTrack, 0, Fitter.NumberOfLayers(), 1);
175 if (!fitSuccess) {
176 continue;
177 }
178 CA_DEBUGGER(backpropagatedCounters[nClusters - 4]++);
179 for (int32_t k = 0; k < 5; k++) {
180 temporaryTrack.mOuterParam.P[k] = temporaryTrack.Par()[k];
181 }
182 for (int32_t k = 0; k < 15; k++) {
183 temporaryTrack.mOuterParam.C[k] = temporaryTrack.Cov()[k];
184 }
185 temporaryTrack.mOuterParam.X = temporaryTrack.X();
186 temporaryTrack.mOuterParam.alpha = prop.GetAlpha();
187 temporaryTrack.ResetCovariance();
188 fitSuccess = fitTrack(Fitter, prop, temporaryTrack, Fitter.NumberOfLayers() - 1, -1, -1);
189 if (!fitSuccess) {
190 continue;
191 }
192 CA_DEBUGGER(refitCounters[nClusters - 4]++);
193 int32_t trackId = CAMath::AtomicAdd(&Fitter.NumberOfTracks(), 1u);
194 Fitter.tracks()[trackId] = temporaryTrack;
195 }
196#ifdef CA_DEBUG
197 GPUInfo("Roads: %i %i %i %i", roadCounters[0], roadCounters[1], roadCounters[2], roadCounters[3]);
198 GPUInfo("Fitted tracks: %i %i %i %i", fitCounters[0], fitCounters[1], fitCounters[2], fitCounters[3]);
199 GPUInfo("Backpropagated tracks: %i %i %i %i", backpropagatedCounters[0], backpropagatedCounters[1], backpropagatedCounters[2], backpropagatedCounters[3]);
200 GPUInfo("Refitted tracks: %i %i %i %i", refitCounters[0], refitCounters[1], refitCounters[2], refitCounters[3]);
201#endif
202}
#define CA_DEBUGGER(x)
Definition Definitions.h:25
#define GPUsharedref()
#define get_global_size(dim)
#define GPUrestrict()
#define get_global_id(dim)
#define GPUCA_MAX_SIN_PHI
GPUdii() bool GPUITSFitterKernels
useful math constants
int nClusters
gputpcgmmergertypes::GPUTPCOuterParam mOuterParam
Definition GPUITSTrack.h:26
int32_t int32_t int32_t bool float float Z
int32_t int32_t int32_t bool float Y
GLuint GLfloat GLfloat GLfloat GLfloat y1
Definition glcorearb.h:5034
GLuint GLuint end
Definition glcorearb.h:469
GLuint GLfloat GLfloat GLfloat x1
Definition glcorearb.h:5034
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLuint GLfloat x0
Definition glcorearb.h:5034
GLuint start
Definition glcorearb.h:469
constexpr float Almost0
constexpr float B2C
constexpr int UnusedIndex
Definition Constants.h:54
constexpr float Resolution
Definition Constants.h:55
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::vector< Cluster > clusters