Project
Loading...
Searching...
No Matches
GPUTPCGMMergerDump.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 <cstdio>
16#include <cstring>
17#include <cmath>
18#include <algorithm>
19#include <iomanip>
20#include <numeric>
21#include "GPUTPCTracker.h"
22#include "GPUTPCClusterData.h"
23#include "GPUTPCTrackParam.h"
24#include "GPUTPCGMMerger.h"
25#include "GPUO2DataTypes.h"
26#include "GPUCommonMath.h"
27#include "GPUTPCTrackParam.h"
28#include "GPUTPCGMMergedTrack.h"
29#include "GPUParam.h"
30#include "GPUParam.inc"
31#include "GPUTPCGMTrackParam.h"
32#include "GPUTPCGMSectorTrack.h"
33#include "GPUTPCGMBorderTrack.h"
34#include "GPUReconstruction.h"
35#include "GPUDebugStreamer.h"
37#include "GPUTrackingRefit.h"
39
40using namespace o2::gpu;
41using namespace gputpcgmmergertypes;
42
43void GPUTPCGMMerger::DumpSectorTracks(std::ostream& out) const
44{
45 std::streamsize ss = out.precision();
46 out << std::setprecision(2);
47 out << "\nTPC Merger Sector Tracks\n";
48 for (int32_t iSector = 0; iSector < NSECTORS; iSector++) {
49 out << "Sector Track Info Index " << (mSectorTrackInfoIndex[iSector + 1] - mSectorTrackInfoIndex[iSector]) << " / " << (mSectorTrackInfoIndex[NSECTORS + iSector + 1] - mSectorTrackInfoIndex[NSECTORS + iSector]) << "\n";
50 for (int32_t iGlobal = 0; iGlobal < 2; iGlobal++) {
51 out << " Track type " << iGlobal << "\n";
52 for (int32_t j = mSectorTrackInfoIndex[iSector + NSECTORS * iGlobal]; j < mSectorTrackInfoIndex[iSector + NSECTORS * iGlobal + 1]; j++) {
53 const auto& trk = mSectorTrackInfos[j];
54 out << " Track " << j << ": LocalId " << (iGlobal ? (trk.LocalTrackId() >> 24) : -1) << "/" << (iGlobal ? (trk.LocalTrackId() & 0xFFFFFF) : -1) << " X " << trk.X() << " offsetz " << trk.TZOffset() << " A " << trk.Alpha() << " Y " << trk.Y() << " Z " << trk.Z() << " SinPhi " << trk.SinPhi() << " CosPhi " << trk.CosPhi() << " SecPhi " << trk.SecPhi() << " Tgl " << trk.DzDs() << " QPt " << trk.QPt() << "\n";
55 }
56 }
57 }
58 out << std::setprecision(ss);
59}
60
61void GPUTPCGMMerger::DumpMergeRanges(std::ostream& out, int32_t withinSector, int32_t mergeMode) const
62{
63 int32_t n = withinSector == -1 ? NSECTORS / 2 : NSECTORS;
64 for (int32_t i = 0; i < n; i++) {
65 int32_t n1, n2;
67 int32_t jSector;
68 MergeBorderTracksSetup(n1, n2, b1, b2, jSector, i, withinSector, mergeMode);
69 const int32_t nTrk = *mRec->GetConstantMem().tpcTrackers[jSector].NTracks();
70 const gputpcgmmergertypes::GPUTPCGMBorderRange* range1 = BorderRange(i);
71 const gputpcgmmergertypes::GPUTPCGMBorderRange* range2 = BorderRange(jSector) + nTrk;
72 out << "\nBorder Tracks : i " << i << " withinSector " << withinSector << " mergeMode " << mergeMode << "\n";
73 for (int32_t k = 0; k < n1; k++) {
74 out << " " << k << ": t " << b1[k].TrackID() << " ncl " << b1[k].NClusters() << " row " << (mergeMode > 0 ? b1[k].Row() : -1) << " par " << b1[k].Par()[0] << " " << b1[k].Par()[1] << " " << b1[k].Par()[2] << " " << b1[k].Par()[3] << " " << b1[k].Par()[4]
75 << " offset " << b1[k].ZOffsetLinear() << " cov " << b1[k].Cov()[0] << " " << b1[k].Cov()[1] << " " << b1[k].Cov()[2] << " " << b1[k].Cov()[3] << " " << b1[k].Cov()[4] << " covd " << b1[k].CovD()[0] << " " << b1[k].CovD()[1] << "\n";
76 }
77 if (i != jSector) {
78 for (int32_t k = 0; k < n2; k++) {
79 out << " " << k << ": t " << b2[k].TrackID() << " ncl " << b2[k].NClusters() << " row " << (mergeMode > 0 ? b2[k].Row() : -1) << " par " << b2[k].Par()[0] << " " << b2[k].Par()[1] << " " << b2[k].Par()[2] << " " << b2[k].Par()[3] << " " << b2[k].Par()[4]
80 << " offset " << b2[k].ZOffsetLinear() << " cov " << b2[k].Cov()[0] << " " << b2[k].Cov()[1] << " " << b2[k].Cov()[2] << " " << b2[k].Cov()[3] << " " << b2[k].Cov()[4] << " covd " << b2[k].CovD()[0] << " " << b2[k].CovD()[1] << "\n";
81 }
82 }
83 out << "\nBorder Range : i " << i << " withinSector " << withinSector << " mergeMode " << mergeMode << "\n";
84 for (int32_t k = 0; k < n1; k++) {
85 out << " " << k << ": " << range1[k].fId << " " << range1[k].fMin << " " << range1[k].fMax << "\n";
86 }
87 for (int32_t k = 0; k < n2; k++) {
88 out << " " << k << ": " << range2[k].fId << " " << range2[k].fMin << " " << range2[k].fMax << "\n";
89 }
90 }
91}
92
93void GPUTPCGMMerger::DumpTrackLinks(std::ostream& out, bool output, const char* type) const
94{
95 out << "\nTPC Merger Links " << type << "\n";
96 const int32_t n = output ? mMemory->nOutputTracks : SectorTrackInfoLocalTotal();
97 for (int32_t i = 0; i < n; i++) {
98 if (mTrackLinks[i] != -1) {
99 out << " " << i << ": " << mTrackLinks[i] << "\n";
100 }
101 }
102}
103
104void GPUTPCGMMerger::DumpMergedWithinSectors(std::ostream& out) const
105{
106 DumpTrackLinks(out, false, "within Sectors");
107 out << "\nTPC Merger Merge Within Sectors\n";
108 for (int32_t iSector = 0; iSector < NSECTORS; iSector++) {
109 for (int32_t j = mSectorTrackInfoIndex[iSector]; j < mSectorTrackInfoIndex[iSector + 1]; j++) {
110 const auto& trk = mSectorTrackInfos[j];
111 if (trk.NextSegmentNeighbour() >= 0 || trk.PrevSegmentNeighbour() >= 0) {
112 out << " Track " << j << ": Neighbour " << trk.PrevSegmentNeighbour() << " / " << trk.NextSegmentNeighbour() << "\n";
113 }
114 }
115 }
116}
117
118void GPUTPCGMMerger::DumpMergedBetweenSectors(std::ostream& out) const
119{
120 DumpTrackLinks(out, false, "between Sectors");
121 out << "\nTPC Merger Merge Between Sectors\n";
122 for (int32_t iSector = 0; iSector < NSECTORS; iSector++) {
123 for (int32_t j = mSectorTrackInfoIndex[iSector]; j < mSectorTrackInfoIndex[iSector + 1]; j++) {
124 const auto& trk = mSectorTrackInfos[j];
125 if (trk.NextNeighbour() >= 0 || trk.PrevNeighbour() >= 0) {
126 out << " Track " << j << ": Neighbour " << trk.PrevNeighbour() << " / " << trk.NextNeighbour() << "\n";
127 }
128 if (trk.PrevNeighbour() == -1 && trk.PrevSegmentNeighbour() == -1) {
129 PrintMergeGraph(&trk, out);
130 }
131 }
132 }
133}
134
135void GPUTPCGMMerger::DumpCollected(std::ostream& out) const
136{
137 std::streamsize ss = out.precision();
138 out << std::setprecision(2);
139 out << "\nTPC Merger Collected Tracks\n";
140 for (uint32_t i = 0; i < mMemory->nOutputTracks; i++) {
141 const auto& trk = mOutputTracks[i];
142 const auto& p = trk.GetParam();
143 out << " Track " << i << ": Loop " << trk.Looper() << " Alpha " << trk.GetAlpha() << " X " << p.GetX() << " offset " << p.GetTZOffset() << " Y " << p.GetY() << " Z " << p.GetZ() << " SPhi " << p.GetSinPhi() << " Tgl " << p.GetDzDs() << " QPt " << p.GetQPt() << " NCl " << trk.NClusters() << "\n";
144 }
145 out << std::setprecision(ss);
146}
147
148void GPUTPCGMMerger::DumpMergeCE(std::ostream& out) const
149{
150 DumpTrackLinks(out, true, " for CE merging");
151 out << "\nTPC Merger Merge CE\n";
152 for (uint32_t i = 0; i < mMemory->nOutputTracks; i++) {
153 const auto& trk = mOutputTracks[i];
154 if (trk.CCE()) {
155 out << " Track " << i << ": CCE\n";
156 }
157 }
158}
159
160void GPUTPCGMMerger::DumpFitPrepare(std::ostream& out) const
161{
162 out << "\nTPC Merger Refit Prepare\n";
163 out << " Sort\n";
164 for (uint32_t i = 0; i < mMemory->nOutputTracks; i++) {
165 out << " " << i << ": " << mTrackOrderAttach[i] << "\n";
166 }
167 out << " Clusters\n";
168 for (uint32_t j = 0; j < mMemory->nOutputTracks; j++) {
169 const auto& trk = mOutputTracks[j];
170 out << " Track " << j << ": ";
171 for (uint32_t i = trk.FirstClusterRef(); i < trk.FirstClusterRef() + trk.NClusters(); i++) {
172 out << j << "/" << (i - trk.FirstClusterRef()) << ": " << mClusters[i].num << "/" << (int32_t)mClusters[i].state << ", ";
173 }
174 out << "\n";
175 }
176 uint32_t maxId = mNMaxClusters;
177 uint32_t j = 0;
178 for (uint32_t i = 0; i < maxId; i++) {
179 if ((mClusterAttachment[i] & attachFlagMask) != 0) {
180 if (++j % 10 == 0) {
181 out << " Cluster attachment ";
182 }
183 out << i << ": " << (mClusterAttachment[i] & attachTrackMask) << " / " << (mClusterAttachment[i] & attachFlagMask) << " - ";
184 if (j % 10 == 0) {
185 out << "\n";
186 }
187 }
188 }
189 out << "\n";
190}
191
192void GPUTPCGMMerger::DumpRefit(std::ostream& out) const
193{
194 std::streamsize ss = out.precision();
195 out << std::setprecision(2);
196 out << "\nTPC Merger Refit\n";
197 for (uint32_t i = 0; i < mMemory->nOutputTracks; i++) {
198 const auto& trk = mOutputTracks[i];
199 if (trk.NClusters() == 0) {
200 continue;
201 }
202 const auto& p = trk.GetParam();
203 const auto& po = trk.OuterParam();
204 out << " Track " << i << ": OK " << trk.OK() << " Alpha " << trk.GetAlpha() << " X " << p.GetX() << " offset " << p.GetTZOffset() << " Y " << p.GetY() << " Z " << p.GetZ() << " SPhi " << p.GetSinPhi() << " Tgl " << p.GetDzDs() << " QPt " << p.GetQPt() << " NCl " << trk.NClusters() << " / " << trk.NClustersFitted() << " Cov " << p.GetErr2Y() << "/" << p.GetErr2Z()
205 << " dEdx " << (trk.OK() ? mOutputTracksdEdx[i].dEdxTotTPC : -1.f) << "/" << (trk.OK() ? mOutputTracksdEdx[i].dEdxMaxTPC : -1.f)
206 << " Outer " << po.P[0] << "/" << po.P[1] << "/" << po.P[2] << "/" << po.P[3] << "/" << po.P[4] << "\n";
207 }
208 out << std::setprecision(ss);
209}
210
211void GPUTPCGMMerger::DumpFinal(std::ostream& out) const
212{
213 out << "\nTPC Merger Finalized\n";
214 for (uint32_t j = 0; j < mMemory->nOutputTracks; j++) {
215 const auto& trk = mOutputTracks[j];
216 if (trk.NClusters() == 0) {
217 continue;
218 }
219 out << " Track " << j << ": ";
220 for (uint32_t i = trk.FirstClusterRef(); i < trk.FirstClusterRef() + trk.NClusters(); i++) {
221 if (mClusters[i].state != 0) {
222 out << j << "/" << (i - trk.FirstClusterRef()) << ": " << mClusters[i].num << "/" << (int32_t)mClusters[i].state << ", ";
223 }
224 }
225 out << "\n";
226 }
227 uint32_t maxId = mNMaxClusters;
228 uint32_t j = 0;
229 for (uint32_t i = 0; i < maxId; i++) {
230 if ((mClusterAttachment[i] & attachFlagMask) != 0) {
231 if (++j % 10 == 0) {
232 out << " Cluster attachment ";
233 }
234 out << i << ": " << (mClusterAttachment[i] & attachTrackMask) << " / " << (mClusterAttachment[i] & attachFlagMask) << " - ";
235 if (j % 10 == 0) {
236 out << "\n";
237 }
238 }
239 }
240 out << "\n";
241}
242
243template <int32_t mergeType>
244inline void GPUTPCGMMerger::MergedTrackStreamerInternal(const GPUTPCGMBorderTrack& b1, const GPUTPCGMBorderTrack& b2, const char* name, int32_t sector1, int32_t sector2, int32_t mergeMode, float weight, float frac) const
245{
246#ifdef DEBUG_STREAMER
247 std::vector<int32_t> hits1(152), hits2(152);
248 for (int32_t i = 0; i < 152; i++) {
249 hits1[i] = hits2[i] = -1;
250 }
251 const GPUTPCTracker& tracker1 = GetConstantMem()->tpcTrackers[sector1];
252 const GPUTPCGMSectorTrack& sectorTrack1 = mSectorTrackInfos[b1.TrackID()];
253 const GPUTPCTrack& inTrack1 = *sectorTrack1.OrigTrack();
254 for (int32_t i = 0; i < inTrack1.NHits(); i++) {
255 const GPUTPCHitId& ic1 = tracker1.TrackHits()[inTrack1.FirstHitID() + i];
256 int32_t clusterIndex = tracker1.Data().ClusterDataIndex(tracker1.Data().Row(ic1.RowIndex()), ic1.HitIndex());
257 hits1[ic1.RowIndex()] = clusterIndex;
258 }
259 const GPUTPCTracker& tracker2 = GetConstantMem()->tpcTrackers[sector2];
260 const GPUTPCGMSectorTrack& sectorTrack2 = mSectorTrackInfos[b2.TrackID()];
261 const GPUTPCTrack& inTrack2 = *sectorTrack2.OrigTrack();
262 for (int32_t i = 0; i < inTrack2.NHits(); i++) {
263 const GPUTPCHitId& ic2 = tracker2.TrackHits()[inTrack2.FirstHitID() + i];
264 int32_t clusterIndex = tracker2.Data().ClusterDataIndex(tracker2.Data().Row(ic2.RowIndex()), ic2.HitIndex());
265 hits2[ic2.RowIndex()] = clusterIndex;
266 }
267
268 std::string debugname = std::string("debug_") + name;
269 std::string treename = std::string("tree_") + name;
270 o2::utils::DebugStreamer::instance()->getStreamer(debugname.c_str(), "UPDATE") << o2::utils::DebugStreamer::instance()->getUniqueTreeName(treename.c_str()).data() << "sector1=" << sector1 << "sector2=" << sector2 << "b1=" << b1 << "b2=" << b2 << "clusters1=" << hits1 << "clusters2=" << hits2 << "sectorTrack1=" << sectorTrack1 << "sectorTrack2=" << sectorTrack2 << "mergeMode=" << mergeMode << "weight=" << weight << "fraction=" << frac << "\n";
271#endif
272}
273
274void GPUTPCGMMerger::MergedTrackStreamer(const GPUTPCGMBorderTrack& b1, const GPUTPCGMBorderTrack& b2, const char* name, int32_t sector1, int32_t sector2, int32_t mergeMode, float weight, float frac) const
275{
276#ifdef DEBUG_STREAMER
277 if (mergeMode == 0) {
278 MergedTrackStreamerInternal<0>(b1, b2, name, sector1, sector2, mergeMode, weight, frac);
279 } else if (mergeMode >= 1 && mergeMode <= 0) {
280 // MergedTrackStreamerInternal<1>(b1, b2, name, sector1, sector2, mergeMode, weight, frac); Not yet working
281 }
282#endif
283}
284
286{
287 for (int32_t i = 0; i < N; i++) {
288 if (tracks[i].TrackID() == trackId) {
289 return tracks[i];
290 }
291 }
292 throw std::runtime_error("didn't find border track");
293}
294
296{
297 GPUTPCGMMergedTrack trk = track;
298 GPUTrackingRefit refit;
299 ((GPUConstantMem*)GetConstantMem())->ioPtrs.mergedTrackHitStates = ClusterStateExt();
300 ((GPUConstantMem*)GetConstantMem())->ioPtrs.mergedTrackHits = Clusters();
301 refit.SetPtrsFromGPUConstantMem(GetConstantMem());
302 int32_t retval = refit.RefitTrackAsGPU(trk, false, true);
303 if (retval > 0) {
305 prop.SetMaterialTPC();
306 prop.SetPolynomialField(&Param().polynomialField);
307 prop.SetMaxSinPhi(GPUCA_MAX_SIN_PHI);
308 prop.SetPropagateBzOnly(false);
309 prop.SetMatLUT(Param().rec.useMatLUT ? GetConstantMem()->calibObjects.matLUT : nullptr);
310 prop.SetTrack(&trk.Param(), trk.GetAlpha());
311 int32_t err = prop.PropagateToXAlpha(track.GetParam().GetX(), track.GetAlpha(), false);
312 if (err == 0) {
313 printf("REFIT RESULT %d, SnpDiff %f\n", retval, trk.GetParam().GetSinPhi() - track.GetParam().GetSinPhi());
314 if (retval > 20 && fabsf(trk.GetParam().GetSinPhi() - track.GetParam().GetSinPhi()) > 0.01f) {
315 printf("LARGE DIFF\n");
316 }
317 } else {
318 printf("PROPAGATE ERROR\n");
319 }
320 } else {
321 printf("REFIT ERROR\n");
322 }
323}
324
325std::vector<uint32_t> GPUTPCGMMerger::StreamerOccupancyBin(int32_t iSector, int32_t iRow, float time) const
326{
327 static int32_t size = getenv("O2_DEBUG_STREAMER_OCCUPANCY_NBINS") ? atoi(getenv("O2_DEBUG_STREAMER_OCCUPANCY_NBINS")) : Param().rec.tpc.occupancyMapTimeBinsAverage;
328 std::vector<uint32_t> retVal(1 + 2 * size);
329#ifdef DEBUG_STREAMER
330 const int32_t bin = CAMath::Max(0.f, time / Param().rec.tpc.occupancyMapTimeBins);
331 for (int32_t i = 0; i < 1 + 2 * size; i++) {
332 const int32_t mybin = bin + i - size;
333 retVal[i] = (mybin >= 0 && mybin < (int32_t)GPUTPCClusterOccupancyMapBin::getNBins(Param())) ? Param().occupancyMap[mybin] : 0;
334 }
335#endif
336 return retVal;
337}
338
339std::vector<float> GPUTPCGMMerger::StreamerUncorrectedZY(int32_t iSector, int32_t iRow, const GPUTPCGMTrackParam& track, const GPUTPCGMPropagator& prop) const
340{
341 std::vector<float> retVal(2);
342#ifdef DEBUG_STREAMER
343 GetConstantMem()->calibObjects.fastTransformHelper->InverseTransformYZtoNominalYZ(iSector, iRow, track.GetY(), track.GetZ(), retVal[0], retVal[1]);
344#endif
345 return retVal;
346}
347
348void GPUTPCGMMerger::DebugStreamerUpdate(int32_t iTrk, int32_t ihit, float xx, float yy, float zz, const GPUTPCGMMergedTrackHit& cluster, const o2::tpc::ClusterNative& clusterNative, const GPUTPCGMTrackParam& track, const GPUTPCGMPropagator& prop, const gputpcgmmergertypes::InterpolationErrorHit& interpolation, int8_t rejectChi2, bool refit, int32_t retVal, float avgInvCharge, float posY, float posZ, int16_t clusterState, int32_t retValReject, float err2Y, float err2Z) const
349{
350#ifdef DEBUG_STREAMER
351 float time = clusterNative.getTime();
352 auto occupancyBins = StreamerOccupancyBin(cluster.sector, cluster.row, time);
353 auto uncorrectedYZ = StreamerUncorrectedZY(cluster.sector, cluster.row, track, prop);
354 float invCharge = 1.f / clusterNative.qMax;
355 int32_t iRow = cluster.row;
356 float unscaledMult = (time >= 0.f ? Param().GetUnscaledMult(time) / GPUTPCGeometry::Row2X(iRow) : 0.f);
357 const float clAlpha = Param().Alpha(cluster.sector);
358 uint32_t occupancyTotal = Param().occupancyTotal;
359 o2::utils::DebugStreamer::instance()->getStreamer("debug_update_track", "UPDATE") << o2::utils::DebugStreamer::instance()->getUniqueTreeName("tree_update_track").data()
360 << "iTrk=" << iTrk
361 << "ihit=" << ihit
362 << "xx=" << xx
363 << "yy=" << yy
364 << "zz=" << zz
365 << "cluster=" << cluster
366 << "clusterNative=" << clusterNative
367 << "track=" << track
368 << "rejectChi2=" << rejectChi2
369 << "interpolationhit=" << interpolation
370 << "refit=" << refit
371 << "retVal=" << retVal
372 << "occupancyBins=" << occupancyBins
373 << "occupancyTotal=" << occupancyTotal
374 << "trackUncorrectedYZ=" << uncorrectedYZ
375 << "avgInvCharge=" << avgInvCharge
376 << "invCharge=" << invCharge
377 << "unscaledMultiplicity=" << unscaledMult
378 << "alpha=" << clAlpha
379 << "iRow=" << iRow
380 << "posY=" << posY
381 << "posZ=" << posZ
382 << "clusterState=" << clusterState
383 << "retValReject=" << retValReject
384 << "err2Y=" << err2Y
385 << "err2Z=" << err2Z
386 << "\n";
387#endif
388}
benchmark::State & state
Helper class to access correction maps.
int16_t time
Definition RawEventData.h:4
int32_t i
#define GPUCA_MAX_SIN_PHI
int32_t retVal
const GPUTPCGMMerger::trackCluster & b1
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
uint32_t j
Definition RawData.h:0
double num
GPUReconstruction * mRec
const GPUConstantMem & GetConstantMem() const
int32_t int32_t int32_t int32_t int8_t int8_t mergeMode
void DumpMergeCE(std::ostream &out) const
void DumpMergedBetweenSectors(std::ostream &out) const
void MergedTrackStreamerInternal(const GPUTPCGMBorderTrack &b1, const GPUTPCGMBorderTrack &b2, const char *name, int32_t sector1, int32_t sector2, int32_t mergeMode, float weight, float frac) const
void DumpFitPrepare(std::ostream &out) const
static constexpr const int32_t NSECTORS
void DebugRefitMergedTrack(const GPUTPCGMMergedTrack &track) const
int32_t int32_t int32_t bool output
int32_t int32_t int32_t gputpcgmmergertypes::GPUTPCGMBorderRange int32_t N
int32_t GPUTPCGMBorderTrack GPUTPCGMBorderTrack *& b2
void DumpTrackLinks(std::ostream &out, bool output, const char *type) const
void DumpFinal(std::ostream &out) const
std::vector< float > StreamerUncorrectedZY(int32_t iSector, int32_t iRow, const GPUTPCGMTrackParam &track, const GPUTPCGMPropagator &prop) const
std::vector< uint32_t > StreamerOccupancyBin(int32_t iSector, int32_t iRow, float time) const
void DumpRefit(std::ostream &out) const
void DumpMergedWithinSectors(std::ostream &out) const
void DumpCollected(std::ostream &out) const
int32_t GPUTPCGMBorderTrack GPUTPCGMBorderTrack int32_t & jSector
const GPUTPCGMBorderTrack & MergedTrackStreamerFindBorderTrack(const GPUTPCGMBorderTrack *tracks, int32_t N, int32_t trackId) const
int32_t int32_t int32_t int32_t int8_t withinSector
void DebugStreamerUpdate(int32_t iTrk, int32_t ihit, float xx, float yy, float zz, const GPUTPCGMMergedTrackHit &cluster, const o2::tpc::ClusterNative &clusterNative, const GPUTPCGMTrackParam &track, const GPUTPCGMPropagator &prop, const gputpcgmmergertypes::InterpolationErrorHit &interpolation, int8_t rejectChi2, bool refit, int32_t retVal, float avgInvCharge, float posY, float posZ, int16_t clusterState, int32_t retValReject, float err2Y, float err2Z) const
void DumpMergeRanges(std::ostream &out, int32_t withinSector, int32_t mergeMode) const
void MergedTrackStreamer(const GPUTPCGMBorderTrack &b1, const GPUTPCGMBorderTrack &b2, const char *name, int32_t sector1, int32_t sector2, int32_t mergeMode, float weight, float frac) const
int32_t GPUTPCGMBorderTrack *& b1
void DumpSectorTracks(std::ostream &out) const
void SetPtrsFromGPUConstantMem(const GPUConstantMem *v, GPUParam *p=nullptr)
GLdouble n
Definition glcorearb.h:1982
GLsizeiptr size
Definition glcorearb.h:659
GLuint const GLchar * name
Definition glcorearb.h:781
GLuint GLuint GLfloat weight
Definition glcorearb.h:5477
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GPUReconstruction * rec
GPUTPCTracker tpcTrackers[GPUCA_NSECTORS]