Index: trunk/psLib/src/astronomy/psTime.h
===================================================================
--- trunk/psLib/src/astronomy/psTime.h	(revision 1441)
+++ trunk/psLib/src/astronomy/psTime.h	(revision 1496)
@@ -13,6 +13,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:54 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-12 01:23:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -39,14 +39,13 @@
 /** Definition of psTime.
  *
- *  The psTime struct is used by psLib to represent time values critical to astronomical calculations.  This
- *  structure represents a time which is equivalent to TAI (International Atomic Time) and is measured in
- *  both seconds and microseconds.
+ *  The psTime struct is used by psLib to represent time values critical to 
+ *  astronomical calculations.  This structure represents a time which is 
+ *  equivalent to TAI (International Atomic Time) and is measured in both 
+ *  seconds and microseconds.
  */
 typedef struct
 {
-
-    time_t tv_sec;           /**< Seconds since epoch, Jan 1, 1970. */
-
-    suseconds_t tv_usec;     /**< Microseconds since last second. */
+    time_t tv_sec;                     ///< Seconds since epoch, Jan 1, 1970.
+    suseconds_t tv_usec;               ///< Microseconds since last second.
 }
 psTime;
@@ -65,68 +64,66 @@
  */
 
-psTime psTimeGetTime(void
-                     /** No argument. */
-                    );
+psTime psTimeGetTime(void);
 
 /** Convert psTime to ISO time in TAI units.
  *
- * Converts psTime to a null terminated string in the form of: YYYY/MM/DD,HH:MM:SS.SSS. This function assumes
- * the input time already is in TAI time and does not add or subtract leapseconds.
+ *  Converts psTime to a null terminated string in the form of: 
+ *  YYYY/MM/DD,HH:MM:SS.SSS. This function assumes the input time already is 
+ *  in TAI time and does not add or subtract leapseconds.
  *
  *  @return  char*: Pointer null terminated array of chars in ISO time.
  */
 
-char *psTimeToISO(psTime time
-                  /** Input time to be converted. */
-                 );
+char *psTimeToISO(
+    psTime time                        ///< Input time to be converted.
+);
 
 /** Convert psTime to UTC time.
  *
- * Converts psTime to UTC time in double precision floating point notation. The input to this must already be
- * int TAI time. The result from this function is not in TAI units, but that of UTC, which does not contain
- * leapseconds.
+ *  Converts psTime to UTC time in double precision floating point notation. 
+ *  The input to this must already be int TAI time. The result from this 
+ *  function is not in TAI units, but that of UTC, which does not contain
+ *  leapseconds.
  *
  *  @return  psTime: UTC time psTime format.
  */
 
-psTime psTimeToUTC(psTime time
-                   /** Input time to be converted. */
-                  );
+psTime psTimeToUTC(
+    psTime time                        ///< Input time to be converted.
+);
 
 /** Convert psTime to modified Julian date time.
  *
- * Converts psTime to modified Julian date (MJD) time. This function assumes the input time already is in TAI
- * time and does not add or subtract leapseconds.
+ *  Converts psTime to modified Julian date (MJD) time. This function assumes 
+ *  the input time already is in TAI time and does not add or subtract 
+ *  leapseconds.
  *
  *  @return  double: Modified Julian Days (MJD) time.
  */
-
-double psTimeToMJD(psTime time
-                   /** Input time to be converted. */
-                  );
+double psTimeToMJD(
+    psTime time                        ///< Input time to be converted.
+);
 
 /** Convert psTime to Julian date time.
  *
- * Converts psTime to Julian date (JD) time. This function assumes the input time already is in TAI time and
- * does not add or subtract leapseconds.
+ *  Converts psTime to Julian date (JD) time. This function assumes the input 
+ *  time already is in TAI time and does not add or subtract leapseconds.
  *
  *  @return  double: Julian Date (JD) time.
  */
-
-double psTimeToJD(psTime time
-                  /** Input time to be converted. */
-                 );
+double psTimeToJD(
+    psTime time                        ///< Input time to be converted.
+);
 
 /** Convert psTime to timeval time.
  *
- * Converts psTime to timeval time. This function assumes the input time already is in TAI time and does not
- * add or subtract leapseconds.
+ *  Converts psTime to timeval time. This function assumes the input time 
+ *  already is in TAI time and does not add or subtract leapseconds.
  *
  *  @return  timeval: timeval struct time.
  */
-
-struct timeval psTimeToTimeval(psTime time
-                                           /** Input time to be converted. */
-                                          );
+struct timeval psTimeToTimeval(
+                psTime time                        ///< Input time to be converted.
+            );
 
 /** Convert psTime to tm time.
@@ -137,80 +134,73 @@
  *  @return  tm: tm struct time.
  */
-
-struct tm *psTimeToTM(psTime time
-                                  /** Input time to be converted. */
-                                 );
+struct tm *psTimeToTM(
+                psTime time                        ///< Input time to be converted.
+            );
 
 /** Convert ISO to psTime.
  *
- * Converts ISO time to psTime. This function assumes the input time already is in TAI time and does not add
- * or subtract leapseconds.
+ *  Converts ISO time to psTime. This function assumes the input time already 
+ *  is in TAI time and does not add or subtract leapseconds.
  *
  *  @return  psTime: time
  */
-
-psTime psISOToTime(char *time
-                   /** Input time to be converted. */
-                  );
+psTime psISOToTime(
+    char *time                         ///< Input time to be converted.
+);
 
 /** Convert UTC to psTime.
  *
- * Converts UTC time to psTime. This function assumes the input time already is in TAI time and add or
- * subtracts the necessary leapseconds.
+ *  Converts UTC time to psTime. This function assumes the input time already 
+ *  is in TAI time and add or subtracts the necessary leapseconds.
  *
  *  @return  psTime: time in TAI units.
  */
-
-psTime psUTCToTime(psTime time
-                   /** Input time to be converted. */
-                  );
+psTime psUTCToTime(
+    psTime time                        ///< Input time to be converted.
+);
 
 /** Convert MJD to psTime.
  *
- * Converts MJD time to psTime. This function assumes the input time already is in TAI time and does not add
- * or subtract leapseconds.
- *
- *  @return  psTime: time.
- */
-
-psTime psMJDToTime(double time
-                   /** Input time to be converted. */
-                  );
+ *  Converts MJD time to psTime. This function assumes the input time already 
+ *  is in TAI time and does not add or subtract leapseconds.
+ *
+ *  @return  psTime: time.
+ */
+psTime psMJDToTime(
+    double time                        ///< Input time to be converted.
+);
 
 /** Convert JD to psTime.
  *
- * Converts JD time to psTime. This function assumes the input time already is in TAI time and does not add
- * or subtract leapseconds.
- *
- *  @return  psTime: time.
- */
-
-psTime psJDToTime(double time
-                  /** Input time to be converted. */
-                 );
+ *  Converts JD time to psTime. This function assumes the input time already 
+ *  is in TAI time and does not add or subtract leapseconds.
+ *
+ *  @return  psTime: time.
+ */
+psTime psJDToTime(
+    double time                        ///< Input time to be converted.
+);
 
 /** Convert timeval to psTime.
  *
- * Converts timeval time to psTime. This function assumes the input time already is in TAI time and does not
- * add or subtract leapseconds.
- *
- *  @return  psTime: time.
- */
-
-psTime psTimevalToTime(struct timeval *time
-                       /** Input time to be converted. */
-                      );
+ *  Converts timeval time to psTime. This function assumes the input time 
+ *  already is in TAI time and does not add or subtract leapseconds.
+ *
+ *  @return  psTime: time.
+ */
+psTime psTimevalToTime(
+    struct timeval *time               ///< Input time to be converted.
+);
 
 /** Convert tm time to psTime.
  *
- * Converts tm time to psTime. This function assumes the input time already is in TAI time and does not add
- * or subtract leapseconds.
- *
- *  @return  psTime: time.
- */
-
-psTime psTMToTime(struct tm *time
-                  /** Input time to be converted. */
-                 );
+ *  Converts tm time to psTime. This function assumes the input time already 
+ *  is in TAI time and does not add or subtract leapseconds.
+ *
+ *  @return  psTime: time.
+ */
+psTime psTMToTime(
+    struct tm *time                    ///< Input time to be converted.
+);
 
 /// @}
