Belle II Software  release-05-02-19
TestSpacePoint.h
1 
4 #pragma once
5 
6 namespace VXDTFFilterTest {
8  struct TestSpacePoint {
14  TestSpacePoint(double x, double y, double z) : x(x), y(y), z(z) { ; }
15 
16  double x;
17  double y;
18  double z;
20  double X() const { return x; }
23  double Y() const { return y; }
25  double Z() const { return z; }
26  };
27 }
VXDTFFilterTest::TestSpacePoint::y
double y
y coordiante of the SP
Definition: TestSpacePoint.h:17
VXDTFFilterTest::TestSpacePoint::z
double z
z coordiante of the SP
Definition: TestSpacePoint.h:18
VXDTFFilterTest::TestSpacePoint::Z
double Z() const
Getter for z.
Definition: TestSpacePoint.h:25
VXDTFFilterTest::TestSpacePoint::Y
double Y() const
Getter for y.
Definition: TestSpacePoint.h:23
VXDTFFilterTest::TestSpacePoint::x
double x
x coordiante of the SP
Definition: TestSpacePoint.h:16
VXDTFFilterTest
helper struct for testing purposes providing the necessary coordinate accessors NOTE: this is only te...
Definition: TestSpacePoint.h:6
VXDTFFilterTest::TestSpacePoint::TestSpacePoint
TestSpacePoint(double x, double y, double z)
Constructor.
Definition: TestSpacePoint.h:14
VXDTFFilterTest::TestSpacePoint::X
double X() const
Getter for x.
Definition: TestSpacePoint.h:21
VXDTFFilterTest::TestSpacePoint
Helper struct for SpacePoint Tests.
Definition: TestSpacePoint.h:8