Belle II Software development
TestSpacePoint.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
11#pragma once
12
13namespace VXDTFFilterTest {
21 TestSpacePoint(double x, double y, double z) : x(x), y(y), z(z) { ; }
22
23 double x;
24 double y;
25 double z;
28 double X() const { return x; }
30 double Y() const { return y; }
32 double Z() const { return z; }
33 };
34}
helper struct for testing purposes providing the necessary coordinate accessors NOTE: this is only te...
Helper struct for SpacePoint Tests.
TestSpacePoint(double x, double y, double z)
Constructor.
double z
z coordiante of the SP
double y
y coordiante of the SP
double Z() const
Getter for z.
double X() const
Getter for x.
double x
x coordiante of the SP
double Y() const
Getter for y.