BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootEventData/include/RootEventData/TDstHltInf.h
Go to the documentation of this file.
1#ifndef RootEventData_TDstHltInf_H
2#define RootEventData_TDstHltInf_H 1
3
4#include "TObject.h"
5#include <vector>
6
7// using namespace std;
8
9class TDstHltInf : public TObject {
10
11public:
12 TDstHltInf();
14
15 void setEventType( const Int_t i ) { m_evtType = i; }
16 void setAlgProcess( const Int_t i ) { m_algProcess = i; }
17 void setCriteriaTable( const Int_t i ) { m_criTable = i; }
18 void setVersion( const Int_t i ) { m_verNumber = i; }
19 void setTotalEnergy( const Double_t etot ) { m_eTotal = etot; }
20 void setNumber( const Int_t i ) { m_subNumber = i; }
21 void setNCON( const Int_t i ) { m_conNumber = i; }
22
23 Int_t getEventType() const { return m_evtType; }
24 Int_t getAlgProcess() const { return m_algProcess; }
25 Int_t getCriteriaTable() const { return m_criTable; }
26 Int_t getVersion() const { return m_verNumber; }
27 Double_t getTotalEnergy() const { return m_eTotal; }
28 Int_t getNumber() const { return m_subNumber; }
29 Int_t getNCON() const { return m_conNumber; }
30
31private:
32 Int_t m_evtType;
33 Int_t m_algProcess;
34 Int_t m_criTable;
35 Int_t m_verNumber;
36 Double_t m_eTotal;
37 Int_t m_subNumber;
38 Int_t m_conNumber;
39
40 ClassDef( TDstHltInf, 2 )
41};
42
43#endif // TrackRootData_TDstHltInf_H
Double_t etot