r246: More modifications for MSVC
[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-2000 Kevin Rosenberg
11 **
12 **  $Id: scanner.cpp,v 1.17 2000/12/06 01:46:43 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, int nDet, int nView, int nSample, const double rot_anglen, const double dFocalLengthRatio, const double dFieldOfViewRatio)
86 {
87   m_phmLen = phm.maxAxisLength();      // maximal length along an axis
88
89   m_fail = false;
90   m_idGeometry = convertGeometryNameToID (geometryName);
91   if (m_idGeometry == GEOMETRY_INVALID) {
92     m_fail = true;
93     m_failMessage = "Invalid geometry name ";
94     m_failMessage += geometryName;
95     return;
96   }
97
98   if (nView < 1 || nDet < 1) {
99     m_fail = true;
100     m_failMessage = "nView & nDet must be greater than 0";
101     return;
102   }
103   if (nSample < 1)
104     m_nSample = 1;
105
106   m_nDet     = nDet;
107   m_nView    = nView;
108   m_nSample  = nSample;
109   m_dFocalLengthRatio = dFocalLengthRatio;
110   m_dFieldOfViewRatio = dFieldOfViewRatio;
111   m_dFocalLength = (m_phmLen * SQRT2 / 2) * dFocalLengthRatio;
112   m_dFieldOfView = m_phmLen * SQRT2 * dFieldOfViewRatio;
113
114   m_dXCenter = phm.xmin() + (phm.xmax() - phm.xmin()) / 2;
115   m_dYCenter = phm.ymin() + (phm.ymax() - phm.ymin()) / 2;
116   m_rotLen  = rot_anglen;
117   m_rotInc  = m_rotLen / m_nView;
118   if (m_idGeometry == GEOMETRY_PARALLEL) {
119     m_detLen   = m_dFieldOfView;
120     m_detInc  = m_detLen / m_nDet;
121     if (m_nDet % 2 == 0) // Adjust for Even number of detectors
122       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)-1
123     
124     double dHalfDetLen = m_detLen / 2;
125     m_initPos.xs1 = m_dXCenter - dHalfDetLen;
126     m_initPos.ys1 = m_dYCenter + m_dFocalLength;
127     m_initPos.xs2 = m_dXCenter + dHalfDetLen;
128     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
129     m_initPos.xd1 = m_dXCenter - dHalfDetLen;
130     m_initPos.yd1 = m_dYCenter - m_dFocalLength;
131     m_initPos.xd2 = m_dXCenter + dHalfDetLen;
132     m_initPos.yd2 = m_dYCenter - m_dFocalLength;
133     m_initPos.angle = 0.0;
134   } else if (m_idGeometry == GEOMETRY_EQUILINEAR) {
135 #if 0
136     double dAngle = (m_dFieldOfView / 2) / cos (asin (m_dFieldOfView / 2 / m_dFocalLength));
137 #else
138     double dHalfSquare = m_dFieldOfView / SQRT2 / 2;
139     double dFocalPastPhm = m_dFocalLength - dHalfSquare;
140     if (dFocalPastPhm <= 0.) {
141       m_fail = true;
142       m_failMessage = "Focal Point inside of phantom";
143       return;
144     }
145     double dAngle = atan( dHalfSquare / dFocalPastPhm );
146 #endif
147     double dHalfDetLen = 2 * m_dFocalLength * tan (dAngle);
148
149     m_detLen = dHalfDetLen * 2;
150     m_detInc  = m_detLen / m_nDet;
151     if (m_nDet % 2 == 0) // Adjust for Even number of detectors
152       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)-1
153     
154     m_initPos.angle = 0.0;
155     m_initPos.xs1 = m_dXCenter;
156     m_initPos.ys1 = m_dYCenter + m_dFocalLength;
157     m_initPos.xs2 = m_dXCenter;
158     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
159     m_initPos.xd1 = m_dXCenter - dHalfDetLen;
160     m_initPos.yd1 = m_dYCenter - m_dFocalLength;
161     m_initPos.xd2 = m_dXCenter + dHalfDetLen;
162     m_initPos.yd2 = m_dYCenter - m_dFocalLength;
163     m_initPos.angle = 0.0;
164   } else if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
165 #if 0
166     double dAngle = atan ((m_dFieldOfView / 2) / m_dFocalLength);
167 #else
168     double dHalfSquare = m_dFieldOfView / SQRT2 / 2;
169     double dFocalPastPhm = m_dFocalLength - dHalfSquare;
170     if (dFocalPastPhm <= 0.) {
171       m_fail = true;
172       m_failMessage = "Focal Point inside of phantom";
173       return;
174     }
175     double dAngle =  atan ( dHalfSquare / dFocalPastPhm ); 
176 #endif
177     m_detLen = 2 * dAngle;
178     m_detInc = m_detLen / m_nDet;
179     if (m_nDet % 2 == 0) // Adjust for Even number of detectors
180       m_detInc = m_detLen / (m_nDet - 1); // center detector = (nDet/2)-1
181     m_dAngularDetIncrement = m_detInc * 2; // Angular Position 2x gamma angle
182     m_dAngularDetLen = m_detLen * 2;
183     m_initPos.dAngularDet = -m_dAngularDetLen / 2;
184
185     m_initPos.angle = 0;
186     m_initPos.xs1 = m_dXCenter;
187     m_initPos.ys1 = m_dYCenter + m_dFocalLength;;
188     m_initPos.xs2 = m_dXCenter;
189     m_initPos.ys2 = m_dYCenter + m_dFocalLength;
190   }
191
192   // Calculate incrementatal rotation matrix 
193   GRFMTX_2D temp;
194   xlat_mtx2 (m_rotmtxIncrement, -m_dXCenter, -m_dYCenter);
195   rot_mtx2 (temp, m_rotInc);
196   mult_mtx2 (m_rotmtxIncrement, temp, m_rotmtxIncrement);
197   xlat_mtx2 (temp, m_dXCenter, m_dYCenter);
198   mult_mtx2 (m_rotmtxIncrement, temp, m_rotmtxIncrement);
199   
200 }
201
202 Scanner::~Scanner (void)
203 {
204 }
205
206
207 const char*
208 Scanner::convertGeometryIDToName (const int geomID)
209 {
210   const char *name = "";
211
212   if (geomID >= 0 && geomID < s_iGeometryCount)
213       return (s_aszGeometryName[geomID]);
214
215   return (name);
216 }
217
218 const char*
219 Scanner::convertGeometryIDToTitle (const int geomID)
220 {
221   const char *title = "";
222
223   if (geomID >= 0 && geomID < s_iGeometryCount)
224       return (s_aszGeometryName[geomID]);
225
226   return (title);
227 }
228       
229 int
230 Scanner::convertGeometryNameToID (const char* const geomName) 
231 {
232   int id = GEOMETRY_INVALID;
233
234   for (int i = 0; i < s_iGeometryCount; i++)
235       if (strcasecmp (geomName, s_aszGeometryName[i]) == 0) {
236           id = i;
237           break;
238       }
239
240   return (id);
241 }
242   
243
244 /* NAME
245  *   collectProjections         Calculate projections for a Phantom
246  *
247  * SYNOPSIS
248  *   collectProjections (proj, phm, start_view, nView, bStoreViewPos, trace)
249  *   Projectrions& proj      Projection storage
250  *   Phantom& phm            Phantom for which we collect projections
251  *   bool bStoreViewPos      TRUE then storage proj at normal view position
252  *   int trace               Trace level
253 */
254
255
256 void
257 Scanner::collectProjections (Projections& proj, const Phantom& phm, const int trace, SGP* pSGP)
258 {
259   collectProjections (proj, phm, 0, proj.nView(), true, trace, pSGP);
260 }
261
262 void
263 Scanner::collectProjections (Projections& proj, const Phantom& phm, const int iStartView, const int iNumViews, bool bStoreAtViewPosition, const int trace, SGP* pSGP)
264 {
265   m_trace = trace;
266   double start_angle = iStartView * proj.rotInc();
267
268   // Calculate initial rotation matrix 
269   GRFMTX_2D rotmtx_initial, temp;
270   xlat_mtx2 (rotmtx_initial, -m_dXCenter, -m_dYCenter);
271   rot_mtx2 (temp, start_angle);
272   mult_mtx2 (rotmtx_initial, temp, rotmtx_initial);
273   xlat_mtx2 (temp, m_dXCenter, m_dYCenter);
274   mult_mtx2 (rotmtx_initial, temp, rotmtx_initial);
275
276   double xd1=0, yd1=0, xd2=0, yd2=0;
277   if (m_idGeometry != GEOMETRY_EQUIANGULAR) {
278       xd1 = m_initPos.xd1;
279       yd1 = m_initPos.yd1;
280       xd2 = m_initPos.xd2;
281       yd2 = m_initPos.yd2;
282       xform_mtx2 (rotmtx_initial, xd1, yd1);      // rotate detector endpoints 
283       xform_mtx2 (rotmtx_initial, xd2, yd2);      // to initial view_angle 
284   }
285   
286   double xs1 = m_initPos.xs1;
287   double ys1 = m_initPos.ys1;
288   double xs2 = m_initPos.xs2;
289   double ys2 = m_initPos.ys2;
290   xform_mtx2 (rotmtx_initial, xs1, ys1);      // rotate source endpoints to
291   xform_mtx2 (rotmtx_initial, xs2, ys2);      // initial view angle
292
293   int iView;
294   double viewAngle;
295   for (iView = 0, viewAngle = start_angle;  iView < iNumViews; iView++, viewAngle += proj.rotInc()) {
296     int iStoragePosition = iView;
297     if (bStoreAtViewPosition)
298       iStoragePosition += iStartView;
299
300     DetectorArray& detArray = proj.getDetectorArray( iStoragePosition );
301
302 #ifdef HAVE_SGP 
303   if (pSGP && m_trace >= Trace::TRACE_PHANTOM) {
304       m_pSGP = pSGP;
305       m_pSGP->eraseWindow();
306       double dWindowSize = max(m_detLen, m_dFocalLength * 2) * SQRT2;
307       double dHalfWindowSize = dWindowSize / 2;
308       m_dXMinWin = m_dXCenter - dHalfWindowSize;
309       m_dXMaxWin = m_dXCenter + dHalfWindowSize;
310       m_dYMinWin = m_dYCenter - dHalfWindowSize;
311       m_dYMaxWin = m_dYCenter + dHalfWindowSize;
312       double dHalfPhmLen = m_phmLen /  2;
313
314     m_pSGP->eraseWindow ();
315     m_pSGP->setWindow (m_dXMinWin, m_dYMinWin, m_dXMaxWin, m_dYMaxWin);
316     m_pSGP->setRasterOp (RO_COPY);
317     m_pSGP->setColor (C_RED);
318     m_pSGP->moveAbs (0., 0.);
319     m_pSGP->drawRect (m_dXCenter - dHalfPhmLen, m_dYCenter - dHalfPhmLen, m_dXCenter + dHalfPhmLen, m_dYCenter + dHalfPhmLen);
320     m_pSGP->moveAbs (0., 0.);
321     m_pSGP->drawCircle (m_dFocalLength);
322     m_pSGP->setColor (C_BLUE);
323     phm.draw (*m_pSGP);
324     m_dTextHeight = m_pSGP->getCharHeight ();
325
326     traceShowParam ("Phantom:",       "%s", PROJECTION_TRACE_ROW_PHANT_ID, C_BLACK, phm.name().c_str());
327     traceShowParam ("Geometry:", "%s", PROJECTION_TRACE_ROW_GEOMETRY, C_BLUE, convertGeometryIDToName(m_idGeometry));
328     traceShowParam ("Focal Length Ratio:", "%.2f", PROJECTION_TRACE_ROW_FOCAL_LENGTH, C_BLUE, m_dFocalLengthRatio);
329     traceShowParam ("Field Of View Ratio:", "%.2f", PROJECTION_TRACE_ROW_FIELD_OF_VIEW, C_BLUE, m_dFieldOfViewRatio);
330     traceShowParam ("Num Detectors:", "%d", PROJECTION_TRACE_ROW_NDET, C_BLUE, proj.nDet());
331     traceShowParam ("Num Views:", "%d", PROJECTION_TRACE_ROW_NVIEW, C_BLUE, proj.nView());
332     traceShowParam ("Samples / Ray:", "%d", PROJECTION_TRACE_ROW_SAMPLES, C_BLUE, m_nSample);
333     
334     m_pSGP->setMarker (SGP::MARK_BDIAMOND, C_LTGREEN);
335   }
336 #endif
337
338 #ifdef HAVE_SGP
339     if (m_pSGP && m_trace >= Trace::TRACE_PHANTOM) {
340       m_pSGP->setColor (C_BLACK);
341       m_pSGP->setPenWidth (2);
342       if (m_idGeometry == GEOMETRY_PARALLEL) {
343         m_pSGP->moveAbs (xs1, ys1);
344         m_pSGP->lineAbs (xs2, ys2);
345         m_pSGP->moveAbs (xd1, yd1);
346         m_pSGP->lineAbs (xd2, yd2);
347       } else if (m_idGeometry == GEOMETRY_EQUILINEAR) { 
348         m_pSGP->setPenWidth (4);
349         m_pSGP->moveAbs (xs1, ys1);
350         m_pSGP->lineAbs (xs2, ys2);
351         m_pSGP->setPenWidth (2);
352         m_pSGP->moveAbs (xd1, yd1);
353         m_pSGP->lineAbs (xd2, yd2);
354       } else if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
355         m_pSGP->setPenWidth (4);
356         m_pSGP->moveAbs (xs1, ys1);
357         m_pSGP->lineAbs (xs2, ys2);
358         m_pSGP->setPenWidth (2);
359         m_pSGP->moveAbs (0., 0.);
360         m_pSGP->drawArc (m_dFocalLength, viewAngle + 3 * HALFPI - (m_dAngularDetLen/2), viewAngle + 3 * HALFPI + (m_dAngularDetLen/2));
361       }
362       m_pSGP->setPenWidth (1);
363     }
364     if (m_trace > Trace::TRACE_CONSOLE)
365       traceShowParam ("Current View:", "%d (%.0f%%)", PROJECTION_TRACE_ROW_CURR_VIEW, C_RED, iView + iStartView, (iView + iStartView) / static_cast<double>(m_nView) * 100.);
366 #endif
367     if (m_trace == Trace::TRACE_CONSOLE)
368         cout << "Current View: " << iView+iStartView << endl;
369
370     projectSingleView (phm, detArray, xd1, yd1, xd2, yd2, xs1, ys1, xs2, ys2, viewAngle + 3 * HALFPI);
371     detArray.setViewAngle (viewAngle);
372       
373 #ifdef HAVE_SGP
374     if (m_pSGP && m_trace >= Trace::TRACE_PHANTOM) {
375       //        rs_plot (detArray, xd1, yd1, dXCenter, dYCenter, theta);
376     }
377 #endif
378     xform_mtx2 (m_rotmtxIncrement, xs1, ys1);
379     xform_mtx2 (m_rotmtxIncrement, xs2, ys2);
380     if (m_idGeometry != GEOMETRY_EQUIANGULAR) {
381         xform_mtx2 (m_rotmtxIncrement, xd1, yd1);  // rotate detector endpoints 
382         xform_mtx2 (m_rotmtxIncrement, xd2, yd2);
383     }
384   } /* for each iView */
385 }
386
387
388 /* NAME
389  *    rayview                   Calculate raysums for a view at any angle
390  *
391  * SYNOPSIS
392  *    rayview (phm, detArray, xd1, nSample, yd1, xd2, yd2, xs1, ys1, xs2, ys2)
393  *    Phantom& phm              Phantom to scan
394  *    DETARRAY *detArray                Storage of values for detector array
395  *    Scanner& det              Scanner parameters
396  *    double xd1, yd1, xd2, yd2 Beginning & ending detector positions
397  *    double xs1, ys1, xs2, ys2 Beginning & ending source positions
398  *
399  * RAY POSITIONING
400  *         For each detector, have there are a variable number of rays traced.
401  *     The source of each ray is the center of the source x-ray cell. The
402  *     detector positions are equally spaced within the cell
403  *
404  *         The increments between rays are calculated so that the cells start
405  *     at the beginning of a detector cell and they end on the endpoint
406  *     of the cell.  Thus, the last cell starts at (xd2-ddx),(yd2-ddy).
407  *         The exception to this is if there is only one ray per detector.
408  *     In that case, the detector position is the center of the detector cell.
409  */
410
411 void 
412 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)
413 {
414
415   double sdx = (xs2 - xs1) / detArray.nDet();  // change in coords 
416   double sdy = (ys2 - ys1) / detArray.nDet();  // between source
417   double xs_maj = xs1 + (sdx / 2);      // put ray source in center of cell 
418   double ys_maj = ys1 + (sdy / 2);
419
420   double ddx=0, ddy=0, ddx2=0, ddy2=0, ddx2_ofs=0, ddy2_ofs=0, xd_maj=0, yd_maj=0;
421   double dAngleInc=0, dAngleSampleInc=0, dAngleSampleOffset=0, dAngleMajor=0;
422   if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
423       dAngleInc = m_dAngularDetIncrement;
424       dAngleSampleInc = dAngleInc / m_nSample;
425       dAngleSampleOffset = dAngleSampleInc / 2;
426       dAngleMajor = dDetAngle - (m_dAngularDetLen/2) + dAngleSampleOffset;
427   } else {
428       ddx = (xd2 - xd1) / detArray.nDet();  // change in coords 
429       ddy = (yd2 - yd1) / detArray.nDet();  // between detectors
430       ddx2 = ddx / m_nSample;   // Incr. between rays with detector cell
431       ddy2 = ddy / m_nSample;  // Doesn't include detector endpoints 
432       ddx2_ofs = ddx2 / 2;    // offset of 1st ray from start of detector cell
433       ddy2_ofs = ddy2 / 2;
434       
435       xd_maj = xd1 + ddx2_ofs;       // Incr. between detector cells
436       yd_maj = yd1 + ddy2_ofs;
437   }
438
439   DetectorValue* detval = detArray.detValues();
440
441   if (phm.getComposition() == P_UNIT_PULSE) {  // put unit pulse in center of view
442     for (int d = 0; d < detArray.nDet(); d++)
443       if (detArray.nDet() / 2 == d && (d % 2) == 1)
444         detval[d] = 1;
445       else
446         detval[d] = 0;
447   } else {
448       for (int d = 0; d < detArray.nDet(); d++) {
449       double xs = xs_maj;
450       double ys = ys_maj;
451       double xd=0, yd=0, dAngle=0;
452       if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
453           dAngle = dAngleMajor;
454       } else {
455           xd = xd_maj;
456           yd = yd_maj;
457       }
458       double sum = 0.0;
459       for (unsigned int i = 0; i < m_nSample; i++) {
460         if (m_idGeometry == GEOMETRY_EQUIANGULAR) {
461             xd = m_dFocalLength * cos (dAngle);
462             yd = m_dFocalLength * sin (dAngle);
463         }
464
465 #ifdef HAVE_SGP
466         if (m_pSGP && m_trace >= Trace::TRACE_PROJECTIONS) {
467           m_pSGP->setColor (C_YELLOW);
468           m_pSGP->setRasterOp (RO_AND);
469           m_pSGP->moveAbs (xs, ys);
470           m_pSGP->lineAbs (xd, yd);
471         }
472 #endif
473
474         sum += projectSingleLine (phm, xd, yd, xs, ys);
475               
476 #ifdef HAVE_SGP
477         //      if (m_trace >= Trace::TRACE_CLIPPING) {
478         //        traceShowParam ("Attenuation:", "%s", PROJECTION_TRACE_ROW_ATTEN, C_LTMAGENTA, "        ");
479         //        traceShowParam ("Attenuation:", "%.3f", PROJECTION_TRACE_ROW_ATTEN, C_LTMAGENTA, sum);
480         //      }
481 #endif
482         if (m_idGeometry == GEOMETRY_EQUIANGULAR)
483             dAngle += dAngleSampleInc;
484         else {
485             xd += ddx2;
486             yd += ddy2;
487         }
488       } // for each sample in detector
489
490       detval[d] = sum / m_nSample;
491       xs_maj += sdx;
492       ys_maj += sdy;
493       if (m_idGeometry == GEOMETRY_EQUIANGULAR)
494           dAngleMajor += dAngleInc;
495         else {
496             xd_maj += ddx;
497             yd_maj += ddy;
498         }
499     } /* for each detector */
500   } /* if not unit pulse */
501 }
502
503
504 void 
505 Scanner::traceShowParam (const char *szLabel, const char *fmt, int row, int color, ...)
506 {  
507   va_list arg;
508   va_start(arg, color);
509 #ifdef HAVE_SGP
510   traceShowParamRasterOp (RO_COPY, szLabel, fmt, row, color, arg);
511 #else
512   traceShowParamRasterOp (0, szLabel, fmt, row, color, arg);
513 #endif  
514   va_end(arg);
515 }
516
517 void 
518 Scanner::traceShowParamXOR (const char *szLabel, const char *fmt, int row, int color, ...)
519 {  
520   va_list arg;
521   va_start(arg, color);
522 #ifdef HAVE_SGP
523   traceShowParamRasterOp (RO_XOR, szLabel, fmt, row, color, arg);
524 #else
525   traceShowParamRasterOp (0, szLabel, fmt, row, color, arg);
526 #endif
527   va_end(arg);
528 }
529
530 void 
531 Scanner::traceShowParamRasterOp (int iRasterOp, const char *szLabel, const char *fmt, int row, int color, va_list args)
532 {  
533   char szValue[256];
534
535 #ifdef MSVC
536   vsprintf (szValue, fmt, args);
537 #else
538   vnsprintf (szValue, sizeof(szValue), fmt, args);
539 #endif
540
541   //  cio_set_cpos (raysum_trace_menu_column, row);
542   //  cio_set_text_clr (color - 8, 0);
543   //  cio_set_text_clr (color, 0);
544
545 #ifdef HAVE_SGP
546   if (m_pSGP) {
547     m_pSGP->setRasterOp (iRasterOp);
548     double dYPos = m_dYMaxWin - (row * m_dTextHeight);
549     m_pSGP->moveAbs (m_dXMinWin, dYPos);
550     m_pSGP->setTextColor (color, -1);
551     m_pSGP->drawText (szLabel);
552     double dValueOffset = (m_dXMaxWin - m_dXMinWin) / 4;
553     m_pSGP->moveAbs (m_dXMinWin + dValueOffset, dYPos);
554     m_pSGP->drawText (szValue);
555   } else 
556 #endif
557     {
558       cio_put_str (szLabel);
559       cio_put_str (szValue);
560       cio_put_str ("\n");
561     }
562 }
563
564
565
566 /* NAME
567  *    projectSingleLine                 INTERNAL: Calculates raysum along a line for a Phantom
568  *
569  * SYNOPSIS
570  *    rsum = phm_ray_attenuation (phm, x1, y1, x2, y2)
571  *    double rsum               Ray sum of Phantom along given line
572  *    Phantom& phm;             Phantom from which to calculate raysum
573  *    double *x1, *y1, *x2, y2  Endpoints of ray path (in Phantom coords)
574  */
575
576 double 
577 Scanner::projectSingleLine (const Phantom& phm, const double x1, const double y1, const double x2, const double y2)
578 {
579   // check ray against each pelem in Phantom 
580   double rsum = 0.0;
581   for (PElemConstIterator i = phm.listPElem().begin(); i != phm.listPElem().end(); i++)
582     rsum += projectLineAgainstPElem (**i, x1, y1, x2, y2);
583
584   return (rsum);
585 }
586
587
588 /* NAME
589  *   pelem_ray_attenuation              Calculate raysum of an pelem along one line
590  *
591  * SYNOPSIS
592  *   rsum = pelem_ray_attenuation (pelem, x1, y1, x2, y2)
593  *   double rsum                Computed raysum
594  *   PhantomElement& pelem              Pelem to scan
595  *   double x1, y1, x2, y2      Endpoints of raysum line
596  */
597
598 double 
599 Scanner::projectLineAgainstPElem (const PhantomElement& pelem, double x1, double y1, double x2, double y2)
600 {
601   if (! pelem.clipLineWorldCoords (x1, y1, x2, y2)) {
602     if (m_trace == Trace::TRACE_CLIPPING)
603       cio_tone (1000., 0.05);
604     return (0.0);
605   }
606
607 #ifdef HAVE_SGP
608   if (m_pSGP && m_trace == Trace::TRACE_CLIPPING) {
609     m_pSGP->setRasterOp (RO_XOR);
610     m_pSGP->moveAbs (x1, y1);
611     m_pSGP->lineAbs (x2, y2);
612     cio_tone (8000., 0.05);
613     m_pSGP->moveAbs (x1, y1);
614     m_pSGP->lineAbs (x2, y2);
615     m_pSGP->setRasterOp (RO_SET);
616   }
617 #endif
618
619   double len = lineLength (x1, y1, x2, y2);
620   return (len * pelem.atten());
621 }
622