@@ -29,7 +29,6 @@ struct Cluster final {
2929 Cluster (const float x, const float y, const float z, const int idx);
3030 Cluster (const int , const IndexTableUtils& utils, const Cluster&);
3131 Cluster (const int , const float3&, const IndexTableUtils& utils, const Cluster&);
32- void Init (const int , const float3&, const IndexTableUtils& utils, const Cluster&);
3332 bool operator ==(const Cluster&) const = default ;
3433 GPUhd () void print () const ;
3534
@@ -40,13 +39,12 @@ struct Cluster final {
4039 float radius{-999 .f };
4140 int clusterId{-1 };
4241 int indexTableBinIndex{-1 };
43-
44- ClassDefNV (Cluster, 1 );
4542};
4643
47- struct TrackingFrameInfo {
44+ struct TrackingFrameInfo final {
4845 TrackingFrameInfo () = default ;
4946 TrackingFrameInfo (float x, float y, float z, float xTF, float alpha, std::array<float , 2 >&& posTF, std::array<float , 3 >&& covTF);
47+ GPUhd () void print () const ;
5048
5149 float xCoordinate{-999 .f };
5250 float yCoordinate{-999 .f };
@@ -55,7 +53,6 @@ struct TrackingFrameInfo {
5553 float alphaTrackingFrame{-999 .f };
5654 std::array<float , 2 > positionTrackingFrame = {-1 ., -1 .};
5755 std::array<float , 3 > covarianceTrackingFrame = {999 ., 999 ., 999 .};
58- GPUdi () void print () const ;
5956};
6057
6158} // namespace o2::its
0 commit comments