MarlinTrkProcessors  2.4.1
ThreeDPoint.h
1 #ifndef THREEDPOINT_H
2 #define THREEDPOINT_H
3 //
4 // Based on the FTF code written by Pablo Yepes.
5 //
6 // P. Yepes, “A fast track pattern recognition,”
7 // Nuclear Instruments & Methods in Physics Research A
8 // 380(1996) pp. 582-585.
9 //
10 
11 namespace ftf
12 {
13  class ThreeDPoint
14  {
15  public:
16  ThreeDPoint ( ) : x(0), y(0), z(0){ } ;
17  ThreeDPoint ( double _x, double _y, double _z ) : x(_x), y(_y), z(_z){ } ;
18  void set ( double _x, double _y, double _z ){ x = _x ; y = _y ; z = _z ; } ;
19  double x ;
20  double y ;
21  double z ;
22  };
23 } // end namespace ftf
24 #endif
Definition: ThreeDPoint.h:13