34864fb018a6ce94a1ba63bd1cb2904777226614
[ctsim.git] / libctsim / scanner.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          scanner.cpp
5 **   Purpose:       Classes for CT scanner
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  1984
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2009 Kevin Rosenberg
11 **
12 **  This program is free software; you can redistribute it and/or modify
13 **  it under the terms of the GNU General Public License (version 2) as
14 **  published by the Free Software Foundation.
15 **
16 **  This program is distributed in the hope that it will be useful,
17 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 **  GNU General Public License for more details.
20 **
21 **  You should have received a copy of the GNU General Public License
22 **  along with this program; if not, write to the Free Software
23 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 ******************************************************************************/
25
26 #include "ct.h"
27
28
29 const int Scanner::GEOMETRY_INVALID = -1;
30 const int Scanner::GEOMETRY_PARALLEL = 0;
31 const int Scanner::GEOMETRY_EQUIANGULAR = 1;
32 const int Scanner::GEOMETRY_EQUILINEAR = 2;
33 const int Scanner::GEOMETRY_LINOGRAM = 3;
34
35 const char* const Scanner::s_aszGeometryName[] =
36 {
37   "parallel",
38   "equiangular",
39   "equilinear",
40   "linogram",
41 };
42
43 const char* const Scanner::s_aszGeometryTitle[] =
44 {
45   "Parallel",
46   "Equiangular",
47   "Equilinear",
48   "Linogram",
49 };
50
51 const int Scanner::s_iGeometryCount = sizeof(s_aszGeometryName) / sizeof(const char*);
52
53
54 // NAME
55 //   DetectorArray       Construct a DetectorArray
56
57 DetectorArray::DetectorArray (const int nDet)
58 {
59   m_nDet = nDet;
60   m_detValues = new DetectorValue [m_nDet];
61 }
62
63
64 // NAME
65 //   ~DetectorArray             Free memory allocated to a detector array
66
67 DetectorArray::~DetectorArray (void)
68 {
69   delete [] m_detValues;
70 }
71
72
73
74 /* NAME
75 *   Scanner::Scanner            Construct a user specified detector structure
76 *
77 * SYNOPSIS
78 *   Scanner (phm, nDet, nView, nSample)
79 *   Phantom& phm                PHANTOM that we are making detector for
80 *   int geomety                Geometry of detector
81 *   int nDet                    Number of detector along detector array
82 *   int nView                   Number of rotated views
83 *   int nSample         Number of rays per detector
84 */
85
86 Scanner::Scanner (const Phantom& phm, const char* const geometryName,
87                   int nDet, int nView, int offsetView,
88                                   int nSample, const double rot_anglen,
89                   const double dFocalLengthRatio,
90                                   const double dCenterDetectorRatio,
91                   const double dViewRatio, const double dScanRatio)
92 {
93   m_fail = false;
94   m_idGeometry = convertGeometryNameToID (geometryName);
95   if (m_idGeometry == GEOMETRY_INVALID) {
96     m_fail = true;
97     m_failMessage = "Invalid geometry name ";
98     m_failMessage += geometryName;
99     return;
100   }
101
102   if (nView < 1 || nDet < 1) {
103     m_fail = true;
104     m_failMessage = "nView & nDet must be greater than 0";
105     return;
106   }
107   if (nSample < 1)
108     m_nSample = 1;
109
110   m_nDet     = nDet;
111   m_nView    = nView;
112   m_iOffsetView = offsetView;
113   m_nSample  = nSample;
114   m_dFocalLengthRatio = dFocalLengthRatio;
115   m_dCenterDetectorRatio = dCenterDetectorRatio;
116   m_dViewRatio = dViewRatio;
117   m_dScanRatio = dScanRatio;
118
119   m_dViewDiameter = phm.getDiameterBoundaryCircle() * m_dViewRatio;
120   m_dFocalLength = (m_dViewDiameter / 2) * m_dFocalLengthRatio;
121   m_dCenterDetectorLength = (m_dViewDiameter / 2) * m_dCenterDetectorRatio;
122   m_dSourceDetectorLength = m_dFocalLength + m_dCenterDetectorLength;
123   m_dScanDiameter = m_dViewDiameter * m_dScanRatio;
124
125   m_dXCenter = phm.xmin() + (phm.xmax() - phm.xmin()) / 2;
126   m_dYCenter = phm.ymin() + (phm.ymax() - phm.ymin()) / 2;
127   m_rotLen  = rot_anglen;
128   m_rotInc  = m_rotLen / m_nView;
129   if (m_idGeometry == GEOMETRY_PARALLEL) {
130     m_dFanBeamAngle = 0;
131     m_detLen   = m_dScanDiameter;
132     m_detStart = -m_detLen / 2;
133     m_detInc  = m_detLen / m_nDet;
134     double dDetectorArrayEndOffset = 0;
135     // For even number of detectors, make detInc slightly larger so that center lies
136     // at nDet/2. Also, extend detector array by one detInc so that all of the phantom is scanned
137     if (isEven (m_nDet)) { // Adjust for Even number of detectors
138       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)
139       dDetectorArrayEndOffset = m_detInc;
140     }
141
142     double dHalfDetLen = m_detLen / 2;
143     m_initPos.xs1 = m_dXCenter - dHalfDetLen;
144     m_initPos.ys1 = m_dYCenter + m_dFocalLength;
145     m_initPos.xs2 = m_dXCenter + dHalfDetLen + dDetectorArrayEndOffset;
146     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
147     m_initPos.xd1 = m_dXCenter - dHalfDetLen;
148     m_initPos.yd1 = m_dYCenter - m_dCenterDetectorLength;
149     m_initPos.xd2 = m_dXCenter + dHalfDetLen + dDetectorArrayEndOffset;
150     m_initPos.yd2 = m_dYCenter - m_dCenterDetectorLength;
151     m_initPos.angle = m_iOffsetView * m_rotInc;
152     m_detLen += dDetectorArrayEndOffset;
153   } else if (m_idGeometry == GEOMETRY_EQUILINEAR) {
154   if (m_dScanDiameter / 2 >= m_dFocalLength) {
155       m_fail = true;
156       m_failMessage = "Invalid geometry: Focal length must be larger than scan length";
157       return;
158     }
159
160     const double dAngle = asin ((m_dScanDiameter / 2) / m_dFocalLength);
161     const double dHalfDetLen = m_dSourceDetectorLength * tan (dAngle);
162
163     m_detLen = dHalfDetLen * 2;
164     m_detStart = -dHalfDetLen;
165     m_detInc  = m_detLen / m_nDet;
166     double dDetectorArrayEndOffset = 0;
167     if (isEven (m_nDet)) { // Adjust for Even number of detectors
168       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)
169       dDetectorArrayEndOffset = m_detInc;
170       m_detLen += dDetectorArrayEndOffset;
171     }
172
173     m_dFanBeamAngle = dAngle * 2;
174     m_initPos.xs1 = m_dXCenter;
175     m_initPos.ys1 = m_dYCenter + m_dFocalLength;
176     m_initPos.xs2 = m_dXCenter;
177     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
178     m_initPos.xd1 = m_dXCenter - dHalfDetLen;
179     m_initPos.yd1 = m_dYCenter - m_dCenterDetectorLength;
180     m_initPos.xd2 = m_dXCenter + dHalfDetLen + dDetectorArrayEndOffset;
181     m_initPos.yd2 = m_dYCenter - m_dCenterDetectorLength;
182     m_initPos.angle = m_iOffsetView * m_rotInc;
183   } else if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
184     if (m_dScanDiameter / 2 > m_dFocalLength) {
185       m_fail = true;
186       m_failMessage = "Invalid geometry: Focal length must be larger than scan length";
187       return;
188     }
189     const double dAngle = asin ((m_dScanDiameter / 2) / m_dFocalLength);
190
191     m_detLen = 2 * dAngle;
192     m_detStart = -dAngle;
193     m_detInc = m_detLen / m_nDet;
194     double dDetectorArrayEndOffset = 0;
195     if (isEven (m_nDet)) { // Adjust for Even number of detectors
196       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)
197       dDetectorArrayEndOffset = m_detInc;
198     }
199     // adjust for center-detector length
200     double dA1 = acos ((m_dScanDiameter / 2) / m_dCenterDetectorLength);
201     double dAngularScale = 2 * (HALFPI + dAngle - dA1) / m_detLen;
202
203     m_dAngularDetLen = dAngularScale * (m_detLen + dDetectorArrayEndOffset);
204     m_dAngularDetIncrement = dAngularScale * m_detInc;
205     m_initPos.dAngularDet = -m_dAngularDetLen / 2;
206
207     m_dFanBeamAngle = dAngle * 2;
208     m_initPos.angle = m_iOffsetView * m_rotInc;
209     m_initPos.xs1 = m_dXCenter;
210     m_initPos.ys1 = m_dYCenter + m_dFocalLength;;
211     m_initPos.xs2 = m_dXCenter;
212     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
213     m_detLen += dDetectorArrayEndOffset;
214   }
215
216   // Calculate incrementatal rotation matrix
217   GRFMTX_2D temp;
218   xlat_mtx2 (m_rotmtxIncrement, -m_dXCenter, -m_dYCenter);
219   rot_mtx2 (temp, m_rotInc);
220   mult_mtx2 (m_rotmtxIncrement, temp, m_rotmtxIncrement);
221   xlat_mtx2 (temp, m_dXCenter, m_dYCenter);
222   mult_mtx2 (m_rotmtxIncrement, temp, m_rotmtxIncrement);
223
224 }
225
226 Scanner::~Scanner (void)
227 {
228 }
229
230
231 const char*
232 Scanner::convertGeometryIDToName (const int geomID)
233 {
234   const char *name = "";
235
236   if (geomID >= 0 && geomID < s_iGeometryCount)
237     return (s_aszGeometryName[geomID]);
238
239   return (name);
240 }
241
242 const char*
243 Scanner::convertGeometryIDToTitle (const int geomID)
244 {
245   const char *title = "";
246
247   if (geomID >= 0 && geomID < s_iGeometryCount)
248     return (s_aszGeometryName[geomID]);
249
250   return (title);
251 }
252
253 int
254 Scanner::convertGeometryNameToID (const char* const geomName)
255 {
256   int id = GEOMETRY_INVALID;
257
258   for (int i = 0; i < s_iGeometryCount; i++) {
259     if (strcasecmp (geomName, s_aszGeometryName[i]) == 0) {
260       id = i;
261       break;
262     }
263   }
264   return (id);
265 }
266
267
268 /* NAME
269 *   collectProjections          Calculate projections for a Phantom
270 *
271 * SYNOPSIS
272 *   collectProjections (proj, phm, start_view, nView, bStoreViewPos, trace)
273 *   Projectrions& proj      Projection storage
274 *   Phantom& phm             Phantom for which we collect projections
275 *   bool bStoreViewPos      TRUE then storage proj at normal view position
276 *   int trace                Trace level
277 */
278
279
280 void
281 Scanner::collectProjections (Projections& proj, const Phantom& phm, const int trace, SGP* pSGP)
282 {
283   collectProjections (proj, phm, m_startView, proj.nView(), m_iOffsetView, true, trace, pSGP);
284 }
285
286 void
287 Scanner::collectProjections (Projections& proj, const Phantom& phm, const int iStartView,
288                              const int iNumViews, const int iOffsetView,  bool bStoreAtViewPosition,
289                              const int trace, SGP* pSGP)
290 {
291   int iStorageOffset = (bStoreAtViewPosition ? iStartView : 0);
292   collectProjections (proj, phm, iStartView, iNumViews, iOffsetView, iStorageOffset, trace, pSGP);
293 }
294
295 static void mtx2_offset_rot (GRFMTX_2D m, double angle, double x, double y) {
296   GRFMTX_2D temp;
297   xlat_mtx2 (m, -x, -y);
298   rot_mtx2 (temp, angle);
299   mult_mtx2 (m, temp, m);
300   xlat_mtx2 (temp, x, y);
301   mult_mtx2 (m, temp, m);
302 }
303
304 void
305 Scanner::collectProjections (Projections& proj, const Phantom& phm, const int iStartView,
306                              const int iNumViews, const int iOffsetView, int iStorageOffset,
307                              const int trace, SGP* pSGP)
308 {
309   m_trace = trace;
310   double start_angle = (iStartView + iOffsetView) * proj.rotInc();
311
312 #ifdef HAVE_OPENMP
313   #pragma omp parallel for
314 #endif
315
316   for (int iView = 0;  iView < iNumViews; iView++) {
317     double viewAngle = start_angle + (iView * proj.rotInc());
318
319     // With OpenMP, need to calculate source and detector positions at each view
320     GRFMTX_2D rotmtx;
321     mtx2_offset_rot (rotmtx, viewAngle, m_dXCenter, m_dYCenter);
322     double xd1=0, yd1=0, xd2=0, yd2=0;
323     if (m_idGeometry != GEOMETRY_EQUIANGULAR) {
324       xd1 = m_initPos.xd1; yd1 = m_initPos.yd1;
325       xd2 = m_initPos.xd2; yd2 = m_initPos.yd2;
326       xform_mtx2 (rotmtx, xd1, yd1);      // rotate detector endpoints
327       xform_mtx2 (rotmtx, xd2, yd2);      // to initial view_angle
328     }
329
330     double xs1 = m_initPos.xs1, ys1 = m_initPos.ys1;
331     double xs2 = m_initPos.xs2, ys2 = m_initPos.ys2;
332     xform_mtx2 (rotmtx, xs1, ys1);      // rotate source endpoints to
333     xform_mtx2 (rotmtx, xs2, ys2);      // initial view angle
334
335     int iStoragePosition = iView + iStorageOffset;
336     DetectorArray& detArray = proj.getDetectorArray( iStoragePosition );
337
338 #ifdef HAVE_SGP
339     if (pSGP && m_trace >= Trace::TRACE_PHANTOM) {
340       m_pSGP = pSGP;
341       double dWindowSize = dmax (m_detLen, m_dSourceDetectorLength) * 2;
342       double dHalfWindowSize = dWindowSize / 2;
343       m_dXMinWin = m_dXCenter - dHalfWindowSize;
344       m_dXMaxWin = m_dXCenter + dHalfWindowSize;
345       m_dYMinWin = m_dYCenter - dHalfWindowSize;
346       m_dYMaxWin = m_dYCenter + dHalfWindowSize;
347
348       m_pSGP->setWindow (m_dXMinWin, m_dYMinWin, m_dXMaxWin, m_dYMaxWin);
349       m_pSGP->setRasterOp (RO_COPY);
350
351       m_pSGP->setColor (C_RED);
352       m_pSGP->moveAbs (0., 0.);
353       m_pSGP->drawCircle (m_dViewDiameter / 2);
354
355       m_pSGP->moveAbs (0., 0.);
356       m_pSGP->setColor (C_GREEN);
357       m_pSGP->drawCircle (m_dFocalLength);
358       m_pSGP->setColor (C_BLUE);
359       m_pSGP->setTextPointSize (9);
360       phm.draw (*m_pSGP);
361       m_dTextHeight = m_pSGP->getCharHeight ();
362
363       traceShowParam ("Phantom:",       "%s", PROJECTION_TRACE_ROW_PHANT_ID, C_BLACK, phm.name().c_str());
364       traceShowParam ("Geometry:", "%s", PROJECTION_TRACE_ROW_GEOMETRY, C_BLUE, convertGeometryIDToName(m_idGeometry));
365       traceShowParam ("Focal Length Ratio:", "%.2f", PROJECTION_TRACE_ROW_FOCAL_LENGTH, C_BLUE, m_dFocalLengthRatio);
366       //      traceShowParam ("Field Of View Ratio:", "%.2f", PROJECTION_TRACE_ROW_FIELD_OF_VIEW, C_BLUE, m_dFieldOfViewRatio);
367       traceShowParam ("Num Detectors:", "%d", PROJECTION_TRACE_ROW_NDET, C_BLUE, proj.nDet());
368       traceShowParam ("Num Views:", "%d", PROJECTION_TRACE_ROW_NVIEW, C_BLUE, proj.nView());
369       traceShowParam ("Samples / Ray:", "%d", PROJECTION_TRACE_ROW_SAMPLES, C_BLUE, m_nSample);
370
371       m_pSGP->setMarker (SGP::MARKER_BDIAMOND);
372
373       m_pSGP->setColor (C_BLACK);
374       m_pSGP->setPenWidth (2);
375       if (m_idGeometry == GEOMETRY_PARALLEL) {
376         m_pSGP->moveAbs (xs1, ys1);
377         m_pSGP->lineAbs (xs2, ys2);
378         m_pSGP->moveAbs (xd1, yd1);
379         m_pSGP->lineAbs (xd2, yd2);
380       } else if (m_idGeometry == GEOMETRY_EQUILINEAR) {
381         m_pSGP->setPenWidth (4);
382         m_pSGP->moveAbs (xs1, ys1);
383         m_pSGP->lineAbs (xs2, ys2);
384         m_pSGP->setPenWidth (2);
385         m_pSGP->moveAbs (xd1, yd1);
386         m_pSGP->lineAbs (xd2, yd2);
387       } else if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
388         m_pSGP->setPenWidth (4);
389         m_pSGP->moveAbs (xs1, ys1);
390         m_pSGP->lineAbs (xs2, ys2);
391         m_pSGP->setPenWidth (2);
392         m_pSGP->moveAbs (0., 0.);
393         m_pSGP->drawArc (m_dCenterDetectorLength, viewAngle + 3 * HALFPI - (m_dAngularDetLen/2), viewAngle + 3 * HALFPI + (m_dAngularDetLen/2));
394       }
395       m_pSGP->setPenWidth (1);
396     }
397     if (m_trace > Trace::TRACE_CONSOLE)
398       traceShowParam ("Current View:", "%d (%.0f%%)", PROJECTION_TRACE_ROW_CURR_VIEW, C_RED, iView + iStartView, (iView + iStartView) / static_cast<double>(m_nView) * 100.);
399 #endif
400
401     if (m_trace == Trace::TRACE_CONSOLE)
402       std::cout << "Current View: " << iView+iStartView << std::endl;
403
404     projectSingleView (phm, detArray, xd1, yd1, xd2, yd2, xs1, ys1, xs2, ys2, viewAngle + 3 * HALFPI);
405     detArray.setViewAngle (viewAngle);
406
407 #ifdef HAVE_SGP
408     if (m_pSGP && m_trace >= Trace::TRACE_PHANTOM) {
409       //        rs_plot (detArray, xd1, yd1, dXCenter, dYCenter, theta);
410     }
411 #endif
412
413   } /* for each iView */
414 }
415
416
417 /* NAME
418 *    rayview                    Calculate raysums for a view at any angle
419 *
420 * SYNOPSIS
421 *    rayview (phm, detArray, xd1, nSample, yd1, xd2, yd2, xs1, ys1, xs2, ys2)
422 *    Phantom& phm               Phantom to scan
423 *    DETARRAY *detArray         Storage of values for detector array
424 *    Scanner& det               Scanner parameters
425 *    double xd1, yd1, xd2, yd2  Beginning & ending detector positions
426 *    double xs1, ys1, xs2, ys2  Beginning & ending source positions
427 *
428 * RAY POSITIONING
429 *         For each detector, have there are a variable number of rays traced.
430 *     The source of each ray is the center of the source x-ray cell. The
431 *     detector positions are equally spaced within the cell
432 *
433 *         The increments between rays are calculated so that the cells start
434 *     at the beginning of a detector cell and they end on the endpoint
435 *     of the cell.  Thus, the last cell starts at (xd2-ddx),(yd2-ddy).
436 *         The exception to this is if there is only one ray per detector.
437 *     In that case, the detector position is the center of the detector cell.
438 */
439
440 void
441 Scanner::projectSingleView (const Phantom& phm, DetectorArray& detArray, const double xd1, const double yd1, const double xd2, const double yd2, const double xs1, const double ys1, const double xs2, const double ys2, const double dDetAngle)
442 {
443
444   double sdx = (xs2 - xs1) / detArray.nDet();  // change in coords
445   double sdy = (ys2 - ys1) / detArray.nDet();  // between source
446   double xs_maj = xs1 + (sdx / 2);      // put ray source in center of cell
447   double ys_maj = ys1 + (sdy / 2);
448
449   double ddx=0, ddy=0, ddx2=0, ddy2=0, ddx2_ofs=0, ddy2_ofs=0, xd_maj=0, yd_maj=0;
450   double dAngleInc=0, dAngleSampleInc=0, dAngleSampleOffset=0, dAngleMajor=0;
451   if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
452     dAngleInc = m_dAngularDetIncrement;
453     dAngleSampleInc = dAngleInc / m_nSample;
454     dAngleSampleOffset = dAngleSampleInc / 2;
455     dAngleMajor = dDetAngle - (m_dAngularDetLen/2) + dAngleSampleOffset;
456   } else {
457     ddx = (xd2 - xd1) / detArray.nDet();  // change in coords
458     ddy = (yd2 - yd1) / detArray.nDet();  // between detectors
459     ddx2 = ddx / m_nSample;     // Incr. between rays with detector cell
460     ddy2 = ddy / m_nSample;  // Doesn't include detector endpoints
461     ddx2_ofs = ddx2 / 2;    // offset of 1st ray from start of detector cell
462     ddy2_ofs = ddy2 / 2;
463
464     xd_maj = xd1 + ddx2_ofs;       // Incr. between detector cells
465     yd_maj = yd1 + ddy2_ofs;
466   }
467
468   DetectorValue* detval = detArray.detValues();
469
470   if (phm.getComposition() == P_UNIT_PULSE) {  // put unit pulse in center of view
471     for (int d = 0; d < detArray.nDet(); d++)
472         detval[d] = 0;
473     detval[ detArray.nDet() / 2 ] = 1;
474   } else {
475     for (int d = 0; d < detArray.nDet(); d++) {
476       double xs = xs_maj;
477       double ys = ys_maj;
478       double xd=0, yd=0, dAngle=0;
479       if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
480         dAngle = dAngleMajor;
481       } else {
482         xd = xd_maj;
483         yd = yd_maj;
484       }
485       double sum = 0.0;
486       for (unsigned int i = 0; i < m_nSample; i++) {
487         if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
488           xd = m_dCenterDetectorLength * cos (dAngle);
489           yd = m_dCenterDetectorLength * sin (dAngle);
490         }
491
492 #ifdef HAVE_SGP
493         if (m_pSGP && m_trace >= Trace::TRACE_PROJECTIONS) {
494           m_pSGP->setColor (C_YELLOW);
495           m_pSGP->setRasterOp (RO_AND);
496           m_pSGP->moveAbs (xs, ys);
497           m_pSGP->lineAbs (xd, yd);
498         }
499 #endif
500
501         sum += projectSingleLine (phm, xd, yd, xs, ys);
502
503 #ifdef HAVE_SGP
504         //      if (m_trace >= Trace::TRACE_CLIPPING) {
505         //        traceShowParam ("Attenuation:", "%s", PROJECTION_TRACE_ROW_ATTEN, C_LTMAGENTA, "        ");
506         //        traceShowParam ("Attenuation:", "%.3f", PROJECTION_TRACE_ROW_ATTEN, C_LTMAGENTA, sum);
507         //      }
508 #endif
509         if (m_idGeometry == GEOMETRY_EQUIANGULAR)
510           dAngle += dAngleSampleInc;
511         else {
512           xd += ddx2;
513           yd += ddy2;
514         }
515       } // for each sample in detector
516
517       detval[d] = sum / m_nSample;
518       xs_maj += sdx;
519       ys_maj += sdy;
520       if (m_idGeometry == GEOMETRY_EQUIANGULAR)
521         dAngleMajor += dAngleInc;
522       else {
523         xd_maj += ddx;
524         yd_maj += ddy;
525       }
526     } /* for each detector */
527   } /* if not unit pulse */
528 }
529
530
531 void
532 Scanner::traceShowParam (const char *szLabel, const char *fmt, int row, int color, ...)
533 {
534   va_list arg;
535   va_start(arg, color);
536 #ifdef HAVE_SGP
537   traceShowParamRasterOp (RO_COPY, szLabel, fmt, row, color, arg);
538 #else
539   traceShowParamRasterOp (0, szLabel, fmt, row, color, arg);
540 #endif
541   va_end(arg);
542 }
543
544 void
545 Scanner::traceShowParamXOR (const char *szLabel, const char *fmt, int row, int color, ...)
546 {
547   va_list arg;
548   va_start(arg, color);
549 #ifdef HAVE_SGP
550   traceShowParamRasterOp (RO_XOR, szLabel, fmt, row, color, arg);
551 #else
552   traceShowParamRasterOp (0, szLabel, fmt, row, color, arg);
553 #endif
554   va_end(arg);
555 }
556
557 void
558 Scanner::traceShowParamRasterOp (int iRasterOp, const char *szLabel, const char *fmt, int row, int color, va_list args)
559 {
560   char szValue[256];
561
562   vsnprintf (szValue, sizeof(szValue), fmt, args);
563
564 #ifdef HAVE_SGP
565   if (m_pSGP) {
566     m_pSGP->setRasterOp (iRasterOp);
567     m_pSGP->setTextColor (color, -1);
568     double dValueOffset = (m_dXMaxWin - m_dXMinWin) / 4;
569     if (row < 4) {
570       double dYPos = m_dYMaxWin - (row * m_dTextHeight);
571       double dXPos = m_dXMinWin;
572       m_pSGP->moveAbs (dXPos, dYPos);
573       m_pSGP->drawText (szLabel);
574       m_pSGP->moveAbs (dXPos + dValueOffset, dYPos);
575       m_pSGP->drawText (szValue);
576     } else {
577       row -= 4;
578       double dYPos = m_dYMaxWin - (row * m_dTextHeight);
579       double dXPos = m_dXMinWin + (m_dXMaxWin - m_dXMinWin) * 0.5;
580       m_pSGP->moveAbs (dXPos, dYPos);
581       m_pSGP->drawText (szLabel);
582       m_pSGP->moveAbs (dXPos + dValueOffset, dYPos);
583       m_pSGP->drawText (szValue);
584     }
585   } else
586 #endif
587   {
588     cio_put_str (szLabel);
589     cio_put_str (szValue);
590     cio_put_str ("\n");
591   }
592 }
593
594
595
596 /* NAME
597 *    projectSingleLine                  INTERNAL: Calculates raysum along a line for a Phantom
598 *
599 * SYNOPSIS
600 *    rsum = phm_ray_attenuation (phm, x1, y1, x2, y2)
601 *    double rsum                Ray sum of Phantom along given line
602 *    Phantom& phm;              Phantom from which to calculate raysum
603 *    double *x1, *y1, *x2, y2   Endpoints of ray path (in Phantom coords)
604 */
605
606 double
607 Scanner::projectSingleLine (const Phantom& phm, double x1, double y1, double x2, double y2)
608 {
609   double rsum = 0.0;
610
611   if (phm.isImagefile()) {
612     // Project through an imagefile
613
614     const ImageFile* im = phm.getImagefile();
615     const ImageFileArray v = im->getArray();
616     int nx = im->nx(), ny = im->ny();
617
618     // Convert endpoints into image pixel coordinates
619     double xmin=0, xmax=nx, ymin=0, ymax=ny; // default coordinate
620     if (! im->getAxisExtent (xmin, xmax, ymin, ymax)) {
621       sys_error(ERR_WARNING, "Axis extent not available [Scanner::projectSingleLine]");
622     }
623     double rect[4];
624     rect[0] = xmin; rect[1] = ymin;
625     rect[2] = xmax;  rect[3] = ymax;
626     bool accept = clip_rect (x1, y1, x2, y2, rect);
627     if (! accept)
628       return (0.0);
629
630     double xlen = xmax - xmin, ylen = ymax - ymin;
631     double px1 = nx * (x1 - xmin) / xlen;
632     double px2 = nx * (x2 - xmin) / xlen;
633     double py1 = ny * (y1 - ymin) / ylen;
634     double py2 = ny * (y2 - ymin) / ylen;
635
636     // Use Bresenham integer line stepping to step to each pixel, and walked through image
637
638     sys_error(ERR_WARNING, "Not yet able to project through imagefile. Line (%.3f,%.3f) - (%.3f,%.3f)", px1, py1, px2, py2);
639
640   } else {
641
642     // Project through each pelem in Phantom
643     for (PElemConstIterator i = phm.listPElem().begin(); i != phm.listPElem().end(); i++)
644       rsum += projectLineAgainstPElem (**i, x1, y1, x2, y2);
645   }
646   return (rsum);
647 }
648
649
650 /* NAME
651 *   pelem_ray_attenuation               Calculate raysum of an pelem along one line
652 *
653 * SYNOPSIS
654 *   rsum = pelem_ray_attenuation (pelem, x1, y1, x2, y2)
655 *   double rsum         Computed raysum
656 *   PhantomElement& pelem               Pelem to scan
657 *   double x1, y1, x2, y2       Endpoints of raysum line
658 */
659
660 double
661 Scanner::projectLineAgainstPElem (const PhantomElement& pelem, double x1, double y1, double x2, double y2)
662 {
663   if (! pelem.clipLineWorldCoords (x1, y1, x2, y2)) {
664     if (m_trace == Trace::TRACE_CLIPPING)
665       cio_tone (1000., 0.05);
666     return (0.0);
667   }
668
669 #ifdef HAVE_SGP
670   if (m_pSGP && m_trace == Trace::TRACE_CLIPPING) {
671     m_pSGP->setRasterOp (RO_XOR);
672     m_pSGP->moveAbs (x1, y1);
673     m_pSGP->lineAbs (x2, y2);
674     cio_tone (8000., 0.05);
675     m_pSGP->moveAbs (x1, y1);
676     m_pSGP->lineAbs (x2, y2);
677     m_pSGP->setRasterOp (RO_SET);
678   }
679 #endif
680
681   double len = lineLength (x1, y1, x2, y2);
682   return (len * pelem.atten());
683 }
684