Belle II Software  release-05-01-25
BelleTrkExtra.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2020 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Chia-Ling Hsu *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #include <b2bii/dataobjects/BelleTrkExtra.h>
12 
13 using namespace Belle2;
14 
15 void BelleTrkExtra::setTrackFirstX(double first_x)
16 {
17  m_firstx = first_x;
18 }
19 
20 void BelleTrkExtra::setTrackFirstY(double first_y)
21 {
22  m_firsty = first_y;
23 }
24 
25 void BelleTrkExtra::setTrackFirstZ(double first_z)
26 {
27  m_firstz = first_z;
28 }
29 
30 void BelleTrkExtra::setTrackLastX(double last_x)
31 {
32  m_lastx = last_x;
33 }
34 
35 void BelleTrkExtra::setTrackLastY(double last_y)
36 {
37  m_lasty = last_y;
38 }
39 
40 void BelleTrkExtra::setTrackLastZ(double last_z)
41 {
42  m_lastz = last_z;
43 }
44 
Belle2::BelleTrkExtra::setTrackFirstZ
void setTrackFirstZ(double first_z)
Set first_z Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.cc:25
Belle2::BelleTrkExtra::setTrackFirstX
void setTrackFirstX(double first_x)
Set first_x Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.cc:15
Belle2::BelleTrkExtra::setTrackLastZ
void setTrackLastZ(double last_z)
Set last_z End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.cc:40
Belle2::BelleTrkExtra::m_lastx
double m_lastx
End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.h:150
Belle2::BelleTrkExtra::m_firstz
double m_firstz
Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.h:149
Belle2::BelleTrkExtra::m_lasty
double m_lasty
End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.h:151
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::BelleTrkExtra::m_lastz
double m_lastz
End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.h:152
Belle2::BelleTrkExtra::setTrackLastY
void setTrackLastY(double last_y)
Set last_y End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.cc:35
Belle2::BelleTrkExtra::m_firstx
double m_firstx
Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.h:147
Belle2::BelleTrkExtra::setTrackFirstY
void setTrackFirstY(double first_y)
Set first_y Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.cc:20
Belle2::BelleTrkExtra::m_firsty
double m_firsty
Start point of the track near the 1st CDC hit point.
Definition: BelleTrkExtra.h:148
Belle2::BelleTrkExtra::setTrackLastX
void setTrackLastX(double last_x)
Set last_x End point of the track near the last CDC hit point.
Definition: BelleTrkExtra.cc:30