Project
Loading...
Searching...
No Matches
GPUTPCGMBorderTrack.h
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#ifndef GPUTPCGMBORDERTRACK_H
16#define GPUTPCGMBORDERTRACK_H
17
18#include "GPUCommonDef.h"
19#include "GPUCommonMath.h"
20
21namespace o2::gpu
22{
31{
32 public:
33 GPUd() int32_t TrackID() const { return mTrackID; }
34 GPUd() int16_t NClusters() const { return mNClusters; }
35 GPUd() int16_t Row() const { return mRow; }
36 GPUd() const float* Par() const { return mP; }
37 GPUd() float ZOffsetLinear() const { return mZOffsetLinear; }
38 GPUd() const float* Cov() const { return mC; }
39 GPUd() const float* CovD() const { return mD; }
40
41 GPUd() void SetTrackID(int32_t v) { mTrackID = v; }
42 GPUd() void SetNClusters(int16_t v) { mNClusters = v; }
43 GPUd() void SetRow(int16_t v) { mRow = v; }
44 GPUd() void SetPar(int32_t i, float x) { mP[i] = x; }
45 GPUd() void SetZOffsetLinear(float v) { mZOffsetLinear = v; }
46 GPUd() void SetCov(int32_t i, float x) { mC[i] = x; }
47 GPUd() void SetCovD(int32_t i, float x) { mD[i] = x; }
48
49 GPUd() static bool CheckChi2(float x1, float y1, float cx1, float cxy1, float cy1, float x2, float y2, float cx2, float cxy2, float cy2, float chi2cut)
50 {
51 //* Calculate Chi2/ndf deviation
52 float dx = x1 - x2;
53 float dy = y1 - y2;
54 float cx = cx1 + cx2;
55 float cxy = cxy1 + cxy2;
56 float cy = cy1 + cy2;
57 float det = cx * cy - cxy * cxy;
58 // printf("Res %f Det %f Cut %f %s - ", ( cy*dx - (cxy+cxy)*dy )*dx + cx*dy*dy, det, (det + det) * chi2cut, (CAMath::Abs(( cy*dx - (cxy+cxy)*dy )*dx + cx*dy*dy) < CAMath::Abs((det+det)*chi2cut)) ? "OK" : "Fail");
59 return (CAMath::Abs((cy * dx - (cxy + cxy) * dy) * dx + cx * dy * dy) < CAMath::Abs((det + det) * chi2cut));
60 }
61
62 GPUd() bool CheckChi2Y(const GPUTPCGMBorderTrack& t, float chi2cut) const
63 {
64 float d = mP[0] - t.mP[0];
65 return (d * d < chi2cut * (mC[0] + t.mC[0]));
66 }
67
68 GPUd() bool CheckChi2Z(const GPUTPCGMBorderTrack& t, float chi2cut) const
69 {
70 float d = mP[1] - t.mP[1] + (mZOffsetLinear - t.mZOffsetLinear);
71 return (d * d < chi2cut * (mC[1] + t.mC[1]));
72 }
73
74 GPUd() bool CheckChi2QPt(const GPUTPCGMBorderTrack& t, float chi2cut) const
75 {
76 float d = mP[4] - t.mP[4];
77 if (CAMath::Abs(d) > 0.3f && CAMath::Abs(d) > 0.5f * CAMath::Min(CAMath::Abs(mP[4]), CAMath::Abs(t.mP[4]))) {
78 return false; // Crude cut to avoid some bogus matches, TODO: recheck
79 }
80 return (d * d < chi2cut * (mC[4] + t.mC[4]));
81 }
82
83 GPUd() bool CheckChi2YS(const GPUTPCGMBorderTrack& t, float chi2cut) const { return CheckChi2(mP[0], mP[2], mC[0], mD[0], mC[2], t.mP[0], t.mP[2], t.mC[0], t.mD[0], t.mC[2], chi2cut); }
84
85 GPUd() bool CheckChi2ZT(const GPUTPCGMBorderTrack& t, float chi2cut) const { return CheckChi2(mP[1], mP[3], mC[1], mD[1], mC[3], t.mP[1] + (t.mZOffsetLinear - mZOffsetLinear), t.mP[3], t.mC[1], t.mD[1], t.mC[3], chi2cut); }
86
87 GPUd() void LimitCov()
88 {
89 // TODO: Why are Cov entries so large?
90 for (int32_t i = 0; i < 2; i++) {
91 if (mC[i] > 5.f) {
92 mC[i] = 5.f;
93 }
94 }
95 for (int32_t i = 2; i < 4; i++) {
96 if (mC[i] > 0.5f) {
97 mC[i] = 0.5f;
98 }
99 }
100 float maxCov4 = CAMath::Max(0.5f, mP[4] * mP[4] * 0.25f);
101 if (mC[4] > maxCov4) {
102 mC[4] = maxCov4;
103 }
104 for (int32_t i = 0; i < 2; i++) {
105 if (mD[i] > 0.5f) {
106 mD[i] = 0.5f;
107 }
108 }
109 if (mD[0] * mD[0] > mC[0] * mC[2]) {
110 mD[0] = 0.f;
111 }
112 if (mD[1] * mD[1] > mC[1] * mC[3]) {
113 mD[1] = 0.f;
114 }
115 }
116
117 private:
118 int32_t mTrackID; // track index
119 int16_t mNClusters; // n clusters
120 int16_t mRow;
121 float mP[5];
122 float mZOffsetLinear; // Z Offset, in case of T offset scaled linearly to Z with nominal vDrift. Used only for matching / merging
123 float mC[5];
124 float mD[2];
125
126 ClassDefNV(GPUTPCGMBorderTrack, 1);
127};
128} // namespace o2::gpu
129
130#endif
int32_t i
GPUd() void SetCovD(int32_t i
GPUd() bool CheckChi2YS(const GPUTPCGMBorderTrack &t
GPUd() float ZOffsetLinear() const
float float float float float x2
GPUd() const float *Par() const
float float float float float float float float float cy2
GPUd() int32_t TrackID() const
GPUd() bool CheckChi2QPt(const GPUTPCGMBorderTrack &t
GPUd() int16_t NClusters() const
GPUd() void SetPar(int32_t i
float float float float float float y2
float float float float cy1
float float float float float float float float cxy2
GPUd() void SetRow(int16_t v)
GPUd() void SetTrackID(int32_t v)
GPUd() const float *CovD() const
float float float float float float float float float float chi2cut
GPUd() void SetNClusters(int16_t v)
GPUd() bool CheckChi2Z(const GPUTPCGMBorderTrack &t
GPUd() void SetZOffsetLinear(float v)
float float float float float float float cx2
GPUd() bool CheckChi2ZT(const GPUTPCGMBorderTrack &t
GPUd() void SetCov(int32_t i
GPUd() const float *Cov() const
GLint GLenum GLint x
Definition glcorearb.h:403
GLuint GLfloat GLfloat GLfloat GLfloat y1
Definition glcorearb.h:5034
const GLdouble * v
Definition glcorearb.h:832
GLuint GLfloat GLfloat GLfloat x1
Definition glcorearb.h:5034
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)