forked from JeffersonLab/EVe_HallC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScintPlane.cxx
154 lines (117 loc) · 3.98 KB
/
ScintPlane.cxx
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
///////////////////////////////////////
/* ScintPlane.cxx 6/17/14
Ben Davis-Purcell
Class that creates an array of ScintillationPaddles to create a plane
*/
///////////////////////////////////////
#include "ScintPlane.h"
#include "TMath.h"
#include <cstring>
#include <cstdio>
#include <iostream>
using namespace std;
ScintPlane::ScintPlane(char* SplaneName, GetVariables* DB, CStransform *trans)
{
splaneName = SplaneName;
// Setup size and number of paddles, converting plenth & pheight [m] into pixels
cst = trans;
// Get Values used in construct n paddles for a single ScintPlane
int numPMT = DB->GetInt("Number of paddle PMTs =");
N = DB-> GetInt(Form("%s.PN =",splaneName));
paddle_length = DB ->GetDouble(Form("%s.PaddleLength =",splaneName))/100.0;
paddle_height = DB ->GetDouble(Form("%s.PaddleHeight =",splaneName))/100.0;
double PMTlength = DB -> GetDouble ("PMTlength =");
double PMTl = cst->transLtoCL(PMTlength);
angle = DB -> GetDouble(Form("%s.angle =",splaneName));
cerr << "Angle for " << splaneName << " is " << angle;
//below calculate and draw all paddles for a single scintplane
// sx0,sy0 is the coordinate of the sicntplane in canvas
sx0 = cst->transXtoCX(0.0); ;
sy0 = cst->transYtoCY(0.0); ;
// cx0,cy0 is the coordinate of the lower left corner of the 1st paddle
double cx0= - cst->transLtoCL(paddle_length/2.0);
double cy0= cst->transLtoCL(paddle_height*(N)/2.0 - paddle_height);
double CL = cst->transLtoCL(paddle_length);
double CH = cst->transLtoCL(paddle_height);
//Consider sxpaddle length is different from sypaddle length
sa = CL;
sb = CH;
for (int i=0; i<N ; i++) {
paddle[i]=new ScintillatorPaddle(i, sx0, sy0, sa ,sb ,cx0,cy0-i*CH, numPMT, PMTl,angle);
}
title = new TLatex(sx0-0.1*sa, sy0-9.5*sb, splaneName);
title->SetTextSize(0.03);
title->Draw();
for(int i = 0; i<MAX_TRACK_NUM; i++)
track_circ[i] = new TEllipse(0,0,0);
cout<<"Scintillation Plane is created!"<<endl;
}
ScintPlane::~ScintPlane()
{
// Destructor
}
/// NEW hit method used for tdchits. Needs to be implemented in ScintPlane3D
void ScintPlane::paddleLeftHit(int padn)
{
if(padn<0) cerr << "Negative paddle index" << padn <<" \n";
else
paddle[padn]->HitLeft();
}
void ScintPlane::paddleRightHit(int pad)
{
if(pad<0) cerr << "Negative paddle index" << pad <<" \n";
else
paddle[pad]->HitRight();
}
void ScintPlane::paddleBothHit(int pad)
{
if(pad<0) {
cerr << "Negative paddle index" << pad <<" \n";
} else {
paddle[pad]->HitLeft();
paddle[pad]->HitRight();
paddle[pad]->HitPaddle();
}
}
void ScintPlane::clear()
{
for(int i = 0; i<N; i++) {
paddle[i]->clear();
}
for(int i=0; i<MAX_TRACK_NUM; i++) {
track_circ[i]->SetX1(0.0);
track_circ[i]->SetY1(0.0);
track_circ[i]->SetR1(0.0);
track_circ[i]->SetR2(0.0);
track_circ[i]->SetFillColor(kWhite);
track_circ[i]->Draw();
//delete track_index[i];
}
}
/// Track function draws track circle to indicate particle position at scintplane
void ScintPlane::Track(double x, double y, int i)
{
double CX = cst->transXtoCX(x);
double CY = cst->transYtoCY(y);
track_circ[i]->SetX1(CX);
track_circ[i]->SetY1(CY);
track_circ[i]->SetR1(0.008);
track_circ[i]->SetR2(0.008);
track_circ[i]->SetLineColor(1+i);
track_circ[i]->SetLineWidth(2);
track_circ[i]->Draw();
}
void ScintPlane::SPHit(int NumL, int NumR, double poshit[], double neghit[])
{
for (int rh=0; rh<NumL; rh++) {
paddleRightHit(poshit[rh]-1);
}
for (int lh=0; lh<NumR; lh++) {
paddleLeftHit(neghit[lh]-1);
}
for (int rh=0; rh<NumR; rh++) {
for (int lh=0; lh<NumL; lh++) {
if(poshit[lh]==neghit[rh]) paddleBothHit(poshit[lh]-1);
}
}
}