forked from WCSim/WCSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWCSimRootGeom.hh
105 lines (74 loc) · 3.52 KB
/
WCSimRootGeom.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#ifndef WCSim_RootGeom
#define WCSim_RootGeom
//////////////////////////////////////////////////////////////////////////
//
// WCSim_RootGeom
//
// This class contains information needed to be passed to reconstruction
// routines. It's just simple right now-- only the bare-bones
// WC info
//////////////////////////////////////////////////////////////////////////
#include "TObject.h"
#include "TClonesArray.h"
class TDirectory;
//////////////////////////////////////////////////////////////////////////
class WCSimRootPMT : public TObject {
private:
Int_t fTubeNo;
Int_t fCylLoc; // endcap1, wall, endcap2
Float_t fOrientation[3];
Float_t fPosition[3];
public:
WCSimRootPMT();
WCSimRootPMT(Int_t tubeNo, Int_t cylLoc, Float_t orientation[3], Float_t position[3]);
virtual ~WCSimRootPMT();
void SetTubeNo(Int_t i) {fTubeNo=i;}
void SetCylLoc(Int_t i) {fCylLoc=i;}
void SetOrientation(Int_t i, Float_t f) {fOrientation[i]= ( (i<3) ? f : 0);}
void SetPosition(Int_t i, Float_t f) {fPosition[i]= ( (i<3) ? f : 0);}
Int_t GetTubeNo() const {return fTubeNo;}
Int_t GetCylLoc() const {return fCylLoc;}
Float_t GetOrientation(Int_t i=0) {return (i<3) ? fOrientation[i] : 0;}
Float_t GetPosition(Int_t i=0) {return (i<3) ? fPosition[i] : 0;}
ClassDef(WCSimRootPMT,1) //WCSimPMT structure
};
//////////////////////////////////////////////////////////////////////////
class WCSimRootGeom : public TObject {
private:
static const Int_t maxNumPMT = 40000;
Float_t fWCCylRadius; // Radius of WC tank
Float_t fWCCylLength; // Length of WC tank
Int_t fgeo_type; // mailbox or cylinder?
Float_t fWCPMTRadius; // Radius of PMT
Int_t fWCNumPMT; // Number of PMTs
Float_t fWCOffset[3]; // Offset of barrel center in global coords
Int_t fOrientation; //Orientation o detector, 0 is 2km horizontal, 1 is Upright
// Could make a TClonesArray of PMTs but let's keep it simple
// since the arrays just won't be that large
//WCSimRootPMT fPMTArray[maxNumPMT]; // Array of PMTs
TClonesArray *fPMTArray;
public:
WCSimRootGeom();
virtual ~WCSimRootGeom();
// Sets and gets
void SetWCCylRadius(Float_t f) {fWCCylRadius=f;}
void SetWCCylLength(Float_t f) {fWCCylLength=f;}
void SetGeo_Type(Int_t f){fgeo_type = f;}
void SetWCNumPMT(Int_t i) {fWCNumPMT= i;}
void SetWCPMTRadius(Float_t f) {fWCPMTRadius = f;}
void SetWCOffset(Float_t x, Float_t y, Float_t z)
{fWCOffset[0]=x; fWCOffset[1]=y; fWCOffset[2] = z;}
void SetPMT(Int_t i, Int_t tubeno, Int_t cyl_loc, Float_t rot[3], Float_t pos[3], bool expand=true);
void SetOrientation(Int_t o) {fOrientation = o;}
Float_t GetWCCylRadius() const {return fWCCylRadius;}
Float_t GetWCCylLength() const {return fWCCylLength;}
Int_t GetGeo_Type() const {return fgeo_type;}
Int_t GetWCNumPMT() const {return fWCNumPMT;}
Float_t GetWCPMTRadius() const {return fWCPMTRadius;}
Float_t GetWCOffset(Int_t i) const {return (i<3) ? fWCOffset[i] : 0.;}
Int_t GetOrientation() { return fOrientation; }
//WCSimRootPMT GetPMT(Int_t i){return *(new WCSimRootPMT());}
WCSimRootPMT GetPMT(Int_t i){return *(WCSimRootPMT*)(*fPMTArray)[i];}
ClassDef(WCSimRootGeom,1) //WCSimRootEvent structure
};
#endif