ATLAS Offline Software
LArDSPThresholdsP.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef LARDSPTHRESHOLDSP_H
6 #define LARDSPTHRESHOLDSP_H
7 
8 
10 
11  public:
13 
14  LArDSPThresholdsP(const float tQThr, const float samplesThr, const float trigSumThr) :
16 
17  void set (const float tQThr, const float samplesThr, const float trigSumThr) {
18  m_tQThr=tQThr;
21  }
22 
23  float tQThr() const { return m_tQThr; };
24  float samplesThr() const {return m_samplesThr; };
25  float trigSumThr() const {return m_trigSumThr; };
26 
27  static float getDefault() {return m_default; };
28 
29  private:
30  float m_tQThr;
31  float m_samplesThr;
32  float m_trigSumThr;
33 
34  const static float m_default;
35 
36 };
37 
38 #endif
LArDSPThresholdsP::samplesThr
float samplesThr() const
Definition: LArDSPThresholdsP.h:24
LArDSPThresholdsP::m_tQThr
float m_tQThr
Definition: LArDSPThresholdsP.h:27
LArDSPThresholdsP
Definition: LArDSPThresholdsP.h:9
LArDSPThresholdsP::m_default
static const float m_default
Definition: LArDSPThresholdsP.h:34
LArDSPThresholdsP::trigSumThr
float trigSumThr() const
Definition: LArDSPThresholdsP.h:25
LArDSPThresholdsP::m_samplesThr
float m_samplesThr
Definition: LArDSPThresholdsP.h:31
LArDSPThresholdsP::LArDSPThresholdsP
LArDSPThresholdsP()
Definition: LArDSPThresholdsP.h:12
LArDSPThresholdsP::LArDSPThresholdsP
LArDSPThresholdsP(const float tQThr, const float samplesThr, const float trigSumThr)
Definition: LArDSPThresholdsP.h:14
LArDSPThresholdsP::m_trigSumThr
float m_trigSumThr
Definition: LArDSPThresholdsP.h:32
LArDSPThresholdsP::tQThr
float tQThr() const
Definition: LArDSPThresholdsP.h:23
LArDSPThresholdsP::getDefault
static float getDefault()
Definition: LArDSPThresholdsP.h:27
LArDSPThresholdsP::set
void set(const float tQThr, const float samplesThr, const float trigSumThr)
Definition: LArDSPThresholdsP.h:17