Index: trunk/psLib/src/fits/psFits.h
===================================================================
--- trunk/psLib/src/fits/psFits.h	(revision 4162)
+++ trunk/psLib/src/fits/psFits.h	(revision 4190)
@@ -7,6 +7,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-09 19:26:48 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -27,10 +27,15 @@
 /// @{
 
+/** FITS HDU type.
+ *
+ *  Enumeration for FITS HDU type.
+ *
+ */
 typedef enum {
-    PS_FITS_TYPE_NONE = -1,
-    PS_FITS_TYPE_IMAGE = IMAGE_HDU,
-    PS_FITS_TYPE_BINARY_TABLE = BINARY_TBL,
-    PS_FITS_TYPE_ASCII_TABLE = ASCII_TBL,
-    PS_FITS_TYPE_ANY = ANY_HDU
+    PS_FITS_TYPE_NONE = -1,    ///< Unknown HDU type
+    PS_FITS_TYPE_IMAGE = IMAGE_HDU,   ///< Image HDU type
+    PS_FITS_TYPE_BINARY_TABLE = BINARY_TBL,   ///< Binary table HDU type
+    PS_FITS_TYPE_ASCII_TABLE = ASCII_TBL,  ///< ASCII table HDU type
+    PS_FITS_TYPE_ANY = ANY_HDU    ///< Any HDU type
 } psFitsType;
 
