Belle II Software  release-05-01-25
TRGECLTMMPara.h
1 //-----------------------------------------------------------
2 // $Id$
3 //-----------------------------------------------------------
4 // Filename : TRGECLTMMPara.h
5 // Section : TRG ECL
6 // Owner : HanEol Cho/InSu Lee/Yuuji Unno
7 // Email : hecho@hep.hanyang.ac.kr / islee@hep.hanyang.ac.kr / yunno@post.kek.jp
8 //-----------------------------------------------------------
9 // Description : A class to represent ECL.
10 //-----------------------------------------------------------
11 // $Log$
12 //-----------------------------------------------------------
13 
14 #ifndef TRGECLTMMPARA_H
15 #define TRGECLTMMPARA_H
16 
17 #include <TObject.h>
18 
19 namespace Belle2 {
25  class TRGECLTMMPara : public TObject {
27  public:
31  {
32 
33  }
35  TRGECLTMMPara(int FPGAversion):
36  m_FPGAversion(FPGAversion)
37 
38  {
39  }
40 
42  void setFPGAversion(int FPGAversion) { m_FPGAversion = FPGAversion; }
43 
45  int getFPGAversion() const
46  { return m_FPGAversion ; }
47 
48 
49  // private :
50 
53 
54 
56  ClassDef(TRGECLTMMPara, 1); /*< the class title */
57  };
59 }
60 
61 #endif
62 
Belle2::TRGECLTMMPara::setFPGAversion
void setFPGAversion(int FPGAversion)
Set FPGAversion.
Definition: TRGECLTMMPara.h:42
Belle2::TRGECLTMMPara::TRGECLTMMPara
TRGECLTMMPara(int FPGAversion)
Construction.
Definition: TRGECLTMMPara.h:35
Belle2::TRGECLTMMPara::ClassDef
ClassDef(TRGECLTMMPara, 1)
the class title
Belle2::TRGECLTMMPara::TRGECLTMMPara
TRGECLTMMPara()
Empty constructor Recommended for ROOT IO.
Definition: TRGECLTMMPara.h:30
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TRGECLTMMPara::getFPGAversion
int getFPGAversion() const
Get FPGAversion.
Definition: TRGECLTMMPara.h:45
Belle2::TRGECLTMMPara::m_FPGAversion
int m_FPGAversion
FPGAversion.
Definition: TRGECLTMMPara.h:52
Belle2::TRGECLTMMPara
Raw TC result nefor digitizing.
Definition: TRGECLTMMPara.h:26