Index: trunk/psLib/src/math/psStats.c
===================================================================
--- trunk/psLib/src/math/psStats.c	(revision 4392)
+++ trunk/psLib/src/math/psStats.c	(revision 4409)
@@ -14,6 +14,6 @@
  *      stats->binsize
  *
- *  @version $Revision: 1.135 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-25 02:02:05 $
+ *  @version $Revision: 1.136 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-28 20:17:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -1987,8 +1987,8 @@
  *****************************************************************************/
 psHistogram* psVectorHistogram(psHistogram* out,
-                               const psVector* in,
+                               const psVector* values,
                                const psVector* errors,
                                const psVector* mask,
-                               psU32 maskVal)
+                               psMaskType maskVal)
 {
     PS_ASSERT_PTR_NON_NULL(out, NULL);
@@ -1999,12 +1999,12 @@
     PS_ASSERT_VECTOR_TYPE(out->nums, PS_TYPE_F32, NULL);
     PS_ASSERT_INT_NONNEGATIVE(out->nums->n, NULL);
-    PS_ASSERT_VECTOR_NON_NULL(in, out);
+    PS_ASSERT_VECTOR_NON_NULL(values, out);
     if (mask != NULL) {
-        PS_ASSERT_VECTORS_SIZE_EQUAL(in, mask, NULL);
+        PS_ASSERT_VECTORS_SIZE_EQUAL(values, mask, NULL);
         PS_ASSERT_VECTOR_TYPE(mask, PS_TYPE_U8, NULL);
     }
     if (errors != NULL) {
-        PS_ASSERT_VECTORS_SIZE_EQUAL(in, errors, NULL);
-        PS_ASSERT_VECTOR_TYPE(errors, in->type.type, NULL);
+        PS_ASSERT_VECTORS_SIZE_EQUAL(values, errors, NULL);
+        PS_ASSERT_VECTOR_TYPE(errors, values->type.type, NULL);
     }
 
@@ -2021,7 +2021,7 @@
 
     // Convert input and errors vectors to F32 if necessary.
-    inF32 = p_psConvertToF32((psVector *) in);
+    inF32 = p_psConvertToF32((psVector *) values);
     if (inF32 == NULL) {
-        inF32 = (psVector *) in;
+        inF32 = (psVector *) values;
         mustFreeVectorIn = 0;
     }
@@ -2187,5 +2187,5 @@
                        const psVector* errors,
                        const psVector* mask,
-                       psU32 maskVal)
+                       psMaskType maskVal)
 {
     PS_ASSERT_PTR_NON_NULL(stats, NULL);
