forked from WCSim/WCSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWCSimPmtInfo.hh
44 lines (34 loc) · 1002 Bytes
/
WCSimPmtInfo.hh
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
#ifndef WCSim_PmtInfo
#define WCSim_PmtInfo
/////////////////////////////////////////////////////////////////
//
// Save the Pmt info
//
/////////////////////////////////////////////////////////////////
#include "TObject.h"
class TDirectory;
class WCSimPmtInfo : public TObject {
private:
Int_t cylocation;
Double_t trans_x;
Double_t trans_y;
Double_t trans_z;
Double_t orien_x;
Double_t orien_y;
Double_t orien_z;
Int_t tube;
public:
WCSimPmtInfo();
WCSimPmtInfo(Int_t i, Double_t t1, Double_t t2, Double_t t3, Double_t o1, Double_t o2, Double_t o3, Int_t tubeid);
virtual ~WCSimPmtInfo();
Int_t Get_cylocation(){return cylocation;}
Double_t Get_transx() {return trans_x;}
Double_t Get_transy() {return trans_y;}
Double_t Get_transz() {return trans_z;}
Double_t Get_orienx() {return orien_x;}
Double_t Get_orieny() {return orien_y;}
Double_t Get_orienz() {return orien_z;}
Int_t Get_tubeid(){return tube;}
ClassDef(WCSimPmtInfo,1);
};
#endif