Belle II Software  release-05-01-25
EKLMSimulationParameters.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Kirill Chilikin *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 /* ROOT headers. */
14 #include <TObject.h>
15 
16 namespace Belle2 {
25  class EKLMSimulationParameters : public TObject {
26 
27  public:
28 
33 
38 
42  float getHitTimeThreshold() const
43  {
44  return m_HitTimeThreshold;
45  }
46 
50  void setHitTimeThreshold(float threshold)
51  {
52  m_HitTimeThreshold = threshold;
53  }
54 
55  private:
56 
58  float m_HitTimeThreshold = 0;
59 
62 
63  };
64 
66 }
Belle2::EKLMSimulationParameters::~EKLMSimulationParameters
~EKLMSimulationParameters()
Destructor.
Definition: EKLMSimulationParameters.cc:20
Belle2::EKLMSimulationParameters::setHitTimeThreshold
void setHitTimeThreshold(float threshold)
Set hit time threshold.
Definition: EKLMSimulationParameters.h:58
Belle2::EKLMSimulationParameters::m_HitTimeThreshold
float m_HitTimeThreshold
Maximal hit time.
Definition: EKLMSimulationParameters.h:66
Belle2::EKLMSimulationParameters::EKLMSimulationParameters
EKLMSimulationParameters()
Constructor.
Definition: EKLMSimulationParameters.cc:16
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::EKLMSimulationParameters::ClassDef
ClassDef(Belle2::EKLMSimulationParameters, 1)
Class version.
Belle2::EKLMSimulationParameters
Class to store EKLM simulation in the database.
Definition: EKLMSimulationParameters.h:33
Belle2::EKLMSimulationParameters::getHitTimeThreshold
float getHitTimeThreshold() const
Get hit time threshold.
Definition: EKLMSimulationParameters.h:50