Project
Loading...
Searching...
No Matches
GPUTPCTrackerDump.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 "GPUTPCTracker.h"
16#include "GPUReconstruction.h"
17#include "GPUTPCHitId.h"
18#include "GPUTPCTrack.h"
19
20#include <iostream>
21#include <cstring>
22#include <iomanip>
23#include <algorithm>
24#include <numeric>
25
26using namespace o2::gpu;
27
28void GPUTPCTracker::DumpTrackingData(std::ostream& out)
29{
30 // Dump Sector Input Data to File
31 out << "\nSector Data (Sector" << mISector << "):" << std::endl;
32 for (int32_t i = 0; i < GPUCA_ROW_COUNT; i++) {
33 if (Row(i).NHits() == 0) {
34 continue;
35 }
36 out << "Row: " << i << std::endl;
37 for (int32_t j = 0; j < Row(i).NHits(); j++) {
38 if (j && j % 16 == 0) {
39 out << std::endl;
40 }
41 out << j << '-' << Data().HitDataY(Row(i), j) << '-' << Data().HitDataZ(Row(i), j) << ", ";
42 }
43 out << std::endl;
44 }
45}
46
47void GPUTPCTracker::DumpLinks(std::ostream& out, int32_t phase)
48{
49 // Dump Links (after Neighbours Finder / Cleaner) to file
50 out << "\nHit Links (Phase " << phase << ", Sector" << mISector << "):" << std::endl;
51 for (int32_t i = 0; i < GPUCA_ROW_COUNT; i++) {
52 if (Row(i).NHits() == 0) {
53 continue;
54 }
55 out << "Row: " << i << std::endl;
56 for (int32_t j = 0; j < Row(i).NHits(); j++) {
57 if (j && j % 32 == 0) {
58 out << std::endl;
59 }
60 out << HitLinkUpData(Row(i), j) << "/" << HitLinkDownData(Row(i), j) << ", ";
61 }
62 out << std::endl;
63 }
64}
65
66void GPUTPCTracker::DumpHitWeights(std::ostream& out)
67{
68 // dump hit weights to file
69 out << "\nHit Weights(Sector" << mISector << "):" << std::endl;
70 for (int32_t i = 0; i < GPUCA_ROW_COUNT; i++) {
71 if (Row(i).NHits() == 0) {
72 continue;
73 }
74 out << "Row: " << i << ":" << std::endl;
75 for (int32_t j = 0; j < Row(i).NHits(); j++) {
76 if (j && j % 32 == 0) {
77 out << std::endl;
78 }
79 out << HitWeight(Row(i), j) << ", ";
80 }
81 out << std::endl;
82 }
83}
84
85void GPUTPCTracker::DumpStartHits(std::ostream& out)
86{
87 // dump start hits to file
88 out << "\nStart Hits: (Sector" << mISector << ") (" << *NStartHits() << ")" << std::endl;
89 for (uint32_t i = 0; i < *NStartHits(); i++) {
90 out << TrackletStartHit(i).RowIndex() << "-" << TrackletStartHit(i).HitIndex() << std::endl;
91 }
92 out << std::endl;
93}
94
95void GPUTPCTracker::DumpTrackHits(std::ostream& out)
96{
97 // dump tracks to file
98 out << "\nTracks: (Sector" << mISector << ") (" << *NTracks() << ")" << std::endl;
99 for (uint32_t j = 0; j < *NTracks(); j++) {
100 if (Tracks()[j].NHits() == 0) {
101 continue;
102 }
103 const GPUTPCBaseTrackParam& p = Tracks()[j].Param();
104 out << " " << j << " x " << p.GetX() << " offset " << p.GetZOffset() << " y " << p.GetY() << " z " << p.GetZ() << " snp " << p.GetSinPhi() << " tgl " << p.GetDzDs() << " qpt " << p.GetQPt() << " - ";
105 for (int32_t k = 0; k < 15; k++) {
106 out << p.GetCov(k) << " ";
107 }
108 out << "- ";
109 for (int32_t i = 0; i < Tracks()[j].NHits(); i++) {
110 out << TrackHits()[Tracks()[j].FirstHitID() + i].RowIndex() << "-" << TrackHits()[Tracks()[j].FirstHitID() + i].HitIndex() << ", ";
111 }
112 if (!mRec->GetProcessingSettings().deterministicGPUReconstruction) {
113 out << "(Track: " << j << ")";
114 }
115 out << std::endl;
116 }
117}
118
119void GPUTPCTracker::DumpTrackletHits(std::ostream& out)
120{
121 // dump tracklets to file
122 int32_t nTracklets = *NTracklets();
123 if (nTracklets < 0) {
124 nTracklets = 0;
125 }
126 out << "\nTracklets: (Sector" << mISector << ") (" << nTracklets << ")" << std::endl;
127 std::vector<int32_t> Ids(nTracklets);
128 std::iota(Ids.begin(), Ids.end(), 0);
129 if (mRec->GetProcessingSettings().deterministicGPUReconstruction) {
130 std::sort(Ids.begin(), Ids.end(), [this](const int32_t& a, const int32_t& b) {
131 if (this->Tracklets()[a].FirstRow() != this->Tracklets()[b].FirstRow()) {
132 return this->Tracklets()[a].FirstRow() > this->Tracklets()[b].FirstRow();
133 }
134 if (this->Tracklets()[a].LastRow() != this->Tracklets()[b].LastRow()) {
135 return this->Tracklets()[a].LastRow() > this->Tracklets()[b].LastRow();
136 }
137 if (this->Tracklets()[a].Param().Y() != this->Tracklets()[b].Param().Y()) {
138 return this->Tracklets()[a].Param().Y() > this->Tracklets()[b].Param().Y();
139 }
140 return this->Tracklets()[a].Param().Z() > this->Tracklets()[b].Param().Z();
141 });
142 }
143 for (int32_t jj = 0; jj < nTracklets; jj++) {
144 const int32_t j = Ids[jj];
145 const auto& tracklet = Tracklets()[j];
146 out << "Tracklet " << std::setw(4) << jj << " (Rows: " << Tracklets()[j].FirstRow() << " - " << tracklet.LastRow() << ", Weight " << Tracklets()[j].HitWeight() << ") ";
147 if (tracklet.LastRow() > tracklet.FirstRow() && (tracklet.FirstRow() >= GPUCA_ROW_COUNT || tracklet.LastRow() >= GPUCA_ROW_COUNT)) {
148 GPUError("Error: Tracklet %d First %d Last %d", j, tracklet.FirstRow(), tracklet.LastRow());
149 out << " (Error: Tracklet " << j << " First " << tracklet.FirstRow() << " Last " << tracklet.LastRow() << ") ";
150 for (int32_t i = 0; i < GPUCA_ROW_COUNT; i++) {
151 // if (tracklet.RowHit(i) != CALINK_INVAL)
152 out << i << "-" << mTrackletRowHits[tracklet.FirstHit() + (i - tracklet.FirstRow())] << ", ";
153 }
154 } else if (tracklet.LastRow() >= tracklet.FirstRow()) {
155 for (int32_t i = tracklet.FirstRow(); i <= tracklet.LastRow(); i++) {
156 out << i << "-" << mTrackletRowHits[tracklet.FirstHit() + (i - tracklet.FirstRow())] << ", ";
157 }
158 }
159 out << std::endl;
160 }
161}
uint64_t phase
Definition RawEventData.h:7
int32_t i
#define GPUCA_ROW_COUNT
uint32_t j
Definition RawData.h:0
GPUReconstruction * mRec
const GPUSettingsProcessing & GetProcessingSettings() const
void DumpTrackHits(std::ostream &out)
void DumpLinks(std::ostream &out, int32_t phase)
void DumpStartHits(std::ostream &out)
void DumpHitWeights(std::ostream &out)
if(weight< 0.f||weight > 2e9f)
void DumpTrackingData(std::ostream &out)
void DumpTrackletHits(std::ostream &out)
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233