Index: /trunk/psLib/src/astronomy/psAstrometry.c
===================================================================
--- /trunk/psLib/src/astronomy/psAstrometry.c	(revision 3026)
+++ /trunk/psLib/src/astronomy/psAstrometry.c	(revision 3027)
@@ -8,6 +8,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-14 23:27:55 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -567,5 +567,6 @@
         }
     }
-    printf("Hmmm, returning NULL\n");
+
+    // XXX: Print warning here?
     return (NULL);
 }
Index: /trunk/psLib/src/dataManip/psFunctions.c
===================================================================
--- /trunk/psLib/src/dataManip/psFunctions.c	(revision 3026)
+++ /trunk/psLib/src/dataManip/psFunctions.c	(revision 3027)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -344,5 +344,4 @@
     for (i=0;i<myPoly->n;i++) {
         tmp+= (myPoly->coeff[i] * psPolynomial1DEval(x, chebPolys[i]));
-        //            printf("HMMM: psPolynomial1DEval(%f, chebPolys[%d]) is %f\n", x, i, psPolynomial1DEval(x, chebPolys[i]));
     }
     tmp-= (myPoly->coeff[0]/2.0);
Index: /trunk/psLib/src/dataManip/psMinimize.c
===================================================================
--- /trunk/psLib/src/dataManip/psMinimize.c	(revision 3026)
+++ /trunk/psLib/src/dataManip/psMinimize.c	(revision 3027)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.100 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.101 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -280,5 +280,4 @@
     // If x==NULL, create an x32 vector with x values set to (0:n).
     if (x == NULL) {
-
         PS_VECTOR_GEN_X_INDEX_STATIC_F32(x32Static, y->n);
         x32 = x32Static;
@@ -294,5 +293,5 @@
         This can not be implemented until SDR states what order spline should be
         created.
-
+        Should we error if mySpline is not NULL?
         Should we error if mySPline is not NULL?
     */
@@ -302,5 +301,4 @@
     PS_PTR_CHECK_NULL(mySpline, NULL);
     PS_INT_CHECK_NON_NEGATIVE(mySpline->n, NULL);
-
 
     if (y32->n != (1 + mySpline->n)) {
Index: /trunk/psLib/src/image/psImageStats.c
===================================================================
--- /trunk/psLib/src/image/psImageStats.c	(revision 3026)
+++ /trunk/psLib/src/image/psImageStats.c	(revision 3027)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-12-23 19:14:15 $
+ *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -300,6 +300,6 @@
 /*****************************************************************************
 psImageFitPolynomial(): This routine takes as input a 2-D image and produces
-as output the coefficients of the Chebyshev polynomials which match that
-input image.
+as output the coefficients of the Chebyshev polynomials which match that input
+image.  This is a TEST version of the code.  It is not used by anything.
   Input:
   Output:
@@ -359,7 +359,5 @@
             //            nodes->data.F64[x][y] = psImagePixelInterpolate(input, yNode, xNode, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
             //            nodes->data.F64[x][y] = psImagePixelInterpolate(input, yTmp, xTmp, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
-            printf("HMMMM: (xOrig, yOrig) is (%f, %f)\n", xOrig, yOrig);
             nodes->data.F64[x][y] = psImagePixelInterpolate(input, yOrig, xOrig, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
-            printf("HMMMM: interpolated pixel [%d][%d] is %f, should be %f\n", x, y, nodes->data.F64[x][y], input->data.F32[x][y]);
         }
     }
Index: /trunk/psLib/src/imageops/psImageStats.c
===================================================================
--- /trunk/psLib/src/imageops/psImageStats.c	(revision 3026)
+++ /trunk/psLib/src/imageops/psImageStats.c	(revision 3027)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-12-23 19:14:15 $
+ *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -300,6 +300,6 @@
 /*****************************************************************************
 psImageFitPolynomial(): This routine takes as input a 2-D image and produces
-as output the coefficients of the Chebyshev polynomials which match that
-input image.
+as output the coefficients of the Chebyshev polynomials which match that input
+image.  This is a TEST version of the code.  It is not used by anything.
   Input:
   Output:
@@ -359,7 +359,5 @@
             //            nodes->data.F64[x][y] = psImagePixelInterpolate(input, yNode, xNode, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
             //            nodes->data.F64[x][y] = psImagePixelInterpolate(input, yTmp, xTmp, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
-            printf("HMMMM: (xOrig, yOrig) is (%f, %f)\n", xOrig, yOrig);
             nodes->data.F64[x][y] = psImagePixelInterpolate(input, yOrig, xOrig, NULL, 0, 0.0, PS_INTERPOLATE_BILINEAR);
-            printf("HMMMM: interpolated pixel [%d][%d] is %f, should be %f\n", x, y, nodes->data.F64[x][y], input->data.F32[x][y]);
         }
     }
Index: /trunk/psLib/src/math/psMinimize.c
===================================================================
--- /trunk/psLib/src/math/psMinimize.c	(revision 3026)
+++ /trunk/psLib/src/math/psMinimize.c	(revision 3027)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.100 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.101 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -280,5 +280,4 @@
     // If x==NULL, create an x32 vector with x values set to (0:n).
     if (x == NULL) {
-
         PS_VECTOR_GEN_X_INDEX_STATIC_F32(x32Static, y->n);
         x32 = x32Static;
@@ -294,5 +293,5 @@
         This can not be implemented until SDR states what order spline should be
         created.
-
+        Should we error if mySpline is not NULL?
         Should we error if mySPline is not NULL?
     */
@@ -302,5 +301,4 @@
     PS_PTR_CHECK_NULL(mySpline, NULL);
     PS_INT_CHECK_NON_NEGATIVE(mySpline->n, NULL);
-
 
     if (y32->n != (1 + mySpline->n)) {
Index: /trunk/psLib/src/math/psPolynomial.c
===================================================================
--- /trunk/psLib/src/math/psPolynomial.c	(revision 3026)
+++ /trunk/psLib/src/math/psPolynomial.c	(revision 3027)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -344,5 +344,4 @@
     for (i=0;i<myPoly->n;i++) {
         tmp+= (myPoly->coeff[i] * psPolynomial1DEval(x, chebPolys[i]));
-        //            printf("HMMM: psPolynomial1DEval(%f, chebPolys[%d]) is %f\n", x, i, psPolynomial1DEval(x, chebPolys[i]));
     }
     tmp-= (myPoly->coeff[0]/2.0);
Index: /trunk/psLib/src/math/psSpline.c
===================================================================
--- /trunk/psLib/src/math/psSpline.c	(revision 3026)
+++ /trunk/psLib/src/math/psSpline.c	(revision 3027)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 22:17:29 $
+ *  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-17 23:25:09 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -344,5 +344,4 @@
     for (i=0;i<myPoly->n;i++) {
         tmp+= (myPoly->coeff[i] * psPolynomial1DEval(x, chebPolys[i]));
-        //            printf("HMMM: psPolynomial1DEval(%f, chebPolys[%d]) is %f\n", x, i, psPolynomial1DEval(x, chebPolys[i]));
     }
     tmp-= (myPoly->coeff[0]/2.0);
