Index: trunk/psLib/src/math/psStats.h
===================================================================
--- trunk/psLib/src/math/psStats.h	(revision 1426)
+++ trunk/psLib/src/math/psStats.h	(revision 1440)
@@ -10,6 +10,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 22:44:25 $
+ *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -77,7 +77,7 @@
 
 /** Do Statistics on an array.  Returns a status value. \ingroup MathGroup */
-psStats *psVectorStats(psStats * stats, ///< stats structure defines stats to be calculated and how
-                       psVector * in,   ///< Vector to be analysed: must be F32
-                       psVector * mask, ///< Ignore elements where (maskVector & maskVal) != 0: must be INT
+psStats* psVectorStats(psStats* stats, ///< stats structure defines stats to be calculated and how
+                       psVector* in,   ///< Vector to be analysed: must be F32
+                       psVector* mask, ///< Ignore elements where (maskVector & maskVal) != 0: must be INT
                        // or NULL
                        unsigned int maskVal     ///< Only mask elements with one of these bits set in
@@ -86,5 +86,5 @@
 
 /** A constructor for the stats structure.*/
-psStats *psStatsAlloc(psStatsOptions options);  ///< Statistics to measure
+psStats* psStatsAlloc(psStatsOptions options);  ///< Statistics to measure
 
 /******************************************************************************
@@ -95,6 +95,6 @@
 typedef struct
 {
-    psVector *bounds;           ///< Bounds for the bins (type F32)
-    psVector *nums;             ///< Number in each of the bins (INT)
+    psVector* bounds;           ///< Bounds for the bins (type F32)
+    psVector* nums;             ///< Number in each of the bins (INT)
     int minNum;                 ///< Number below the minimum
     int maxNum;                 ///< Number above the maximum
@@ -104,18 +104,18 @@
 
 /** Constructor \ingroup MathGroup */
-psHistogram *psHistogramAlloc(float lower,      ///< Lower limit for the bins
+psHistogram* psHistogramAlloc(float lower,      ///< Lower limit for the bins
                               float upper,      ///< Upper limit for the bins
                               int n);   ///< Number of bins
 
 /** Generic constructor \ingroup MathGroup */
-psHistogram *psHistogramAllocGeneric(const psVector * restrict bounds); ///< Bounds for the bins
+psHistogram* psHistogramAllocGeneric(const psVector* restrict bounds); ///< Bounds for the bins
 
 /** Calculate a histogram \ingroup MathGroup **/
-psHistogram *psVectorHistogram(psHistogram * out,       ///< Histogram data
-                               const psVector * restrict in,    ///< Vector to analyse
-                               const psVector * restrict mask,  ///< Mask dat for input vector
+psHistogram* psVectorHistogram(psHistogram* out,       ///< Histogram data
+                               const psVector* restrict in,    ///< Vector to analyse
+                               const psVector* restrict mask,  ///< Mask dat for input vector
                                unsigned int maskVal);   ///< Mask value
 
-bool p_psGetStatValue(const psStats * stats, double *value);
+bool p_psGetStatValue(const psStats* stats, double *value);
 
 /// @}
