Index: /trunk/psLib/src/dataManip/psStats.c
===================================================================
--- /trunk/psLib/src/dataManip/psStats.c	(revision 1321)
+++ /trunk/psLib/src/dataManip/psStats.c	(revision 1322)
@@ -1184,5 +1184,5 @@
 
     // Populate the histogram array.
-    psHistogramVector(robustHistogram, myVector, maskVector, maskVal);
+    psVectorHistogram(robustHistogram, myVector, maskVector, maskVal);
 
     // Smooth the histogram.
@@ -1673,5 +1673,5 @@
 
 /*****************************************************************************
-psHistogramVector(out, in, mask, maskVal): this procedure takes as input a
+psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a
 preallocated and initialized histogram structure.  It fills the bins in that
 histogram structure in accordance with the input data "in" and the, possibly
@@ -1686,8 +1686,8 @@
     The histogram structure "out".
  *****************************************************************************/
-psHistogram *psHistogramVector(psHistogram *out,
+psHistogram *psVectorHistogram(psHistogram *out,
                                const psVector *restrict in,
                                const psVector *restrict mask,
-                               int maskVal)
+                               unsigned int maskVal)
 {
     int i = 0;                                  // Loop index variable
Index: /trunk/psLib/src/dataManip/psStats.h
===================================================================
--- /trunk/psLib/src/dataManip/psStats.h	(revision 1321)
+++ /trunk/psLib/src/dataManip/psStats.h	(revision 1322)
@@ -9,6 +9,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 01:04:54 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 01:59:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -114,8 +114,8 @@
 
 /** Calculate a histogram \ingroup MathGroup **/
-psHistogram *psHistogramVector (psHistogram *out,   ///< Histogram data
+psHistogram *psVectorHistogram (psHistogram *out,   ///< Histogram data
                                 const psVector *restrict in,       ///< Vector to analyse
                                 const psVector *restrict mask,     ///< Mask dat for input vector
-                                int maskVal);       ///< Mask value
+                                unsigned int maskVal);       ///< Mask value
 
 bool p_psGetStatValue(
Index: /trunk/psLib/src/math/psStats.c
===================================================================
--- /trunk/psLib/src/math/psStats.c	(revision 1321)
+++ /trunk/psLib/src/math/psStats.c	(revision 1322)
@@ -1184,5 +1184,5 @@
 
     // Populate the histogram array.
-    psHistogramVector(robustHistogram, myVector, maskVector, maskVal);
+    psVectorHistogram(robustHistogram, myVector, maskVector, maskVal);
 
     // Smooth the histogram.
@@ -1673,5 +1673,5 @@
 
 /*****************************************************************************
-psHistogramVector(out, in, mask, maskVal): this procedure takes as input a
+psVectorHistogram(out, in, mask, maskVal): this procedure takes as input a
 preallocated and initialized histogram structure.  It fills the bins in that
 histogram structure in accordance with the input data "in" and the, possibly
@@ -1686,8 +1686,8 @@
     The histogram structure "out".
  *****************************************************************************/
-psHistogram *psHistogramVector(psHistogram *out,
+psHistogram *psVectorHistogram(psHistogram *out,
                                const psVector *restrict in,
                                const psVector *restrict mask,
-                               int maskVal)
+                               unsigned int maskVal)
 {
     int i = 0;                                  // Loop index variable
Index: /trunk/psLib/src/math/psStats.h
===================================================================
--- /trunk/psLib/src/math/psStats.h	(revision 1321)
+++ /trunk/psLib/src/math/psStats.h	(revision 1322)
@@ -9,6 +9,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 01:04:54 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 01:59:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -114,8 +114,8 @@
 
 /** Calculate a histogram \ingroup MathGroup **/
-psHistogram *psHistogramVector (psHistogram *out,   ///< Histogram data
+psHistogram *psVectorHistogram (psHistogram *out,   ///< Histogram data
                                 const psVector *restrict in,       ///< Vector to analyse
                                 const psVector *restrict mask,     ///< Mask dat for input vector
-                                int maskVal);       ///< Mask value
+                                unsigned int maskVal);       ///< Mask value
 
 bool p_psGetStatValue(
