Belle II Software  release-08-01-10
KLMReconstructionParameters.h
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 #pragma once
10 
11 /* ROOT headers. */
12 #include <TObject.h>
13 
14 namespace Belle2 {
23  class KLMReconstructionParameters : public TObject {
24 
25  public:
26 
31  {
32  }
33 
38  {
39  }
40 
45  {
47  }
48 
52  void setMultiStripDigitsEnabled(bool enabled)
53  {
54  m_MultiStripDigitsEnabled = enabled;
55  }
56 
57  private:
58 
61 
64 
65  };
66 
68 }
Class to store KLM reconstruction parameters in the database.
ClassDef(Belle2::KLMReconstructionParameters, 2)
Class version.
bool m_MultiStripDigitsEnabled
Whether multi-strip digits are enabled.
bool multiStripDigitsEnabled() const
Whether multi-strip digits are enabled.
void setMultiStripDigitsEnabled(bool enabled)
Set whether multi-strip digits are enabled.
Abstract base class for different kinds of events.