Index: /trunk/psLib/src/Doxyfile
===================================================================
--- /trunk/psLib/src/Doxyfile	(revision 977)
+++ /trunk/psLib/src/Doxyfile	(revision 978)
@@ -369,14 +369,14 @@
 
 # If the value of the INPUT tag contains directories, you can use the 
-# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
-# and *.h) to filter out the source-files in the directories. If left 
-# blank the following patterns are tested: 
-# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp 
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
+# and *.h) to filter out the source-files in the directories. If left
+# blank the following patterns are tested:
+# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc
 
-FILE_PATTERNS          =
-
-# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
-# should be searched for input files as well. Possible values are YES and NO. 
+FILE_PATTERNS          = *.h *.dox
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories
+# should be searched for input files as well. Possible values are YES and NO.
 # If left blank NO is used.
 
Index: /trunk/psLib/src/dataManip/psStats.c
===================================================================
--- /trunk/psLib/src/dataManip/psStats.c	(revision 977)
+++ /trunk/psLib/src/dataManip/psStats.c	(revision 978)
@@ -28,8 +28,11 @@
 #define MYMAXFLOAT 1e99
 
+#ifndef DOXYGEN
 void p_psVectorRobustStats(const psVector *restrict myVector,
                            const psVector *restrict maskVector,
                            unsigned int maskVal,
                            psStats *stats);
+#endif
+
 /******************************************************************************
     psStatsAlloc(): This routine must create a new psStats data structure.
Index: /trunk/psLib/src/math/psStats.c
===================================================================
--- /trunk/psLib/src/math/psStats.c	(revision 977)
+++ /trunk/psLib/src/math/psStats.c	(revision 978)
@@ -28,8 +28,11 @@
 #define MYMAXFLOAT 1e99
 
+#ifndef DOXYGEN
 void p_psVectorRobustStats(const psVector *restrict myVector,
                            const psVector *restrict maskVector,
                            unsigned int maskVal,
                            psStats *stats);
+#endif
+
 /******************************************************************************
     psStatsAlloc(): This routine must create a new psStats data structure.
Index: /trunk/psLib/src/sys/psMemory.h
===================================================================
--- /trunk/psLib/src/sys/psMemory.h	(revision 977)
+++ /trunk/psLib/src/sys/psMemory.h	(revision 978)
@@ -14,6 +14,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 01:58:06 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-10 02:09:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -31,4 +31,10 @@
  *
  *  Routines dealing with the creating and setting of memory management callback functions.
+ */
+
+/**
+ *  @addtogroup memTracing Memory Tracing
+ *
+ *  Routines dealing with memory tracing and corruption checking.
  */
 
@@ -182,4 +188,5 @@
  *              blocks above id0 that have not been freed.
  *  @see psAlloc, psFree, psgetMemId, psMemProblemCallbackSet
+ *  @ingroup memTracing
  */
 int psMemCheckLeaks(
@@ -192,4 +199,5 @@
  *  i.e., invalid markers that signify a buffer under/overflow.
  *
+ *  @ingroup memTracing
  */
 int psMemCheckCorruption(
@@ -276,9 +284,10 @@
 #define PS_FREE     (void*)1
 
+//@} End of Memory Management Functions
+
+
+#ifndef DOXYGEN
+
 void p_psCustomFree(psFreeFcn fcn,void* ptr);
-
-//@} End of Memory Management Functions
-
-#ifndef DOXYGEN
 
 /*
Index: /trunk/psLib/src/sys/psTrace.h
===================================================================
--- /trunk/psLib/src/sys/psTrace.h	(revision 977)
+++ /trunk/psLib/src/sys/psTrace.h	(revision 978)
@@ -30,4 +30,5 @@
 /** Functions **************************************************************/
 
+#ifndef DOXYGEN
 /// Send a trace message
 void p_psTrace(const char *facil,  ///< facilty of interest
@@ -35,4 +36,5 @@
                ...)   ///< trace message arguments
 ;
+#endif
 
 /// Set trace level
Index: /trunk/psLib/src/sysUtils/psMemory.h
===================================================================
--- /trunk/psLib/src/sysUtils/psMemory.h	(revision 977)
+++ /trunk/psLib/src/sysUtils/psMemory.h	(revision 978)
@@ -14,6 +14,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 01:58:06 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-10 02:09:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -31,4 +31,10 @@
  *
  *  Routines dealing with the creating and setting of memory management callback functions.
+ */
+
+/**
+ *  @addtogroup memTracing Memory Tracing
+ *
+ *  Routines dealing with memory tracing and corruption checking.
  */
 
@@ -182,4 +188,5 @@
  *              blocks above id0 that have not been freed.
  *  @see psAlloc, psFree, psgetMemId, psMemProblemCallbackSet
+ *  @ingroup memTracing
  */
 int psMemCheckLeaks(
@@ -192,4 +199,5 @@
  *  i.e., invalid markers that signify a buffer under/overflow.
  *
+ *  @ingroup memTracing
  */
 int psMemCheckCorruption(
@@ -276,9 +284,10 @@
 #define PS_FREE     (void*)1
 
+//@} End of Memory Management Functions
+
+
+#ifndef DOXYGEN
+
 void p_psCustomFree(psFreeFcn fcn,void* ptr);
-
-//@} End of Memory Management Functions
-
-#ifndef DOXYGEN
 
 /*
Index: /trunk/psLib/src/sysUtils/psTrace.h
===================================================================
--- /trunk/psLib/src/sysUtils/psTrace.h	(revision 977)
+++ /trunk/psLib/src/sysUtils/psTrace.h	(revision 978)
@@ -30,4 +30,5 @@
 /** Functions **************************************************************/
 
+#ifndef DOXYGEN
 /// Send a trace message
 void p_psTrace(const char *facil,  ///< facilty of interest
@@ -35,4 +36,5 @@
                ...)   ///< trace message arguments
 ;
+#endif
 
 /// Set trace level
