BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
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
15
16 void setEventType(const Int_t i) { m_evtType = i; }
17 void setAlgProcess(const Int_t i) { m_algProcess=i; }
18 void setCriteriaTable(const Int_t i) { m_criTable =i; }
19 void setVersion(const Int_t i) { m_verNumber =i; }
20 void setTotalEnergy(const Double_t etot) { m_eTotal =etot; }
21 void setNumber(const Int_t i) { m_subNumber =i; }
22 void setNCON(const Int_t i) { m_conNumber =i; }
23
24 Int_t getEventType() const { return m_evtType; }
25 Int_t getAlgProcess() const { return m_algProcess; }
26 Int_t getCriteriaTable()const { return m_criTable; }
27 Int_t getVersion() const { return m_verNumber; }
28 Double_t getTotalEnergy() const { return m_eTotal; }
29 Int_t getNumber() const { return m_subNumber; }
30 Int_t getNCON() const { return m_conNumber; }
31
32private:
33 Int_t m_evtType;
34 Int_t m_algProcess;
35 Int_t m_criTable;
36 Int_t m_verNumber;
37 Double_t m_eTotal;
38 Int_t m_subNumber;
39 Int_t m_conNumber;
40
41 ClassDef(TDstHltInf,2)
42};
43
44#endif //TrackRootData_TDstHltInf_H
Double_t etot
void setNCON(const Int_t i)
Definition TDstHltInf.h:22
void setVersion(const Int_t i)
Definition TDstHltInf.h:19
void setNumber(const Int_t i)
Definition TDstHltInf.h:21
Int_t getAlgProcess() const
Definition TDstHltInf.h:25
Int_t getVersion() const
Definition TDstHltInf.h:27
void setTotalEnergy(const Double_t etot)
Definition TDstHltInf.h:20
Double_t getTotalEnergy() const
Definition TDstHltInf.h:28
Int_t getEventType() const
Definition TDstHltInf.h:24
Int_t getNumber() const
Definition TDstHltInf.h:29
void setEventType(const Int_t i)
Definition TDstHltInf.h:16
Int_t getNCON() const
Definition TDstHltInf.h:30
void setCriteriaTable(const Int_t i)
Definition TDstHltInf.h:18
Int_t getCriteriaTable() const
Definition TDstHltInf.h:26
void setAlgProcess(const Int_t i)
Definition TDstHltInf.h:17