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