Belle II Software development
TRGECLTMMPara.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 TRGECLTMMPARA_H
10#define TRGECLTMMPARA_H
11
12#include <TObject.h>
13
14namespace Belle2 {
21 class TRGECLTMMPara : public TObject {
22 public:
26 {
27
28 }
30 explicit TRGECLTMMPara(int FPGAversion):
31 m_FPGAversion(FPGAversion)
32
33 {
34 }
35
37 void setFPGAversion(int FPGAversion) { m_FPGAversion = FPGAversion; }
38
40 int getFPGAversion() const
41 { return m_FPGAversion ; }
42
43
44 // private :
45
48
49
51 ClassDef(TRGECLTMMPara, 1); /*< the class title */
52 };
54}
55
56#endif
57
Raw TC result nefor digitizing.
Definition: TRGECLTMMPara.h:21
TRGECLTMMPara()
Empty constructor Recommended for ROOT IO.
Definition: TRGECLTMMPara.h:25
TRGECLTMMPara(int FPGAversion)
Construction.
Definition: TRGECLTMMPara.h:30
int getFPGAversion() const
Get FPGAversion.
Definition: TRGECLTMMPara.h:40
void setFPGAversion(int FPGAversion)
Set FPGAversion.
Definition: TRGECLTMMPara.h:37
ClassDef(TRGECLTMMPara, 1)
the class title
int m_FPGAversion
FPGAversion.
Definition: TRGECLTMMPara.h:47
Abstract base class for different kinds of events.