Index: trunk/archive/pslib/include/psStdArrays.h
===================================================================
--- trunk/archive/pslib/include/psStdArrays.h	(revision 247)
+++ trunk/archive/pslib/include/psStdArrays.h	(revision 257)
@@ -79,13 +79,13 @@
 } psFloatArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psFloatArray *psFloatArrayAlloc(int s,	///< Total number of elements to make available
 				int n	///< Number of elements that will be used
     );
-/** Reallocator */
+/** Reallocator \ingroup DataGroup */
 psFloatArray *psFloatArrayRealloc(psFloatArray *myArray, ///< Array to reallocate
 				  int s	///< Total number of elements to make available
     );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psFloatArrayFree(psFloatArray *restrict myArray ///< Array to free
     );
@@ -109,13 +109,13 @@
 } psComplexArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psComplexArray *psComplexArrayAlloc(int s, ///< Total number of elements to make available
 				    int n	///< Number of elements that will be used
     );
-/** Reallocator */
+/** Reallocator \ingroup DataGroup */
 psComplexArray *psComplexArrayRealloc(psComplexArray *myArray, ///< Array to reallocate
 				      int s	///< Total number of elements to make available
     );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psComplexArrayFree(psComplexArray *restrict myArray ///< Array to free
     );
@@ -131,13 +131,13 @@
 } psIntArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psIntArray *psIntArrayAlloc(int s,	///< Total number of elements to make available
 			    int n	///< Number of elements that will be used
     );
-/** Reallocator */
+/** Reallocator \ingroup DataGroup */
 psIntArray *psIntArrayRealloc(psIntArray *myArray, ///< Array to reallocate
 			      int s	///< Total number of elements to make available
     );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psIntArrayFree(psIntArray *restrict myArray ///< Array to free
     );
@@ -153,13 +153,13 @@
 } psDoubleArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psDoubleArray *psDoubleArrayAlloc(int s, ///< Total number of elements to make available
 				  int n	///< Number of elements that will be used
     );
-/** Reallocator */
+/** Reallocator \ingroup DataGroup */
 psDoubleArray *psDoubleArrayRealloc(psDoubleArray *myArray, ///< Array to reallocate
 				    int s	///< Total number of elements to make available
     );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psDoubleArrayFree(psDoubleArray *restrict myArray ///< Array to free
     );
@@ -175,13 +175,13 @@
 } psVectorArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psVectorArray *psVectorArrayAlloc(int s, ///< Total number of elements to make available
 				  int n	///< Number of elements that will be used
     );
-/** Reallocator */
+/** Reallocator \ingroup DataGroup */
 psVectorArray *psVectorArrayRealloc(psVectorArray *myArray, ///< Array to reallocate
 				    int s	///< Total number of elements to make available
     );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psVectorArrayFree(psVectorArray *restrict myArray ///< Array to free
     );
@@ -200,13 +200,13 @@
 } psVoidPtrArray;
 
-/** Constructor */
+/** Constructor \ingroup DataGroup */
 psVoidPtrArray *psVoidPtrArrayAlloc(int n, //!< Number of elements to use
 				    int s //!< Total number of elements
 				    );
-/** Reallocate */
+/** Reallocate \ingroup DataGroup */
 psVoidPtrArray *psVoidPtrArrayRealloc(psVoidPtrArray *arr, //!< Array to reallocate
 				      int n //!< Number of elements
 				      );
-/** Destructor */
+/** Destructor \ingroup DataGroup */
 void psVoidPtrArrayFree(psVoidPtrArray *arr, //!< array to destroy
 			void (*elemFree)(void *) //!< destructor for array data
