r322: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 29 Dec 2000 20:18:59 +0000 (20:18 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 29 Dec 2000 20:18:59 +0000 (20:18 +0000)
include/pol.h
libctsim/imagefile.cpp
libctsupport/plotfile.cpp
libctsupport/syserror.cpp
msvc/ctsim/ctsim.plg
src/ctsim.cpp
src/views.cpp
src/views.h

index 808b3803a45ea85282eb2cec78ef3b8656483e0f..1d149896801205c8621c6fe971ecaaf0bb70644f 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: pol.h,v 1.9 2000/12/29 15:45:06 kevin Exp $
+**  $Id: pol.h,v 1.10 2000/12/29 20:11:42 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -38,7 +38,7 @@ class POL {
     ~POL();
     
     void init ();
-    void addSkipWord (const char const *w);
+    void addSkipWord (const char* const w);
     void addSkipChar (int c);
     void addKeyword (const char* const str, int code);
     bool readWord (char *search, int nlet);
index 84c66741ec86b223bdac6254ebd6b6bc6be0bc15..b6525e1fda69077f252b2994aede0cb997d01d21 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: imagefile.cpp,v 1.26 2000/12/29 19:30:08 kevin Exp $
+**  $Id: imagefile.cpp,v 1.27 2000/12/29 20:15:37 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -298,9 +298,9 @@ ImageFile::convertRealToComplex ()
     return false;\r
 \r
   ImageFileArray vImag = getImaginaryArray();\r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumn vCol = vImag[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
       *vCol++ = 0;\r
   }\r
 \r
@@ -315,10 +315,10 @@ ImageFile::convertComplexToReal ()
 \r
   ImageFileArray vReal = getArray();\r
   ImageFileArray vImag = getImaginaryArray();\r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumn vRealCol = vReal[ix];\r
     ImageFileColumn vImagCol = vImag[ix];\r
-    for (int iy = 0; iy < m_ny; iy++) {\r
+    for (unsigned int iy = 0; iy < m_ny; iy++) {\r
       std::complex<double> c (*vRealCol, *vImagCol);\r
       *vRealCol++ = std::abs (c);\r
       vImagCol++;\r
@@ -340,11 +340,11 @@ ImageFile::subtractImages (const ImageFile& rRHS, ImageFile& result) const
   ImageFileArrayConst vRHS = rRHS.getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in1 = vLHS[ix];\r
     ImageFileColumnConst in2 = vRHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
         *out++ = *in1++ - *in2++;\r
   }\r
 \r
@@ -363,11 +363,11 @@ ImageFile::addImages (const ImageFile& rRHS, ImageFile& result) const
   ImageFileArrayConst vRHS = rRHS.getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in1 = vLHS[ix];\r
     ImageFileColumnConst in2 = vRHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
         *out++ = *in1++ + *in2++;\r
   }\r
 \r
@@ -386,11 +386,11 @@ ImageFile::multiplyImages (const ImageFile& rRHS, ImageFile& result) const
   ImageFileArrayConst vRHS = rRHS.getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in1 = vLHS[ix];\r
     ImageFileColumnConst in2 = vRHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
         *out++ = *in1++ * *in2++;\r
   }\r
 \r
@@ -409,11 +409,11 @@ ImageFile::divideImages (const ImageFile& rRHS, ImageFile& result) const
   ImageFileArrayConst vRHS = rRHS.getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in1 = vLHS[ix];\r
     ImageFileColumnConst in2 = vRHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++) {\r
+    for (unsigned int iy = 0; iy < m_ny; iy++) {\r
       if (*in2 != 0.)\r
         *out++ = *in1++ / *in2++;\r
       else\r
@@ -436,10 +436,10 @@ ImageFile::invertPixelValues (ImageFile& result) const
   ImageFileArrayConst vLHS = getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in = vLHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
         *out++ = - *in++;\r
   }\r
 \r
@@ -457,10 +457,10 @@ ImageFile::sqrt (ImageFile& result) const
   ImageFileArrayConst vLHS = getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in = vLHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
       if (*in < 0)\r
         *out++ = -::sqrt(-*in++);\r
       else\r
@@ -481,10 +481,10 @@ ImageFile::log (ImageFile& result) const
   ImageFileArrayConst vLHS = getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in = vLHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
       if (*in <= 0)\r
         *out++ = 0;\r
       else\r
@@ -505,10 +505,10 @@ ImageFile::exp (ImageFile& result) const
   ImageFileArrayConst vLHS = getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in = vLHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++)\r
       *out++ = ::exp (*in++);\r
   }\r
 \r
@@ -543,7 +543,7 @@ ImageFile::fourier (ImageFile& result) const
   ImageFileArray vRealResult = result.getArray();\r
   ImageFileArray vImagResult = result.getImaginaryArray();\r
 \r
-  int ix, iy;\r
+  unsigned int ix, iy;\r
   double* pY = new double [m_ny];\r
   std::complex<double>** complexOut = new std::complex<double>* [m_nx];\r
   for (ix = 0; ix < m_nx; ix++)\r
@@ -611,13 +611,13 @@ ImageFile::magnitude (ImageFile& result) const
   ImageFileArray vRealResult = result.getArray();\r
   if (result.dataType() == Array2dFile::DATA_TYPE_COMPLEX) {\r
     ImageFileArray vImagResult = result.getImaginaryArray();\r
-    for (int ix = 0; ix < m_nx; ix++)\r
-      for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int ix = 0; ix < m_nx; ix++)\r
+      for (unsigned int iy = 0; iy < m_ny; iy++)\r
         vImagResult[ix][iy] = 0;\r
   }\r
 \r
-  for (int ix = 0; ix < m_nx; ix++)\r
-    for (int iy = 0; iy < m_ny; iy++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++) {\r
       if (dataType() == Array2dFile::DATA_TYPE_COMPLEX) \r
         vRealResult[ix][iy] = ::sqrt (vReal[ix][iy] * vReal[ix][iy] + vImag[ix][iy] * vImag[ix][iy]);\r
       else\r
@@ -643,13 +643,13 @@ ImageFile::phase (ImageFile& result) const
   ImageFileArray vRealResult = result.getArray();\r
   if (result.dataType() == Array2dFile::DATA_TYPE_COMPLEX) {\r
     ImageFileArray vImagResult = result.getImaginaryArray();\r
-    for (int ix = 0; ix < m_nx; ix++)\r
-      for (int iy = 0; iy < m_ny; iy++)\r
+    for (unsigned int ix = 0; ix < m_nx; ix++)\r
+      for (unsigned int iy = 0; iy < m_ny; iy++)\r
         vImagResult[ix][iy] = 0;\r
   }\r
 \r
-  for (int ix = 0; ix < m_nx; ix++)\r
-    for (int iy = 0; iy < m_ny; iy++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++)\r
+    for (unsigned int iy = 0; iy < m_ny; iy++) {\r
       if (dataType() == Array2dFile::DATA_TYPE_COMPLEX) \r
         vRealResult[ix][iy] = ::atan (vImag[ix][iy] / vReal[ix][iy]);\r
       else\r
@@ -670,10 +670,10 @@ ImageFile::square (ImageFile& result) const
   ImageFileArrayConst vLHS = getArray();\r
   ImageFileArray vResult = result.getArray();\r
 \r
-  for (int ix = 0; ix < m_nx; ix++) {\r
+  for (unsigned int ix = 0; ix < m_nx; ix++) {\r
     ImageFileColumnConst in = vLHS[ix];\r
     ImageFileColumn out = vResult[ix];\r
-    for (int iy = 0; iy < m_ny; iy++) {\r
+    for (unsigned int iy = 0; iy < m_ny; iy++) {\r
         *out++ = *in * *in;\r
         in++;\r
     }\r
index 706fce1d352bcd367e22e257965c7ea4c3ebbb2b..16336ef2777c9b07dbf163bf26e5835a00dc1cf2 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: plotfile.cpp,v 1.6 2000/12/27 03:16:02 kevin Exp $
+**  $Id: plotfile.cpp,v 1.7 2000/12/29 20:09:46 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -148,8 +148,7 @@ PlotFile::statistics (int iStartingCol, double& min, double& max, double& mean,
     sys_error (ERR_WARNING, "iStartingCol >= iNumColumns");\r
     return false;\r
   }\r
-  \r
-  int iOffset = iStartingCol * m_iNumRecords;\r
\r
   int iNPoints = (m_iNumColumns - iStartingCol) * m_iNumRecords;\r
   std::vector<double> vec;\r
   vec.resize (iNPoints);\r
index 8468f820743affdc535a49a4809fabcf1d2a94c2..679ecb43d2f873540da84d66106870ade400bf46 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: syserror.cpp,v 1.10 2000/12/29 15:45:06 kevin Exp $
+**  $Id: syserror.cpp,v 1.11 2000/12/29 20:11:42 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -112,7 +112,7 @@ void sys_verror (std::string& strOutput, int severity, const char *msg, va_list
   strncpy (errStr, sizeof(errStr), "Error message not available on this platform.");
 #endif
   
-  os << errStr << std::endl;
+  os << errStr << "\n";
   strOutput = os.str();\r
   
   if (severity == ERR_FATAL)
index a51b06b252a2597278a5aa8ee1241f8f119380b8..6816dff5fdb3fcadf489e0bfc543644b1123a738 100644 (file)
@@ -119,3 +119,405 @@ ezset.cpp
 ezsupport.cpp\r
 filter.cpp\r
 fnetorderstream.cpp\r
+hashtable.cpp\r
+imagefile.cpp\r
+mathfuncs.cpp\r
+phantom.cpp\r
+plotfile.cpp\r
+pol.cpp\r
+procsignal.cpp\r
+projections.cpp\r
+reconstruct.cpp\r
+scanner.cpp\r
+sgp.cpp\r
+strfuncs.cpp\r
+syserror.cpp\r
+trace.cpp\r
+transformmatrix.cpp\r
+xform.cpp\r
+Compiling...\r
+backprojectors.cpp\r
+Creating library...\r
+<h3>\r
+--------------------Configuration: ctsim - Win32 Release--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP7.tmp" with contents\r
+[\r
+/nologo /G6 /MT /W3 /GR /GX /O2 /I "." /I "..\..\include" /I "..\..\getopt" /I "..\..\..\lpng108" /I "..\..\..\zlib" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\wx2\include" /D CTSIMVERSION=\"2.5.0\" /D "NDEBUG" /D "__WXWIN__" /D "__WXMSW__" /D "HAVE_SGP" /D "HAVE_PNG" /D "HAVE_WXWINDOWS" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "HAVE_STRING_H" /D "HAVE_FFTW" /D "HAVE_RFFTW" /D "HAVE_GETOPT_H" /D "MSVC" /D "__WIN95__" /D "__WIN32__" /D WINVER=0x0400 /D "STRICT" /FR"Release/" /Fp"Release/ctsim.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c \r
+"C:\ctsim-2.0.6\src\ctsim.cpp"\r
+"C:\ctsim-2.0.6\src\dialogs.cpp"\r
+"C:\ctsim-2.0.6\src\dlgprojections.cpp"\r
+"C:\ctsim-2.0.6\src\dlgreconstruct.cpp"\r
+"C:\ctsim-2.0.6\src\docs.cpp"\r
+"C:\ctsim-2.0.6\src\views.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP7.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP8.tmp" with contents\r
+[\r
+kernel32.lib user32.lib wsock32.lib comctl32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib libpng.lib zlib.lib /nologo /subsystem:windows /incremental:no /pdb:"Release/ctsim.pdb" /machine:I386 /out:"Release/ctsim.exe" /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Release\ctsim.obj"\r
+".\Release\dialogs.obj"\r
+".\Release\dlgprojections.obj"\r
+".\Release\dlgreconstruct.obj"\r
+".\Release\docs.obj"\r
+".\Release\views.obj"\r
+".\Release\wx.res"\r
+"\ctsim-2.0.6\msvc\libctsim\Release\libctsim.lib"\r
+"\fftw-2.1.3\Win32\FFTW2st\Release\FFTW2st.lib"\r
+"\fftw-2.1.3\Win32\RFFTW2st\Release\RFFTW2st.lib"\r
+"\wx2\lib\wx.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP8.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+ctsim.cpp\r
+dialogs.cpp\r
+dlgprojections.cpp\r
+dlgreconstruct.cpp\r
+docs.cpp\r
+views.cpp\r
+Linking...\r
+LINK : warning LNK4089: all references to "ADVAPI32.dll" discarded by /OPT:REF\r
+LINK : warning LNK4089: all references to "WSOCK32.dll" discarded by /OPT:REF\r
+Creating command line "bscmake.exe /nologo /o"Release/ctsim.bsc"  ".\Release\ctsim.sbr" ".\Release\dialogs.sbr" ".\Release\dlgprojections.sbr" ".\Release\dlgreconstruct.sbr" ".\Release\docs.sbr" ".\Release\views.sbr""\r
+Creating browse info file...\r
+<h3>Output Window</h3>\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+ctsim.exe - 0 error(s), 2 warning(s)\r
+<h3>\r
+--------------------Configuration: libctsim - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPB.tmp" with contents\r
+[\r
+/nologo /G6 /MTd /W3 /Gm /GR /GX /ZI /Od /I "..\..\..\zlib" /I "..\..\INCLUDE" /I "..\..\getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\wx2\include" /D "_DEBUG" /D "HAVE_WXWIN" /D "HAVE_STRING_H" /D "HAVE_GETOPT_H" /D "WIN32" /D "_MBCS" /D "_LIB" /D "MSVC" /D "HAVE_FFTW" /D "HAVE_PNG" /D "HAVE_SGP" /D "HAVE_WXWINDOWS" /D "__WXMSW__" /FR"Debug/" /Fp"Debug/libctsim.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c \r
+"C:\ctsim-2.0.6\libctsim\array2dfile.cpp"\r
+"C:\ctsim-2.0.6\libctsim\backprojectors.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\clip.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\consoleio.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\ezplot.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\ezset.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\ezsupport.cpp"\r
+"C:\ctsim-2.0.6\libctsim\filter.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\fnetorderstream.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\hashtable.cpp"\r
+"C:\ctsim-2.0.6\libctsim\imagefile.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\mathfuncs.cpp"\r
+"C:\ctsim-2.0.6\libctsim\phantom.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\plotfile.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\pol.cpp"\r
+"C:\ctsim-2.0.6\libctsim\procsignal.cpp"\r
+"C:\ctsim-2.0.6\libctsim\projections.cpp"\r
+"C:\ctsim-2.0.6\libctsim\reconstruct.cpp"\r
+"C:\ctsim-2.0.6\libctsim\scanner.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\sgp.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\strfuncs.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\syserror.cpp"\r
+"C:\ctsim-2.0.6\libctsim\trace.cpp"\r
+"C:\ctsim-2.0.6\libctgraphics\transformmatrix.cpp"\r
+"C:\ctsim-2.0.6\libctsupport\xform.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPB.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPC.tmp" with contents\r
+[\r
+/nologo /out:"Debug\libctsim.lib" \r
+".\Debug\array2dfile.obj"\r
+".\Debug\backprojectors.obj"\r
+".\Debug\clip.obj"\r
+".\Debug\consoleio.obj"\r
+".\Debug\ezplot.obj"\r
+".\Debug\ezset.obj"\r
+".\Debug\ezsupport.obj"\r
+".\Debug\filter.obj"\r
+".\Debug\fnetorderstream.obj"\r
+".\Debug\getopt.obj"\r
+".\Debug\getopt1.obj"\r
+".\Debug\hashtable.obj"\r
+".\Debug\imagefile.obj"\r
+".\Debug\mathfuncs.obj"\r
+".\Debug\phantom.obj"\r
+".\Debug\plotfile.obj"\r
+".\Debug\pol.obj"\r
+".\Debug\procsignal.obj"\r
+".\Debug\projections.obj"\r
+".\Debug\reconstruct.obj"\r
+".\Debug\scanner.obj"\r
+".\Debug\sgp.obj"\r
+".\Debug\strfuncs.obj"\r
+".\Debug\syserror.obj"\r
+".\Debug\trace.obj"\r
+".\Debug\transformmatrix.obj"\r
+".\Debug\xform.obj"\r
+]\r
+Creating command line "link.exe -lib @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPC.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+array2dfile.cpp\r
+imagefile.cpp\r
+pol.cpp\r
+backprojectors.cpp\r
+clip.cpp\r
+consoleio.cpp\r
+ezplot.cpp\r
+ezset.cpp\r
+ezsupport.cpp\r
+filter.cpp\r
+fnetorderstream.cpp\r
+hashtable.cpp\r
+mathfuncs.cpp\r
+phantom.cpp\r
+plotfile.cpp\r
+procsignal.cpp\r
+projections.cpp\r
+reconstruct.cpp\r
+scanner.cpp\r
+sgp.cpp\r
+strfuncs.cpp\r
+syserror.cpp\r
+trace.cpp\r
+transformmatrix.cpp\r
+xform.cpp\r
+Creating library...\r
+<h3>\r
+--------------------Configuration: FFTW2st - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+<h3>\r
+--------------------Configuration: RFFTW2st - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+<h3>\r
+--------------------Configuration: wxvc - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+<h3>\r
+--------------------Configuration: ctsim - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPD.tmp" with contents\r
+[\r
+/nologo /G6 /MTd /W3 /Gm /GR /GX /ZI /Od /I "\wx2\include" /I "." /I "..\..\include" /I "..\..\getopt" /I "..\..\..\lpng108" /I "..\..\..\zlib" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /D VERSION=\"2.5.0\" /D "_DEBUG" /D "__WXMSW__" /D "HAVE_SGP" /D "HAVE_PNG" /D "HAVE_WXWINDOWS" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "HAVE_STRING_H" /D "HAVE_FFTW" /D "HAVE_RFFTW" /D "HAVE_GETOPT_H" /D "MSVC" /D "__WIN95__" /D "__WIN32__" /D WINVER=0x0400 /D "STRICT" /D CTSIMVERSION=\"2.5.0\" /FR"Debug/" /Fp"Debug/ctsim.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c \r
+"C:\ctsim-2.0.6\src\ctsim.cpp"\r
+"C:\ctsim-2.0.6\src\dialogs.cpp"\r
+"C:\ctsim-2.0.6\src\dlgprojections.cpp"\r
+"C:\ctsim-2.0.6\src\dlgreconstruct.cpp"\r
+"C:\ctsim-2.0.6\src\docs.cpp"\r
+"C:\ctsim-2.0.6\src\views.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPD.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPE.tmp" with contents\r
+[\r
+comctl32.lib winmm.lib rpcrt4.lib ws2_32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ../libctsim/Debug/libctsim.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\lpng108\msvc\win32\libpng\lib_dbg\libpng.lib ..\..\..\lpng108\msvc\win32\zlib\lib_dbg\zlib.lib libcmtd.lib ..\..\..\fftw-2.1.3\Win32\FFTW2st\Debug\FFTW2st.lib ..\..\..\fftw-2.1.3\Win32\RFFTW2st\Debug\RFFTW2st.lib ../../../wx2/lib/wxd.lib /nologo /subsystem:windows /incremental:yes /pdb:"Debug/ctsim.pdb" /debug /machine:I386 /nodefaultlib:"libcd.lib" /nodefaultlib:"libcid.lib" /nodefaultlib:"msvcrtd.lib" /out:"Debug/ctsim.exe" /pdbtype:sept /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Debug\ctsim.obj"\r
+".\Debug\dialogs.obj"\r
+".\Debug\dlgprojections.obj"\r
+".\Debug\dlgreconstruct.obj"\r
+".\Debug\docs.obj"\r
+".\Debug\views.obj"\r
+".\Debug\wx.res"\r
+"\ctsim-2.0.6\msvc\libctsim\Debug\libctsim.lib"\r
+"\fftw-2.1.3\Win32\FFTW2st\Debug\FFTW2st.lib"\r
+"\fftw-2.1.3\Win32\RFFTW2st\Debug\RFFTW2st.lib"\r
+"\wx2\lib\wxd.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSPE.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+views.cpp\r
+ctsim.cpp\r
+dialogs.cpp\r
+dlgprojections.cpp\r
+dlgreconstruct.cpp\r
+docs.cpp\r
+Linking...\r
+Creating command line "bscmake.exe /nologo /o"Debug/ctsim.bsc"  ".\Debug\ctsim.sbr" ".\Debug\dialogs.sbr" ".\Debug\dlgprojections.sbr" ".\Debug\dlgreconstruct.sbr" ".\Debug\docs.sbr" ".\Debug\views.sbr""\r
+Creating browse info file...\r
+<h3>Output Window</h3>\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+ctsim.exe - 0 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: if1 - Win32 Release--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP11.tmp" with contents\r
+[\r
+/nologo /G6 /MT /W3 /GX /O2 /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\zlib" /D "NDEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /Fp"Release/if1.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c \r
+"C:\ctsim-2.0.6\tools\if1.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP11.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP12.tmp" with contents\r
+[\r
+wx.lib libctsim.lib zlib.lib comctl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib libpng.lib /nologo /subsystem:console /incremental:no /pdb:"Release/if1.pdb" /machine:I386 /out:"Release/if1.exe" /libpath:"..\libctsim\Release" /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\wx2\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Release\if1.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Release\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP12.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+if1.cpp\r
+Linking...\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_one\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_one\r
+Release/if1.exe : fatal error LNK1120: 6 unresolved externals\r
+Error executing link.exe.\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+if1.exe - 7 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: if1 - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP14.tmp" with contents\r
+[\r
+/nologo /G6 /MTd /W3 /Gm /GR /GX /ZI /Od /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\zlib" /D "_DEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /FR"Debug/" /Fp"Debug/if1.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c \r
+"C:\ctsim-2.0.6\tools\if1.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP14.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP15.tmp" with contents\r
+[\r
+comctl32.lib winmm.lib rpcrt4.lib ws2_32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ../libctsim/Debug/libctsim.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\lpng108\msvc\win32\libpng\lib_dbg\libpng.lib ..\..\..\lpng108\msvc\win32\zlib\lib_dbg\zlib.lib libcmtd.lib ..\..\..\fftw-2.1.3\Win32\FFTW2st\Debug\FFTW2st.lib ..\..\..\fftw-2.1.3\Win32\RFFTW2st\Debug\RFFTW2st.lib ../../../wx2/lib/wxd.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/if1.pdb" /debug /machine:I386 /nodefaultlib:"libcd.lib" /nodefaultlib:"libcid.lib" /nodefaultlib:"msvcrtd.lib" /out:"Debug/if1.exe" /pdbtype:sept /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Debug\if1.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Debug\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP15.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+if1.cpp\r
+Linking...\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+if1.exe - 0 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: if2 - Win32 Release--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP17.tmp" with contents\r
+[\r
+/nologo /G6 /MT /W3 /GX /O2 /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\zlib" /D "NDEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /Fp"Release/if2.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c \r
+"C:\ctsim-2.0.6\tools\if2.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP17.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP18.tmp" with contents\r
+[\r
+wx.lib libctsim.lib zlib.lib comctl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib libpng.lib /nologo /subsystem:console /incremental:no /pdb:"Release/if2.pdb" /machine:I386 /out:"Release/if2.exe" /libpath:"..\libctsim\Release" /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\wx2\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Release\if2.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Release\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP18.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+if2.cpp\r
+Linking...\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_one\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_one\r
+Release/if2.exe : fatal error LNK1120: 6 unresolved externals\r
+Error executing link.exe.\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+if2.exe - 7 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: if2 - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1A.tmp" with contents\r
+[\r
+/nologo /G6 /MTd /W3 /Gm /GR /GX /ZI /Od /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\zlib" /D "_DEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /FR"Debug/" /Fp"Debug/if2.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c \r
+"C:\ctsim-2.0.6\tools\if2.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1A.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1B.tmp" with contents\r
+[\r
+comctl32.lib winmm.lib rpcrt4.lib ws2_32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ../libctsim/Debug/libctsim.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\lpng108\msvc\win32\libpng\lib_dbg\libpng.lib ..\..\..\lpng108\msvc\win32\zlib\lib_dbg\zlib.lib libcmtd.lib ..\..\..\fftw-2.1.3\Win32\FFTW2st\Debug\FFTW2st.lib ..\..\..\fftw-2.1.3\Win32\RFFTW2st\Debug\RFFTW2st.lib ../../../wx2/lib/wxd.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/if2.pdb" /debug /machine:I386 /nodefaultlib:"libcd.lib" /nodefaultlib:"libcid.lib" /nodefaultlib:"msvcrtd.lib" /out:"Debug/if2.exe" /pdbtype:sept /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Debug\if2.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Debug\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1B.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+if2.cpp\r
+Linking...\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+if2.exe - 0 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: ifexport - Win32 Release--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1D.tmp" with contents\r
+[\r
+/nologo /G6 /MT /W3 /GX /O2 /I "..\..\..\zlib113" /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /I "..\..\..\zlib" /D "NDEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /Fp"Release/ifexport.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c \r
+"C:\ctsim-2.0.6\tools\ifexport.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1D.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1E.tmp" with contents\r
+[\r
+wx.lib libctsim.lib zlib.lib comctl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib libpng.lib /nologo /subsystem:console /incremental:no /pdb:"Release/ifexport.pdb" /machine:I386 /out:"Release/ifexport.exe" /libpath:"..\libctsim\Release" /libpath:"..\..\..\lpng108\msvc\win32\libpng\lib" /libpath:"..\..\..\wx2\lib" /libpath:"..\..\..\lpng108\msvc\win32\zlib\lib" \r
+".\Release\ifexport.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Release\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP1E.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+ifexport.cpp\r
+Linking...\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_create_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_destroy_plan\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _fftw_one\r
+libctsim.lib(procsignal.obj) : error LNK2001: unresolved external symbol _rfftw_one\r
+Release/ifexport.exe : fatal error LNK1120: 6 unresolved externals\r
+Error executing link.exe.\r
+\r
+\r
+\r
+<h3>Results</h3>\r
+ifexport.exe - 7 error(s), 0 warning(s)\r
+<h3>\r
+--------------------Configuration: ifexport - Win32 Debug--------------------\r
+</h3>\r
+<h3>Command Lines</h3>\r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP20.tmp" with contents\r
+[\r
+/nologo /G6 /MTd /W3 /Gm /GR /GX /ZI /Od /I "..\..\..\zlib" /I "../../include" /I "../../getopt" /I "..\..\..\lpng108" /I "..\..\..\fftw-2.1.3\fftw" /I "..\..\..\fftw-2.1.3\rfftw" /D "_DEBUG" /D "HAVE_GETOPT_H" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "MSVC" /D "HAVE_STRING_H" /D "HAVE_PNG" /FR"Debug/" /Fp"Debug/ifexport.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c \r
+"C:\ctsim-2.0.6\tools\ifexport.cpp"\r
+]\r
+Creating command line "cl.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP20.tmp" \r
+Creating temporary file "C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP21.tmp" with contents\r
+[\r
+rpcrt4.lib comctl32.lib wsock32.lib ../libctsim/Debug/libctsim.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ..\..\..\lpng108\msvc\win32\libpng\lib_dbg\libpng.lib ..\..\..\lpng108\msvc\win32\zlib\lib_dbg\zlib.lib libcpd.lib libcd.lib ..\..\..\fftw-2.1.3\Win32\FFTW2st\Debug\FFTW2st.lib ..\..\..\fftw-2.1.3\Win32\RFFTW2st\Debug\RFFTW2st.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/ifexport.pdb" /debug /machine:I386 /nodefaultlib:"libcd.lib" /nodefaultlib:"libcid.lib" /nodefaultlib:"msvcrt.lib" /nodefaultlib /out:"Debug/ifexport.exe" /pdbtype:sept \r
+".\Debug\ifexport.obj"\r
+"\ctsim-2.0.6\msvc\libctsim\Debug\libctsim.lib"\r
+]\r
+Creating command line "link.exe @C:\DOCUME~1\kevin\LOCALS~1\Temp\RSP21.tmp"\r
+<h3>Output Window</h3>\r
+Compiling...\r
+ifexport.cpp\r
+cl.exe terminated at user request.\r
+\r
+</pre>\r
+</body>\r
+</html>\r
index 06c91ea444c332ae36889539eb8fbcc4beedd65b..8dc7e229b526ab201241350ab6215a2a8c48c260 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.21 2000/12/27 03:16:02 kevin Exp $
+**  $Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -61,7 +61,7 @@
 #endif
 #endif
 \r
-static const char* rcsindent = "$Id: ctsim.cpp,v 1.21 2000/12/27 03:16:02 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 kevin Exp $";
 
 class CTSimApp* theApp = NULL;
 
@@ -289,8 +289,8 @@ void
 CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF)\r
 {\r
   const ImageFile& rIF = pIFDoc->getImageFile();\r
-  int nx = rIF.nx();\r
-  int ny = rIF.ny();\r
+  unsigned int nx = rIF.nx();\r
+  unsigned int ny = rIF.ny();\r
   wxList& rListDocs = m_docManager->GetDocuments();\r
   for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {\r
     wxDocument* pDoc = reinterpret_cast<wxDocument*>(pNode->GetData());\r
index 307d6c0c054cf24823a1f9884be4807f7dfa6430..86e0cf56b2a265b60922ef6f4ac06a215d29e09d 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: views.cpp,v 1.41 2000/12/29 19:30:08 kevin Exp $
+**  $Id: views.cpp,v 1.42 2000/12/29 20:18:59 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -87,7 +87,6 @@ void
 ImageFileCanvas::DrawRubberBandCursor (wxDC& dc, int x, int y)\r
 {\r
   const ImageFile& rIF = m_pView->GetDocument()->getImageFile();\r
-  ImageFileArrayConst v = rIF.getArray();\r
   int nx = rIF.nx();\r
   int ny = rIF.ny();\r
   \r
@@ -1696,7 +1695,7 @@ PlotFileView::OnUpdate (wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) )
         delete m_pEZPlot;\r
       m_pEZPlot = new EZPlot;\r
       \r
-      for (int iEzset = 0; iEzset < rPlotFile.getNumEzsetCommands(); iEzset++)\r
+      for (unsigned int iEzset = 0; iEzset < rPlotFile.getNumEzsetCommands(); iEzset++)\r
         m_pEZPlot->ezset (rPlotFile.getEzsetCommand (iEzset));\r
       \r
       if (m_bMinSpecified) {\r
index 79b154ca6abe3e40c31958e3dbc3647098488e6a..3512fac1d77c1dbca1c37c795f30ffd8b28a7e6a 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: views.h,v 1.18 2000/12/29 19:30:08 kevin Exp $
+**  $Id: views.h,v 1.19 2000/12/29 20:18:59 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -226,9 +226,9 @@ private:
     PlotFileCanvas *CreateCanvas(wxView *view, wxFrame *parent);
     wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
 
-    EZPlot* m_pEZPlot;\r
     PlotFileCanvas *m_canvas;
     wxFrame *m_frame;
+    EZPlot* m_pEZPlot;\r
     bool m_bMinSpecified;\r
     bool m_bMaxSpecified;\r
     double m_dMinPixel;\r