Index: /trunk/psLib/src/collections/psVector.h
===================================================================
--- /trunk/psLib/src/collections/psVector.h	(revision 1477)
+++ /trunk/psLib/src/collections/psVector.h	(revision 1478)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-11 20:17:35 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,39 +63,45 @@
 /** Allocate a vector.
  *
- * Uses psLib memory allocation functions to create a vector collection of data as defined by the psType type.
+ *  Uses psLib memory allocation functions to create a vector collection of 
+ *  data as defined by the psType type.
  *
- * @return psVector* : Pointer to psVector.
- *
+ * @return psVector*    Pointer to psVector.
  */
-psVector* psVectorAlloc(unsigned int nalloc,    ///< Total number of elements to make available.
-                        psElemType dataType     ///< Type of data to be held by vector.
-                       );
+psVector* psVectorAlloc(
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psElemType dataType                ///< Type of data to be held by vector.
+);
 
 /** Reallocate a vector.
  *
- * Uses psLib memory allocation functions to reallocate a vector collection of data. The vector is reallocated
- * according to the psType type member contained within the vector.
+ *  Uses psLib memory allocation functions to reallocate a vector collection 
+ *  of data. The vector is reallocated according to the psType type member 
+ *  contained within the vector.
  *
- * @return psVector* : Pointer to psVector.
+ *  @return psVector*      Pointer to psVector.
  *
  */
-psVector* psVectorRealloc(unsigned int nalloc,  ///< Total number of elements to make available.
-                          psVector* restrict psVec     ///< Vector to reallocate.
-                         );
+psVector* psVectorRealloc(
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psVector* restrict psVec           ///< Vector to reallocate.
+);
 
 /** Recycle a vector.
  *
- * Uses psLib memory allocation functions to reallocate a vector collection of data. The vector is reallocated
- * according to the psElemType type parameter.
+ *  Uses psLib memory allocation functions to reallocate a vector collection 
+ *  of data. The vector is reallocated according to the psElemType type 
+ *  parameter.
  *
- * @return psVector* : Pointer to psVector.
+ * @return psVector*       Pointer to psVector.
  *
  */
-psVector* psVectorRecycle(psVector* restrict psVec,
-                          ///< Vector to recycle.  If NULL, a new vector is created.  No effort taken to
-                          // preserve the values.
-                          unsigned int nalloc,  ///< Total number of elements to make available.
-                          psElemType type       ///< the datatype of the returned vector
-                         );
+psVector* psVectorRecycle(
+    psVector* restrict psVec,
+    ///< Vector to recycle.  If NULL, a new vector is created.  No effort
+    ///< taken to preserve the values.
+
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psElemType type                    ///< the datatype of the returned vector
+);
 
 /** Sort an array of floats.
@@ -104,21 +110,22 @@
  *  all non-complex data types.
  *
- *  @return  psFloatArray* : Pointer to sorted psFloatArray.
+ *  @return  psVector*     Pointer to sorted psVector.
  */
+psVector* psVectorSort(
+    psVector* restrict outVector,      ///< the output vector to recycle, or NULL if new vector desired.
+    const psVector* restrict inVector  ///< the vector to sort.
+);
 
-psVector* psVectorSort(psVector* restrict outVector,   ///< the output vector to recycle, or NULL if new
-                       // vector desired.
-                       const psVector* restrict inVector       ///< the vector to sort.
-                      );
-
-/** Creates an array of indices based on sort odred of float array.
+/** Creates an array of indices based on sort ordered of array.
  *
- *  Sorts an array of floats and creates an integer array holding indices of 
+ *  Sorts a vector and creates an integer array holding indices of 
  *  sorted float values based on pre-sort index positions.  
  *
- *  @return  psIntArray* : Pointer to psIntArray of sorted indices.
+ *  @return  psVector*     vector of the indices of sort.
  */
-
-psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector);
+psVector* psVectorSortIndex(
+    psVector* restrict outVector,      ///< vector to recycle
+    const psVector* restrict inVector  ///< vector to sort
+);
 
 /// @}
Index: /trunk/psLib/src/mathtypes/psVector.h
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.h	(revision 1477)
+++ /trunk/psLib/src/mathtypes/psVector.h	(revision 1478)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-11 20:17:35 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,39 +63,45 @@
 /** Allocate a vector.
  *
- * Uses psLib memory allocation functions to create a vector collection of data as defined by the psType type.
+ *  Uses psLib memory allocation functions to create a vector collection of 
+ *  data as defined by the psType type.
  *
- * @return psVector* : Pointer to psVector.
- *
+ * @return psVector*    Pointer to psVector.
  */
-psVector* psVectorAlloc(unsigned int nalloc,    ///< Total number of elements to make available.
-                        psElemType dataType     ///< Type of data to be held by vector.
-                       );
+psVector* psVectorAlloc(
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psElemType dataType                ///< Type of data to be held by vector.
+);
 
 /** Reallocate a vector.
  *
- * Uses psLib memory allocation functions to reallocate a vector collection of data. The vector is reallocated
- * according to the psType type member contained within the vector.
+ *  Uses psLib memory allocation functions to reallocate a vector collection 
+ *  of data. The vector is reallocated according to the psType type member 
+ *  contained within the vector.
  *
- * @return psVector* : Pointer to psVector.
+ *  @return psVector*      Pointer to psVector.
  *
  */
-psVector* psVectorRealloc(unsigned int nalloc,  ///< Total number of elements to make available.
-                          psVector* restrict psVec     ///< Vector to reallocate.
-                         );
+psVector* psVectorRealloc(
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psVector* restrict psVec           ///< Vector to reallocate.
+);
 
 /** Recycle a vector.
  *
- * Uses psLib memory allocation functions to reallocate a vector collection of data. The vector is reallocated
- * according to the psElemType type parameter.
+ *  Uses psLib memory allocation functions to reallocate a vector collection 
+ *  of data. The vector is reallocated according to the psElemType type 
+ *  parameter.
  *
- * @return psVector* : Pointer to psVector.
+ * @return psVector*       Pointer to psVector.
  *
  */
-psVector* psVectorRecycle(psVector* restrict psVec,
-                          ///< Vector to recycle.  If NULL, a new vector is created.  No effort taken to
-                          // preserve the values.
-                          unsigned int nalloc,  ///< Total number of elements to make available.
-                          psElemType type       ///< the datatype of the returned vector
-                         );
+psVector* psVectorRecycle(
+    psVector* restrict psVec,
+    ///< Vector to recycle.  If NULL, a new vector is created.  No effort
+    ///< taken to preserve the values.
+
+    unsigned int nalloc,               ///< Total number of elements to make available.
+    psElemType type                    ///< the datatype of the returned vector
+);
 
 /** Sort an array of floats.
@@ -104,21 +110,22 @@
  *  all non-complex data types.
  *
- *  @return  psFloatArray* : Pointer to sorted psFloatArray.
+ *  @return  psVector*     Pointer to sorted psVector.
  */
+psVector* psVectorSort(
+    psVector* restrict outVector,      ///< the output vector to recycle, or NULL if new vector desired.
+    const psVector* restrict inVector  ///< the vector to sort.
+);
 
-psVector* psVectorSort(psVector* restrict outVector,   ///< the output vector to recycle, or NULL if new
-                       // vector desired.
-                       const psVector* restrict inVector       ///< the vector to sort.
-                      );
-
-/** Creates an array of indices based on sort odred of float array.
+/** Creates an array of indices based on sort ordered of array.
  *
- *  Sorts an array of floats and creates an integer array holding indices of 
+ *  Sorts a vector and creates an integer array holding indices of 
  *  sorted float values based on pre-sort index positions.  
  *
- *  @return  psIntArray* : Pointer to psIntArray of sorted indices.
+ *  @return  psVector*     vector of the indices of sort.
  */
-
-psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector);
+psVector* psVectorSortIndex(
+    psVector* restrict outVector,      ///< vector to recycle
+    const psVector* restrict inVector  ///< vector to sort
+);
 
 /// @}
