Belle II Software  release-05-01-25
EKLMHitCoord.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Timofey Uglov, Kirill Chilikin *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 /* Own header. */
12 #include <klm/dataobjects/eklm/EKLMHitCoord.h>
13 
14 using namespace Belle2;
15 
17  m_localX(-1),
18  m_localY(-1),
19  m_localZ(-1)
20 {
21 }
22 
24 {
25 }
26 
27 void EKLMHitCoord::setLocalPosition(float x, float y, float z)
28 {
29  m_localX = x;
30  m_localY = y;
31  m_localZ = z;
32 }
Belle2::EKLMHitCoord::~EKLMHitCoord
virtual ~EKLMHitCoord()
Destructor.
Definition: EKLMHitCoord.cc:23
Belle2::EKLMHitCoord::m_localZ
float m_localZ
Local position Z coordinate.
Definition: EKLMHitCoord.h:103
Belle2::EKLMHitCoord::m_localY
float m_localY
Local position Y coordinate.
Definition: EKLMHitCoord.h:100
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::EKLMHitCoord::setLocalPosition
void setLocalPosition(float x, float y, float z)
Set hit local position.
Definition: EKLMHitCoord.cc:27
Belle2::EKLMHitCoord::m_localX
float m_localX
Local position X coordinate.
Definition: EKLMHitCoord.h:97
Belle2::EKLMHitCoord::EKLMHitCoord
EKLMHitCoord()
Constructor.
Definition: EKLMHitCoord.cc:16