Index: trunk/psLib/src/sys/psTrace.h
===================================================================
--- trunk/psLib/src/sys/psTrace.h	(revision 4409)
+++ trunk/psLib/src/sys/psTrace.h	(revision 4610)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-28 20:17:52 $
+ *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-07-26 00:44:44 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -51,12 +51,13 @@
         typedef struct p_psComponent
         {
-            const char *name;   // last part of name of component
-            psS32 level;   // trace level for this component
-            bool p_psSpecified;
-            psS32 n;    // number of subcomponents
-            struct p_psComponent* *subcomp;     // next level of subcomponents
+            const char *name;                  ///< last part of name of component
+            psS32 level;                       ///< trace level for this component
+            bool p_psSpecified;                ///< whether the component is specified
+            psS32 n;                           ///< number of subcomponents
+            struct p_psComponent* *subcomp;    ///< next level of subcomponents
         }
 p_psComponent;
 
+/** Sends a trace message. */
 #ifdef DOXYGEN
 void psTrace(
@@ -80,5 +81,8 @@
 #endif /* DOXYGEN */
 
-/// Set trace level
+/** Set trace level
+ *
+ *  @return psBool:       True if successful, otherwise false
+ */
 psBool psTraceSetLevel(
     const char *facil,                 ///< facilty of interest
@@ -86,5 +90,8 @@
 );
 
-/// Get the trace level
+/** Get the trace level
+ *
+ *  @return int:    Trace Level
+ */
 int psTraceGetLevel(
     const char *facil                  ///< facilty of interest
@@ -99,8 +106,11 @@
 /// Set the destination of future trace messages.
 void psTraceSetDestination(
-    FILE * fp                          ///<
+    FILE * fp                          ///< Pointer to file
 );
 
-/// Get the current destination for trace messages.
+/** Get the current destination for trace messages.
+ *
+ *  @return FILE*:      File Destination
+ */
 FILE *psTraceGetDestination(void);
 
