Index: trunk/psLib/src/math/psStats.c
===================================================================
--- trunk/psLib/src/math/psStats.c	(revision 2251)
+++ trunk/psLib/src/math/psStats.c	(revision 2268)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-11-02 00:07:49 $
+ *  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-11-02 19:13:03 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -158,9 +158,11 @@
 
 void p_psVectorSampleMean(const psVector* restrict myVector,
-                          const psVector* restrict maskVector, psU32 maskVal, psStats* stats)
-{
-    psS32 i = 0;                  // Loop index variable
+                          const psVector* restrict maskVector,
+                          psU32 maskVal,
+                          psStats* stats)
+{
+    psS32 i = 0;                // Loop index variable
     float mean = 0.0;           // The mean
-    psS32 count = 0;              // # of points in this mean?
+    psS32 count = 0;            // # of points in this mean
     float rangeMin = 0.0;       // Exclude data below this
     float rangeMax = 0.0;       // Exclude date above this
@@ -175,5 +177,6 @@
                 // Check if the data is with the specified range
                 if (!(maskVal & maskVector->data.U8[i]) &&
-                        (rangeMin <= myVector->data.F32[i]) && (myVector->data.F32[i] <= rangeMax)) {
+                        (rangeMin <= myVector->data.F32[i]) &&
+                        (myVector->data.F32[i] <= rangeMax)) {
                     mean += myVector->data.F32[i];
                     count++;
@@ -222,7 +225,9 @@
  *****************************************************************************/
 void p_psVectorMax(const psVector* restrict myVector,
-                   const psVector* restrict maskVector, psU32 maskVal, psStats* stats)
-{
-    psS32 i = 0;                  // Loop index variable
+                   const psVector* restrict maskVector,
+                   psU32 maskVal,
+                   psStats* stats)
+{
+    psS32 i = 0;                // Loop index variable
     float max = -PS_MAX_FLOAT;  // The calculated maximum
     float rangeMin = 0.0;       // Exclude data below this
@@ -283,7 +288,9 @@
  *****************************************************************************/
 void p_psVectorMin(const psVector* restrict myVector,
-                   const psVector* restrict maskVector, psU32 maskVal, psStats* stats)
-{
-    psS32 i = 0;                  // Loop index variable
+                   const psVector* restrict maskVector,
+                   psU32 maskVal,
+                   psStats* stats)
+{
+    psS32 i = 0;                // Loop index variable
     float min = PS_MAX_FLOAT;   // The calculated maximum
     float rangeMin = 0.0;       // Exclude data below this
@@ -344,8 +351,10 @@
  *****************************************************************************/
 psS32 p_psVectorNValues(const psVector* restrict myVector,
-                        const psVector* restrict maskVector, psU32 maskVal, psStats* stats)
-{
-    psS32 i = 0;                  // Loop index variable
-    psS32 numData = 0;            // The number of data points
+                        const psVector* restrict maskVector,
+                        psU32 maskVal,
+                        psStats* stats)
+{
+    psS32 i = 0;                // Loop index variable
+    psS32 numData = 0;          // The number of data points
     float rangeMin = 0.0;       // Exclude data below this
     float rangeMax = 0.0;       // Exclude date above this
