Belle II Software  release-06-00-14
BelleTrkExtra.cc
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  **************************************************************************/
8 
9 #include <b2bii/dataobjects/BelleTrkExtra.h>
10 
11 using namespace Belle2;
12 
13 void BelleTrkExtra::setTrackFirstX(double first_x)
14 {
15  m_firstx = first_x;
16 }
17 
18 void BelleTrkExtra::setTrackFirstY(double first_y)
19 {
20  m_firsty = first_y;
21 }
22 
23 void BelleTrkExtra::setTrackFirstZ(double first_z)
24 {
25  m_firstz = first_z;
26 }
27 
28 void BelleTrkExtra::setTrackLastX(double last_x)
29 {
30  m_lastx = last_x;
31 }
32 
33 void BelleTrkExtra::setTrackLastY(double last_y)
34 {
35  m_lasty = last_y;
36 }
37 
38 void BelleTrkExtra::setTrackLastZ(double last_z)
39 {
40  m_lastz = last_z;
41 }
42 
void setTrackLastY(double last_y)
Set last_y End point of the track near the last CDC hit point.
double m_firstx
Start point of the track near the 1st CDC hit point.
double m_lastx
End point of the track near the last CDC hit point.
double m_firsty
Start point of the track near the 1st CDC hit point.
void setTrackLastZ(double last_z)
Set last_z End point of the track near the last CDC hit point.
void setTrackLastX(double last_x)
Set last_x End point of the track near the last CDC hit point.
void setTrackFirstX(double first_x)
Set first_x Start point of the track near the 1st CDC hit point.
void setTrackFirstY(double first_y)
Set first_y Start point of the track near the 1st CDC hit point.
double m_lastz
End point of the track near the last CDC hit point.
double m_lasty
End point of the track near the last CDC hit point.
void setTrackFirstZ(double first_z)
Set first_z Start point of the track near the 1st CDC hit point.
double m_firstz
Start point of the track near the 1st CDC hit point.
Abstract base class for different kinds of events.