Index: trunk/psLib/src/sysUtils/psTrace.h
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.h	(revision 978)
+++ trunk/psLib/src/sysUtils/psTrace.h	(revision 1013)
@@ -1,2 +1,17 @@
+/** @file psTrace.h
+ *  \brief basic run-time trace facilities
+ *  \ingroup LogTrace
+ *
+ *  This file will hold the prototypes for defining procedures to insert
+ *  trace messages into the code.
+ *
+ *  @author Robert Lupton, Princeton University
+ *  @author George Gusciora, MHPCC
+ *
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-12 05:50:01 $
+ *
+ *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ */
 #if !defined(PS_TRACE_H)
 #define PS_TRACE_H 1
@@ -4,14 +19,8 @@
 #define DEFAULT_TRACE_LEVEL 0
 
-/** \file psTrace.h
- *  \brief basic run-time trace facilities
- *  \ingroup LogTrace
- */
-
-/*****************************************************************************
-    A component is a string of the form aaa.bbb.ccc, and may itself contain
-    further subcomponents.  The Component structure doesn't in fact contain
-    it's full name, but only the last part.
- *****************************************************************************/
+/** Basic structure for the component tree.  A component is a string of the
+    form aaa.bbb.ccc, and may itself contain further subcomponents.  The
+    Component structure doesn't in fact contain it's full name, but only the
+    last part. */
 typedef struct Component
 {
@@ -26,5 +35,4 @@
  *  \{
  */
-
 
 /** Functions **************************************************************/
@@ -59,4 +67,5 @@
 ;
 
+/// Set the destination of future trace messages.
 void psTraceSetDestination(FILE *fp);
 
