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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
#include "Geometry/TrackerGeometryBuilder/interface/RectangularPixelTopology.h"
/**
* Topology for rectangular pixel detector with BIG pixels.
*/
// Modified for the large pixles.
// Danek Kotlinski & Michele Pioppi, 3/06.
// See documentation in the include file.
//--------------------------------------------------------------------
// PixelTopology interface.
// Transform LocalPoint in cm to measurement in pitch units.
std::pair<float, float> RectangularPixelTopology::pixel(const LocalPoint& p) const {
// check limits
float py = p.y();
float px = p.x();
#ifdef EDM_ML_DEBUG
#define EPSCM 0
#define EPS 0
// This will catch points which are outside the active sensor area.
// In the digitizer during the early induce_signal phase non valid
// location are passed here. They are cleaned later.
std::ostringstream debugstr;
debugstr << "py = " << py << ", m_yoffset = " << m_yoffset << "px = " << px << ", m_xoffset = " << m_xoffset << "\n";
if (py < m_yoffset) // m_yoffset is negative
{
debugstr << " wrong lp y " << py << " " << m_yoffset << "\n";
py = m_yoffset + EPSCM; // make sure it is in, add an EPS in cm
}
if (py > -m_yoffset) {
debugstr << " wrong lp y " << py << " " << -m_yoffset << "\n";
py = -m_yoffset - EPSCM;
}
if (px < m_xoffset) // m_xoffset is negative
{
debugstr << " wrong lp x " << px << " " << m_xoffset << "\n";
px = m_xoffset + EPSCM;
}
if (px > -m_xoffset) {
debugstr << " wrong lp x " << px << " " << -m_xoffset << "\n";
px = -m_xoffset - EPSCM;
}
if (!debugstr.str().empty())
LogDebug("RectangularPixelTopology") << debugstr.str();
#endif // EDM_ML_DEBUG
float newybin = (py - m_yoffset) / m_pitchy;
int iybin = int(newybin);
float fractionY = newybin - iybin;
// Normalize it all to 1 ROC
int iybin0 = 0;
int numROC = 0;
float mpY = 0.;
iybin0 = (iybin % 54); // 0-53
numROC = iybin / 54; // 0-7
if (iybin0 == 53) { // inside big pixel
iybin0 = 51;
fractionY = (fractionY + 1.) / 2.;
} else if (iybin0 == 52) { // inside big pixel
iybin0 = 51;
fractionY = fractionY / 2.;
} else if (iybin0 > 1) { // inside normal pixel
iybin0 = iybin0 - 1;
} else if (iybin0 == 1) { // inside big pixel
iybin0 = 0;
fractionY = (fractionY + 1.) / 2.;
} else if (iybin0 == 0) { // inside big pixel
iybin0 = 0;
fractionY = fractionY / 2.;
}
mpY = float(numROC * 52. + iybin0) + fractionY;
#ifdef EDM_ML_DEBUG
if (mpY < 0. || mpY >= 416.) {
LogDebug("RectangularPixelTopology") << " bad pix y " << mpY << "\n"
<< py << " " << m_yoffset << " " << m_pitchy << " " << newybin << " " << iybin
<< " " << fractionY << " " << iybin0 << " " << numROC;
}
#endif // EDM_ML_DEBUG
// In X
float newxbin = (px - m_xoffset) / m_pitchx;
int ixbin = int(newxbin);
float fractionX = newxbin - ixbin;
#ifdef EDM_ML_DEBUG
if (ixbin > 161 || ixbin < 0) // ixbin < 0 outside range
{
LogDebug("RectangularPixelTopology") << " very bad, newbinx " << ixbin << "\n"
<< px << " " << m_xoffset << " " << m_pitchx << " " << newxbin << " " << ixbin
<< " " << fractionX;
}
#endif // EDM_ML_DEBUG
if (ixbin > 82) { // inside normal pixel, ROC 1
ixbin = ixbin - 2;
} else if (ixbin == 82) { // inside bin pixel
ixbin = 80;
fractionX = (fractionX + 1.) / 2.;
} else if (ixbin == 81) { // inside big pixel
ixbin = 80;
fractionX = fractionX / 2.;
} else if (ixbin == 80) { // inside bin pixel, ROC 0
ixbin = 79;
fractionX = (fractionX + 1.) / 2.;
} else if (ixbin == 79) { // inside big pixel
ixbin = 79;
fractionX = fractionX / 2.;
}
float mpX = float(ixbin) + fractionX;
#ifdef EDM_ML_DEBUG
if (mpX < 0. || mpX >= 160.) {
LogDebug("RectangularPixelTopology") << " bad pix x " << mpX << "\n"
<< px << " " << m_xoffset << " " << m_pitchx << " " << newxbin << " " << ixbin
<< " " << fractionX;
}
#endif // EDM_ML_DEBUG
return std::pair<float, float>(mpX, mpY);
}
//----------------------------------------------------------------------
// Topology interface, go from Masurement to Local corrdinates
// pixel coordinates (mp) -> cm (LocalPoint)
LocalPoint RectangularPixelTopology::localPosition(const MeasurementPoint& mp) const {
float mpy = mp.y(); // measurements
float mpx = mp.x();
#ifdef EDM_ML_DEBUG
#define EPS 0
// check limits
std::ostringstream debugstr;
if (mpy < 0.) {
debugstr << " wrong mp y, fix " << mpy << " " << 0 << "\n";
mpy = 0.;
}
if (mpy >= m_ncols) {
debugstr << " wrong mp y, fix " << mpy << " " << m_ncols << "\n";
mpy = float(m_ncols) - EPS; // EPS is a small number
}
if (mpx < 0.) {
debugstr << " wrong mp x, fix " << mpx << " " << 0 << "\n";
mpx = 0.;
}
if (mpx >= m_nrows) {
debugstr << " wrong mp x, fix " << mpx << " " << m_nrows << "\n";
mpx = float(m_nrows) - EPS; // EPS is a small number
}
if (!debugstr.str().empty())
LogDebug("RectangularPixelTopology") << debugstr.str();
#endif // EDM_ML_DEBUG
float lpY = localY(mpy);
float lpX = localX(mpx);
// Return it as a LocalPoint
return LocalPoint(lpX, lpY);
}
//--------------------------------------------------------------------
//
// measuremet to local transformation for X coordinate
// X coordinate is in the ROC row number direction
float RectangularPixelTopology::localX(const float mpx) const {
int binoffx = int(mpx); // truncate to int
float fractionX = mpx - float(binoffx); // find the fraction
float local_pitchx = m_pitchx; // defaultpitch
if (binoffx > 80) { // ROC 1 - handles x on edge cluster
binoffx = binoffx + 2;
} else if (binoffx == 80) { // ROC 1
binoffx = binoffx + 1;
local_pitchx *= 2;
} else if (binoffx == 79) { // ROC 0
binoffx = binoffx + 0;
local_pitchx *= 2;
}
// else if (binoffx>=0) { // ROC 0
// binoffx=binoffx+0;
// }
#ifdef EDM_ML_DEBUG
if (binoffx < 0) // too small
LogDebug("RectangularPixelTopology") << " very bad, binx " << binoffx << "\n"
<< mpx << " " << binoffx << " " << fractionX << " " << local_pitchx << " "
<< m_xoffset;
#endif
// The final position in local coordinates
float lpX = float(binoffx * m_pitchx) + fractionX * local_pitchx + m_xoffset;
#ifdef EDM_ML_DEBUG
if (lpX < m_xoffset || lpX > (-m_xoffset)) {
LogDebug("RectangularPixelTopology") << " bad lp x " << lpX << "\n"
<< mpx << " " << binoffx << " " << fractionX << " " << local_pitchx << " "
<< m_xoffset;
}
#endif // EDM_ML_DEBUG
return lpX;
}
// measuremet to local transformation for Y coordinate
// Y is in the ROC column number direction
float RectangularPixelTopology::localY(const float mpy) const {
int binoffy = int(mpy); // truncate to int
float fractionY = mpy - float(binoffy); // find the fraction
float local_pitchy = m_pitchy; // defaultpitch
constexpr int bigYIndeces[]{0, 51, 52, 103, 104, 155, 156, 207, 208, 259, 260, 311, 312, 363, 364, 415, 416, 511};
auto const j = std::lower_bound(std::begin(bigYIndeces), std::end(bigYIndeces), binoffy);
if (*j == binoffy)
local_pitchy *= 2;
binoffy += (j - bigYIndeces);
// The final position in local coordinates
float lpY = float(binoffy * m_pitchy) + fractionY * local_pitchy + m_yoffset;
#ifdef EDM_ML_DEBUG
if (lpY < m_yoffset || lpY > (-m_yoffset)) {
LogDebug("RectangularPixelTopology") << " bad lp y " << lpY << "\n"
<< mpy << " " << binoffy << " " << fractionY << " " << local_pitchy << " "
<< m_yoffset;
}
#endif // EDM_ML_DEBUG
return lpY;
}
///////////////////////////////////////////////////////////////////
// Get hit errors in LocalPoint coordinates (cm)
LocalError RectangularPixelTopology::localError(const MeasurementPoint& mp, const MeasurementError& me) const {
float pitchy = m_pitchy;
int binoffy = int(mp.y());
if (isItBigPixelInY(binoffy))
pitchy = 2. * m_pitchy;
float pitchx = m_pitchx;
int binoffx = int(mp.x());
if (isItBigPixelInX(binoffx))
pitchx = 2. * m_pitchx;
return LocalError(me.uu() * float(pitchx * pitchx), 0, me.vv() * float(pitchy * pitchy));
}
/////////////////////////////////////////////////////////////////////
// Get errors in pixel pitch units.
MeasurementError RectangularPixelTopology::measurementError(const LocalPoint& lp, const LocalError& le) const {
float pitchy = m_pitchy;
float pitchx = m_pitchx;
int iybin = int((lp.y() - m_yoffset) / m_pitchy); //get bin for equal picth
int iybin0 = iybin % 54; //This is just to avoid many ifs by using the periodicy
//quasi bins 0,1,52,53 fall into larger pixels
if ((iybin0 <= 1) | (iybin0 >= 52))
pitchy = 2.f * m_pitchy;
int ixbin = int((lp.x() - m_xoffset) / m_pitchx); //get bin for equal pitch
//quasi bins 79,80,81,82 fall into the 2 larger pixels
if ((ixbin >= 79) & (ixbin <= 82))
pitchx = 2.f * m_pitchx;
return MeasurementError(le.xx() / float(pitchx * pitchx), 0, le.yy() / float(pitchy * pitchy));
}
|