-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnaObject.hh
More file actions
59 lines (49 loc) · 1.08 KB
/
AnaObject.hh
File metadata and controls
59 lines (49 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef __DATA_MODEL_HH__
#define __DATA_MODEL_HH__
#include "TObject.h"
class AnaBuffer;
class AnaObject : public TObject{
public:
int site;
int detectorid;
int run;
int file;
int status;
float file_start;
float rawfiletime;
float integralruntime;
float integrallivetimeblocked;
float integrallivetimebuffer;
float triggercounts;
float flashercounts;
float muoncounts;
float ibdcounts;
float spncounts;
float blocktrigcounts;
float plikecounts;
float nlikecounts;
float dtnegcounts;
float dtlargegapcounts;
float nhitcountsgt;
float esumcountsgt;
float randomcounts;
float nhitcounts;
float esumcounts;
float admuoncounts;
float muonnhit;
float muonnhiterr;
float muonpesum;
float muonpesumerr;
float spnenergy;
float spnenergysigma;
float k40energy;
float k40energyerr;
float tl208energy;
float tl208energyerr;
private:
// only AnaBuffer can delete AnaObject
~AnaObject(){}
friend class AnaBuffer;
ClassDef(AnaObject, 1);
};
#endif