Belle II Software development
TRGECLUnpackerStore Class Reference

Example Detector. More...

#include <TRGECLUnpackerStore.h>

Inheritance diagram for TRGECLUnpackerStore:

Public Member Functions

void setEventId (int eventId)
 The method to set event id.
 
void setTCId (int TCId)
 The method to set cell id.
 
void setTCTime (int TCT)
 The method to set hit time.
 
void setTCCALTime (int TCCALT)
 The method to set cal timing.
 
void setHitWin (int HitWin)
 The method to set Hit window.
 
void setRevoFAM (int RevoFAM)
 The method to set revo clock of FAM.
 
void setTCEnergy (int TCE)
 The method to set deposited energy.
 
void setChecksum (int checksum)
 The method to set checksum flag.
 
int getEventId () const
 The method to get event id.
 
int getTCId () const
 The method to get cell id.
 
int getTCTime () const
 The method to get hit average time.
 
int getTCCALTime () const
 The method to get cal timing.
 
int getRevoFAM () const
 The method to get revo clock of FAM.
 
int getHitWin () const
 The method to get Hit Win.
 
int getTCEnergy () const
 The method to get deposited energy.
 
int getChecksum () const
 The method to get checksum flag.
 
 TRGECLUnpackerStore (int eventId, int TCId, int TCT, int TCCALT, int HitWin, int RevoFAM, int TCE, int checksum)
 Useful Constructor.
 
 ClassDef (TRGECLUnpackerStore, 2)
 the class title
 

Public Attributes

int m_eventId
 The evt id of this hit.
 
int m_tcid
 The Hitted TC id.
 
int m_time
 The Total Timing of hitted TC.
 
int m_caltime
 The Timing of TRG Timing.
 
int m_hit_win
 The window of hit.
 
int m_revo_fam
 The revo clk of FAM.
 
int m_energy
 The Energy of hitted TC.
 
int m_checksum
 The checksum flag.
 

Detailed Description

Example Detector.

Definition at line 21 of file TRGECLUnpackerStore.h.

Constructor & Destructor Documentation

◆ TRGECLUnpackerStore() [1/2]

TRGECLUnpackerStore ( )
inline

Definition at line 98 of file TRGECLUnpackerStore.h.

99 {
100 m_eventId = 0;
101 m_tcid = 0;
102 m_time = 0;
103 m_caltime = 0;
104 m_hit_win = 0;
105 m_revo_fam = 0;
106 m_energy = 0;
107 m_checksum = 0;
108
109 }
int m_energy
The Energy of hitted TC.
int m_caltime
The Timing of TRG Timing.
int m_checksum
The checksum flag.
int m_eventId
The evt id of this hit.
int m_hit_win
The window of hit.
int m_time
The Total Timing of hitted TC.
int m_revo_fam
The revo clk of FAM.

◆ TRGECLUnpackerStore() [2/2]

TRGECLUnpackerStore ( int  eventId,
int  TCId,
int  TCT,
int  TCCALT,
int  HitWin,
int  RevoFAM,
int  TCE,
int  checksum 
)
inline

Useful Constructor.

Definition at line 112 of file TRGECLUnpackerStore.h.

122 {
123 m_eventId = eventId;
124 m_tcid = TCId;
125 m_time = TCT;
126 m_caltime = TCCALT;
127 m_hit_win = HitWin;
128 m_revo_fam = RevoFAM;
129 m_energy = TCE;
130 m_checksum = checksum;
131 }

Member Function Documentation

◆ getChecksum()

int getChecksum ( ) const
inline

The method to get checksum flag.

Definition at line 94 of file TRGECLUnpackerStore.h.

94{return m_checksum;}

◆ getEventId()

int getEventId ( ) const
inline

The method to get event id.

Definition at line 73 of file TRGECLUnpackerStore.h.

73{ return m_eventId;}

◆ getHitWin()

int getHitWin ( ) const
inline

The method to get Hit Win.

Definition at line 88 of file TRGECLUnpackerStore.h.

88{return m_hit_win;}

◆ getRevoFAM()

int getRevoFAM ( ) const
inline

The method to get revo clock of FAM.

Definition at line 85 of file TRGECLUnpackerStore.h.

85{return m_revo_fam;}

◆ getTCCALTime()

int getTCCALTime ( ) const
inline

The method to get cal timing.

Definition at line 82 of file TRGECLUnpackerStore.h.

82{return m_caltime;}

◆ getTCEnergy()

int getTCEnergy ( ) const
inline

The method to get deposited energy.

Definition at line 91 of file TRGECLUnpackerStore.h.

91{ return m_energy;}

◆ getTCId()

int getTCId ( ) const
inline

The method to get cell id.

Definition at line 76 of file TRGECLUnpackerStore.h.

76{ return m_tcid;}

◆ getTCTime()

int getTCTime ( ) const
inline

The method to get hit average time.

Definition at line 79 of file TRGECLUnpackerStore.h.

79{return m_time;}

◆ setChecksum()

void setChecksum ( int  checksum)
inline

The method to set checksum flag.

Definition at line 70 of file TRGECLUnpackerStore.h.

70{ m_checksum = checksum;}

◆ setEventId()

void setEventId ( int  eventId)
inline

The method to set event id.

Definition at line 49 of file TRGECLUnpackerStore.h.

49{ m_eventId = eventId;}

◆ setHitWin()

void setHitWin ( int  HitWin)
inline

The method to set Hit window.

Definition at line 61 of file TRGECLUnpackerStore.h.

61{ m_hit_win = HitWin;}

◆ setRevoFAM()

void setRevoFAM ( int  RevoFAM)
inline

The method to set revo clock of FAM.

Definition at line 64 of file TRGECLUnpackerStore.h.

64{ m_revo_fam = RevoFAM;}

◆ setTCCALTime()

void setTCCALTime ( int  TCCALT)
inline

The method to set cal timing.

Definition at line 58 of file TRGECLUnpackerStore.h.

58{ m_caltime = TCCALT;}

◆ setTCEnergy()

void setTCEnergy ( int  TCE)
inline

The method to set deposited energy.

Definition at line 67 of file TRGECLUnpackerStore.h.

67{ m_energy = TCE;}

◆ setTCId()

void setTCId ( int  TCId)
inline

The method to set cell id.

Definition at line 52 of file TRGECLUnpackerStore.h.

52{ m_tcid = TCId;}

◆ setTCTime()

void setTCTime ( int  TCT)
inline

The method to set hit time.

Definition at line 55 of file TRGECLUnpackerStore.h.

55{ m_time = TCT;}

Member Data Documentation

◆ m_caltime

int m_caltime

The Timing of TRG Timing.

Definition at line 34 of file TRGECLUnpackerStore.h.

◆ m_checksum

int m_checksum

The checksum flag.

Definition at line 46 of file TRGECLUnpackerStore.h.

◆ m_energy

int m_energy

The Energy of hitted TC.

Definition at line 43 of file TRGECLUnpackerStore.h.

◆ m_eventId

int m_eventId

The evt id of this hit.

Definition at line 25 of file TRGECLUnpackerStore.h.

◆ m_hit_win

int m_hit_win

The window of hit.

Definition at line 37 of file TRGECLUnpackerStore.h.

◆ m_revo_fam

int m_revo_fam

The revo clk of FAM.

Definition at line 40 of file TRGECLUnpackerStore.h.

◆ m_tcid

int m_tcid

The Hitted TC id.

Definition at line 28 of file TRGECLUnpackerStore.h.

◆ m_time

int m_time

The Total Timing of hitted TC.

Definition at line 31 of file TRGECLUnpackerStore.h.


The documentation for this class was generated from the following file: