Belle II Software development
TRGECLFAMTCADCThreshold.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#ifndef TRGECLFAMTCADCTHRESHOLD_H
10#define TRGECLFAMTCADCTHRESHOLD_H
11
12#include <TObject.h>
13
14namespace Belle2 {
19
21 class TRGECLFAMTCADCThreshold : public TObject {
22 public:
23
29
31 int TCADCThreshold):
32 m_TCId(TCId),
33 m_TCADCThreshold(TCADCThreshold)
34 {}
35
37 void setTCId(int TCId)
38 {
39 m_TCId = TCId;
40 }
41
42 void setTCADCThreshold(int TCADCThreshold)
43 {
44 m_TCADCThreshold = TCADCThreshold;
45 }
46
47 int getTCId() const
48 { return m_TCId ; }
49
51 { return m_TCADCThreshold ; }
52
53 private :
54
56 int m_TCId;
59
61 ClassDef(TRGECLFAMTCADCThreshold, 1); /*< the class title */
62 };
63
64}
65
66#endif
67
ClassDef(TRGECLFAMTCADCThreshold, 1)
the class title
int getTCADCThreshold() const
Get TC ADC Threshold (ADC)
int m_TCADCThreshold
TC ADC Threshold (ADC)
void setTCADCThreshold(int TCADCThreshold)
Set TC ADC Threshold (ADC)
TRGECLFAMTCADCThreshold(int TCId, int TCADCThreshold)
Constructor.
Abstract base class for different kinds of events.