Belle II Software  release-06-02-00
EKLMHitBase.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 /* Own header. */
10 #include <klm/dataobjects/eklm/EKLMHitBase.h>
11 
12 using namespace Belle2;
13 
15  m_Section(-1),
16  m_Layer(-1),
17  m_Sector(-1)
18 {
19 }
20 
22 {
23 }
24 
25 EKLMHitBase::EKLMHitBase(int section, int layer, int sector) :
26  m_Section(section),
27  m_Layer(layer),
28  m_Sector(sector)
29 {
30 }
virtual ~EKLMHitBase()
Destructor.
Definition: EKLMHitBase.cc:21
EKLMHitBase()
Constructor.
Definition: EKLMHitBase.cc:14
Abstract base class for different kinds of events.