Index: trunk/psLib/src/dataManip/psFunctions.h
===================================================================
--- trunk/psLib/src/dataManip/psFunctions.h	(revision 1382)
+++ trunk/psLib/src/dataManip/psFunctions.h	(revision 1385)
@@ -12,6 +12,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-04 22:11:09 $
+*  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-04 23:37:39 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -39,6 +39,6 @@
             bool normal      ///< Indicates whether result should be normalized
           );
-          
-          
+
+
 /** Produce a vector of random numbers from a Gaussian distribution with
     the specified mean and sigma */
@@ -46,47 +46,47 @@
                          float sigma,    ///< The sigma of the Gaussian
                          int Npts );     ///< The size of the vector
-                         
-                         
-                         
-                         
-                         
+
+
+
+
+
 /** One-dimensional polynomial */
 typedef struct
-    {
-        int n;           ///< Number of terms
-        float *coeff;    ///< Coefficients
-        float *coeffErr; ///< Error in coefficients
-        char *mask;      ///< Coefficient mask
-    }
+{
+    int n;           ///< Number of terms
+    float *coeff;    ///< Coefficients
+    float *coeffErr; ///< Error in coefficients
+    char *mask;      ///< Coefficient mask
+}
 psPolynomial1D;
 
 /** Two-dimensional polynomial */
 typedef struct
-    {
-        int nX, nY;    ///< Number of terms in x and y
-        float **coeff;   ///< Coefficients
-        float **coeffErr;   ///< Error in coefficients
-        char **mask;   ///< Coefficients mask
-    }
+{
+    int nX, nY;    ///< Number of terms in x and y
+    float **coeff;   ///< Coefficients
+    float **coeffErr;   ///< Error in coefficients
+    char **mask;   ///< Coefficients mask
+}
 psPolynomial2D;
 
 /** Three-dimensional polynomial */
 typedef struct
-    {
-        int nX, nY, nZ;   ///< Number of terms in x, y and z
-        float ***coeff;    ///< Coefficients
-        float ***coeffErr;    ///< Error in coefficients
-        char ***mask;    ///< Coefficients mask
-    }
+{
+    int nX, nY, nZ;   ///< Number of terms in x, y and z
+    float ***coeff;    ///< Coefficients
+    float ***coeffErr;    ///< Error in coefficients
+    char ***mask;    ///< Coefficients mask
+}
 psPolynomial3D;
 
 /** Four-dimensional polynomial */
 typedef struct
-    {
-        int nW, nX, nY, nZ;   ///< Number of terms in w, x, y and z
-        float ****coeff;    ///< Coefficients
-        float ****coeffErr;   ///< Error in coefficients
-        char ****mask;    ///< Coefficients mask
-    }
+{
+    int nW, nX, nY, nZ;   ///< Number of terms in w, x, y and z
+    float ****coeff;    ///< Coefficients
+    float ****coeffErr;   ///< Error in coefficients
+    char ****mask;    ///< Coefficients mask
+}
 psPolynomial4D;
 
@@ -106,5 +106,5 @@
 psPolynomial4D *psPolynomial4DAlloc( int nW, int nX, int nY, int nZ ///< Number of terms in w, x, y and z
                                    );
-                                   
+
 /** Evaluate 1D polynomial */
 float
@@ -112,5 +112,5 @@
                     const psPolynomial1D *myPoly ///< Coefficients for the polynomial
                   );
-                  
+
 /** Evaluate 2D polynomial */
 float
@@ -119,5 +119,5 @@
                     const psPolynomial2D *myPoly ///< Coefficients for the polynomial
                   );
-                  
+
 /** Evaluate 3D polynomial */
 float
@@ -127,5 +127,5 @@
                     const psPolynomial3D *myPoly ///< Coefficients for the polynomial
                   );
-                  
+
 /** Evaluate 4D polynomial */
 float
@@ -136,5 +136,5 @@
                     const psPolynomial4D *myPoly ///< Coefficients for the polynomial
                   );
-                  
+
 /*****************************************************************************/
 
@@ -143,40 +143,40 @@
 /** Double-precision one-dimensional polynomial */
 typedef struct
-    {
-        int n;    ///< Number of terms
-        double *coeff;   ///< Coefficients
-        double *coeffErr;   ///< Error in coefficients
-        char *mask;    ///< Coefficient mask
-    }
+{
+    int n;    ///< Number of terms
+    double *coeff;   ///< Coefficients
+    double *coeffErr;   ///< Error in coefficients
+    char *mask;    ///< Coefficient mask
+}
 psDPolynomial1D;
 
 /** Double-precision two-dimensional polynomial */
 typedef struct
-    {
-        int nX, nY;    ///< Number of terms in x and y
-        double **coeff;   ///< Coefficients
-        double **coeffErr;    ///< Error in coefficients
-        char **mask;   ///< Coefficients mask
-    }
+{
+    int nX, nY;    ///< Number of terms in x and y
+    double **coeff;   ///< Coefficients
+    double **coeffErr;    ///< Error in coefficients
+    char **mask;   ///< Coefficients mask
+}
 psDPolynomial2D;
 
 /** Double-precision three-dimensional polynomial */
 typedef struct
-    {
-        int nX, nY, nZ;   ///< Number of terms in x, y and z
-        double ***coeff;   ///< Coefficients
-        double ***coeffErr;   ///< Error in coefficients
-        char ***mask;    ///< Coefficient mask
-    }
+{
+    int nX, nY, nZ;   ///< Number of terms in x, y and z
+    double ***coeff;   ///< Coefficients
+    double ***coeffErr;   ///< Error in coefficients
+    char ***mask;    ///< Coefficient mask
+}
 psDPolynomial3D;
 
 /** Double-precision four-dimensional polynomial */
 typedef struct
-    {
-        int nW, nX, nY, nZ;   ///< Number of terms in w, x, y and z
-        double ****coeff;    ///< Coefficients
-        double ****coeffErr;   ///< Error in coefficients
-        char ****mask;    ///< Coefficients mask
-    }
+{
+    int nW, nX, nY, nZ;   ///< Number of terms in w, x, y and z
+    double ****coeff;    ///< Coefficients
+    double ****coeffErr;   ///< Error in coefficients
+    char ****mask;    ///< Coefficients mask
+}
 psDPolynomial4D;
 
@@ -193,5 +193,5 @@
 psDPolynomial4D *psDPolynomial4DAlloc( int nW, int nX, int nY, int nZ ///< Number of terms in w, x, y and z
                                      );
-                                     
+
 /** Evaluate 1D polynomial (double precision) */
 double
@@ -199,5 +199,5 @@
                      const psDPolynomial1D *myPoly ///< Coefficients for the polynomial
                    );
-                   
+
 /** Evaluate 2D polynomial (double precision) */
 double
@@ -206,5 +206,5 @@
                      const psDPolynomial2D *myPoly ///< Coefficients for the polynomial
                    );
-                   
+
 /** Evaluate 3D polynomial (double precision) */
 double
@@ -214,5 +214,5 @@
                      const psDPolynomial3D *myPoly ///< Coefficients for the polynomial
                    );
-                   
+
 /** Evaluate 4D polynomial (double precision) */
 double
@@ -223,5 +223,5 @@
                      const psDPolynomial4D *myPoly ///< Coefficients for the polynomial
                    );
-                   
+
 /* \} */ // End of MathGroup Functions
 
