ATLAS Offline Software
Loading...
Searching...
No Matches
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
16
17 void set (const float tQThr, const float samplesThr, const float trigSumThr) {
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;
33
34 const static float m_default;
35
36};
37
38#endif
float samplesThr() const
static float getDefault()
void set(const float tQThr, const float samplesThr, const float trigSumThr)
static const float m_default
float trigSumThr() const
LArDSPThresholdsP(const float tQThr, const float samplesThr, const float trigSumThr)