Belle II Software  release-06-02-00
EKLMSimulationParameters.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 EKLMSimulationParameters : public TObject {
24 
25  public:
26 
31  {
32  }
33 
38  {
39  }
40 
44  float getHitTimeThreshold() const
45  {
46  return m_HitTimeThreshold;
47  }
48 
52  void setHitTimeThreshold(float threshold)
53  {
54  m_HitTimeThreshold = threshold;
55  }
56 
57  private:
58 
60  float m_HitTimeThreshold = 0;
61 
64 
65  };
66 
68 }
Class to store EKLM simulation in the database.
float getHitTimeThreshold() const
Get hit time threshold.
void setHitTimeThreshold(float threshold)
Set hit time threshold.
ClassDef(Belle2::EKLMSimulationParameters, 1)
Class version.
Abstract base class for different kinds of events.