Belle II Software  release-05-01-25
EKLMHitBase.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/EKLMHitBase.h>
13 
14 using namespace Belle2;
15 
17  m_Section(-1),
18  m_Layer(-1),
19  m_Sector(-1)
20 {
21 }
22 
24 {
25 }
26 
27 EKLMHitBase::EKLMHitBase(int section, int layer, int sector) :
28  m_Section(section),
29  m_Layer(layer),
30  m_Sector(sector)
31 {
32 }
Belle2::EKLMHitBase::~EKLMHitBase
virtual ~EKLMHitBase()
Destructor.
Definition: EKLMHitBase.cc:23
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::EKLMHitBase::EKLMHitBase
EKLMHitBase()
Constructor.
Definition: EKLMHitBase.cc:16