BmnRoot
Loading...
Searching...
No Matches
BmnSyncDigit.h
Go to the documentation of this file.
1#ifndef BMNSyncDIGIT_H
2#define BMNSyncDIGIT_H
3
4#include "TNamed.h"
5
6using namespace std;
7
8class BmnSyncDigit : public TObject {
9public:
10
13
15 BmnSyncDigit(UInt_t iSerial, Long64_t iEvent, Long64_t t_sec, Long64_t t_ns);
16
17 UInt_t GetSerial() const {
18 return fSerial;
19 }
20
21 Long64_t GetEvent() const {
22 return fGlobalEvent;
23 }
24
25 Long64_t GetTime_sec()const {
26 return fT_sec;
27 }
28
29 Long64_t GetTime_ns() const {
30 return fT_ns;
31 }
32
34 virtual ~BmnSyncDigit();
35
36 //private:
37 UInt_t fSerial;
38 Long64_t fGlobalEvent;
39 Long64_t fT_sec;
40 Long64_t fT_ns;
42};
43
44#endif /* BMNSyncDIGIT_H */
45
virtual ~BmnSyncDigit()
UInt_t GetSerial() const
Long64_t GetTime_sec() const
Long64_t GetTime_ns() const
Long64_t fT_ns
ClassDef(BmnSyncDigit, 1)
BmnSyncDigit(UInt_t iSerial, Long64_t iEvent, Long64_t t_sec, Long64_t t_ns)
Long64_t fGlobalEvent
Long64_t GetEvent() const
Long64_t fT_sec
STL namespace.