BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootEventData/include/RootEventData/TRecEvTime.h
Go to the documentation of this file.
1#ifndef RootEventData_TRecEvTime_H
2#define RootEventData_TRecEvTime_H 1
3
4#include "TObject.h"
5#include <vector>
6
7using namespace std;
8
9class TRecEvTime : public TObject {
10
11public:
12 TRecEvTime();
13
15
16 // void Clear(Option_t *option ="");
17
18 // void PrInt_t(Option_t *option="") const;
19
20 // Get
21
22 Int_t status() const { return m_status; }
23 Double_t estime() const { return m_estime; }
24 Double_t quality() const { return m_quality; }
25 // Set
26 void setTest( Double_t estime ) { m_estime = estime; }
27 void setStats( Int_t status ) { m_status = status; }
28 void setQuality( Double_t quality ) { m_quality = quality; }
29
30private:
31 Int_t m_status;
32 Double_t m_estime;
33 Double_t m_quality;
34
35 // vector<MucRecHit> m_vecHits;
36
37 ClassDef( TRecEvTime, 3 )
38};
39
40#endif