Index: trunk/psLib/src/imageops/psImageStats.h
===================================================================
--- trunk/psLib/src/imageops/psImageStats.h	(revision 1374)
+++ trunk/psLib/src/imageops/psImageStats.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file psImageStats.h
 *  \brief Routines for calculating statistics on images.
@@ -9,18 +10,17 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-04 00:55:17 $
+*  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-07 00:06:06 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
 */
 #if !defined(PS_IMAGE_STATS_H)
-#define PS_IMAGE_STATS_H
+#    define PS_IMAGE_STATS_H
 
-
-#include "psType.h"
-#include "psVector.h"
-#include "psImage.h"
-#include "psStats.h"
-#include "psFunctions.h"
+#    include "psType.h"
+#    include "psVector.h"
+#    include "psImage.h"
+#    include "psStats.h"
+#    include "psFunctions.h"
 
 /// @addtogroup ImageStats
@@ -28,27 +28,25 @@
 
 /// This routine must determine the various statistics for the image.
-psStats *psImageStats( psStats *stats,  ///< defines statistics to be calculated
-                       psImage *in,     ///< image (or subimage) to calculate stats
-                       psImage *mask,   ///< mask data for image (NULL ok)
-                       int maskVal );   ///< mask Mask for mask
-                       
-                       
-psHistogram *psImageHistogram( psHistogram *out,   ///< input histogram description & target
-                               psImage *in,        ///< Image data to be histogramed.
-                               psImage *mask,      ///< mask data for image (NULL ok)
-                               unsigned int maskVal );  ///< mask Mask for mask
-                               
+psStats *psImageStats(psStats * stats,  // /< defines statistics to be calculated
+                      psImage * in,     // /< image (or subimage) to calculate stats
+                      psImage * mask,   // /< mask data for image (NULL ok)
+                      int maskVal);     // /< mask Mask for mask
+
+psHistogram *psImageHistogram(psHistogram * out,        // /< input histogram description & target
+                              psImage * in,     // /< Image data to be histogramed.
+                              psImage * mask,   // /< mask data for image (NULL ok)
+                              unsigned int maskVal);    // /< mask Mask for mask
+
 /// Fit a 2-D polynomial surface to an image.
-psPolynomial2D *
-psImageFitPolynomial( const psImage *input,  ///< image to fit
-                      psPolynomial2D *coeffs ///< coefficient structure carries in desired terms & target
-                    );
-                    
+psPolynomial2D *psImageFitPolynomial(const psImage * input,     // /< image to fit
+                                     psPolynomial2D * coeffs    // /< coefficient structure carries in
+                                     // desired terms & target
+                                    );
+
 /// Evaluate a 2-D polynomial surface to image pixels.
-int
-psImageEvalPolynomial( const psImage *input,  ///< image to fit
-                       const psPolynomial2D *coeffs ///< coefficient structure carries in desired terms
-                     );
-                     
+int psImageEvalPolynomial(const psImage * input,        // /< image to fit
+                          const psPolynomial2D * coeffs // /< coefficient structure carries in desired terms
+                         );
+
 /// @}
 
