Belle II Software  release-05-01-25
EKLMReconstructionParameters.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 EKLMReconstructionParameters : public TObject {
26 
27  public:
28 
33 
38 
42  float getTimeResolution() const
43  {
44  return m_TimeResolution;
45  }
46 
50  void setTimeResolution(float resolution)
51  {
52  m_TimeResolution = resolution;
53  }
54 
55  private:
56 
58  float m_TimeResolution = 0;
59 
62 
63  };
64 
66 }
Belle2::EKLMReconstructionParameters::ClassDef
ClassDef(Belle2::EKLMReconstructionParameters, 1)
Class version.
Belle2::EKLMReconstructionParameters::setTimeResolution
void setTimeResolution(float resolution)
Set time resolution (of reconstructed time, not ADC).
Definition: EKLMReconstructionParameters.h:58
Belle2::EKLMReconstructionParameters::EKLMReconstructionParameters
EKLMReconstructionParameters()
Constructor.
Definition: EKLMReconstructionParameters.cc:16
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::EKLMReconstructionParameters
Class to store EKLM simulation in the database.
Definition: EKLMReconstructionParameters.h:33
Belle2::EKLMReconstructionParameters::getTimeResolution
float getTimeResolution() const
Get time resolution (of reconstructed time, not ADC).
Definition: EKLMReconstructionParameters.h:50
Belle2::EKLMReconstructionParameters::~EKLMReconstructionParameters
~EKLMReconstructionParameters()
Destructor.
Definition: EKLMReconstructionParameters.cc:20
Belle2::EKLMReconstructionParameters::m_TimeResolution
float m_TimeResolution
Time resolution.
Definition: EKLMReconstructionParameters.h:66