Index: trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- trunk/doc/pslib/psLibSDRS.tex	(revision 4403)
+++ trunk/doc/pslib/psLibSDRS.tex	(revision 4406)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.299 2005-06-28 00:41:37 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.300 2005-06-28 01:40:27 jhoblitt Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -1527,5 +1527,5 @@
 typedef struct {
     psErrorCode code;                  ///< An error code
-    const char *descrip;               ///< the associated description
+    const char *description;           ///< the associated description
 } psErrorDescription;
 \end{datatype}
@@ -5365,5 +5365,5 @@
     PS_FFT_FORWARD = 0,                 ///< psImageFFT/psVectorFFT should perform a forward FFT.
     PS_FFT_REVERSE = 1,                 ///< psImageFFT/psVectorFFT should perform a reverse FFT.
-    PS_FFT_REAL_RESULT = 2              ///< psImageFFT/psVectorFFT should return a real image. This is valid
+    PS_FFT_REAL_RESULT = 4              ///< psImageFFT/psVectorFFT should return a real image. This is valid
                                         ///< for only reverse FFT, i.e., the psImageFFT/psVectorFFT flag
                                         ///< parameter should appear as PS_FFT_REVERSE+PS_FFT_REAL_RESULT.
@@ -5437,6 +5437,8 @@
 typedef struct {
     psImage *image;                     ///< Kernel data, in the form of an image
-    int xMin, yMin;                     ///< Most negative indices
-    int xMax, yMax;                     ///< Most positive indices
+    int xMin;                           ///< Most negative indices
+    int yMin;                           ///< Most negative indices
+    int xMax;                           ///< Most positive indices
+    int yMax;                           ///< Most positive indices
     float **kernel;                     ///< Pointer to the kernel data
     float **p_kernelRows;               ///< Pointer to the rows of the kernel data
@@ -6554,8 +6556,12 @@
 \begin{datatype}
 typedef struct {
-    int nX, nY;                         ///< Number of elements in x and y
-    double x0, y0;                      ///< Position of 0,0 corner on focal plane
-    double xScale, yScale;              ///< Scale of the grid
-    double **x, **y;                    ///< The grid of offsets in x and y
+    int nX;                             ///< Number of elements in x
+    int nY;                             ///< Number of elements in y
+    double x0;                          ///< Position of 0,0 corner on focal plane 
+    double y0;                          ///< Position of 0,0 corner on focal plane
+    double xScale;                      ///< Scale of the grid
+    double yScale;                      ///< Scale of the grid
+    double **x;                         ///< The grid of offsets in x
+    double **y;                         ///< The grid of offsets in y
 } psFixedPattern;
 \end{datatype}
@@ -6595,7 +6601,9 @@
 \begin{datatype}
 typedef struct {
-    double R, D;                         ///< coordinates of projection center
-    double Xs, Ys;                       ///< plate-scale in X and Y directions
-    psProjectionType type;               ///< projection type
+    double R;                           ///< coordinates of projection center
+    double D;                           ///< coordinates of projection center
+    double Xs;                          ///< plate-scale in X and Y directions
+    double Ys;                          ///< plate-scale in X and Y directions
+    psProjectionType type;              ///< projection type
 } psProjection;
 \end{datatype}
