Index: trunk/psLib/src/image/psImageIO.h
===================================================================
--- trunk/psLib/src/image/psImageIO.h	(revision 1441)
+++ trunk/psLib/src/image/psImageIO.h	(revision 1442)
@@ -10,6 +10,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-10 01:05:53 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -30,36 +30,36 @@
  *                          signifies that a problem had occured.
  */
-psImage* psImageReadSection(psImage* output,
+psImage* psImageReadSection(
+    psImage* output,
+    /**< the output psImage to recycle, or NULL if new psImage desired */
 
-                            /**< the output psImage to recycle, or NULL if new psImage desired */
-                            int col0,
+    int col0,
+    /**< the column index of the origin to start reading */
 
-                            /**< the column index of the origin to start reading */
-                            int row0,
+    int row0,
+    /**< the row index of the origin to start reading */
 
-                            /**< the row index of the origin to start reading */
-                            int numCols,
+    int numCols,
+    /**< the number of desired columns to read */
 
-                            /**< the number of desired columns to read */
-                            int numRows,
+    int numRows,
+    /**< the number of desired rows to read */
 
-                            /**< the number of desired rows to read */
-                            int z,
+    int z,
+    /**< the z index to read if file is organized as a 3D image cube. */
 
-                            /**< the z index to read if file is organized as a 3D image cube. */
-                            char *extname,
+    char *extname,
+    /**< the image extension to read (this should match the EXTNAME keyword in
+        *   the extension If NULL, the extnum parameter is to be used instead
+        */
 
-                            /**< the image extension to read (this should match the EXTNAME keyword in
-                             *   the extension If NULL, the extnum parameter is to be used instead
-                             */
-                            int extnum,
+    int extnum,
+    /**< the image extension to read (0=PHU, 1=first extension, etc.)  This is
+        *   only used if extname is NULL
+        */
 
-                            /**< the image extension to read (0=PHU, 1=first extension, etc.)  This is
-                             *   only used if extname is NULL
-                             */
-                            char *filename
-
-                            /**< the filename of the FITS image file to read */
-                           );
+    char *filename
+    /**< the filename of the FITS image file to read */
+);
 
 /** Read an image or subimage from a FITS file specified by a filename.
@@ -67,30 +67,30 @@
  *  return bool         TRUE is successful, otherwise FALSE.
  */
-bool psImageWriteSection(psImage* input,
+bool psImageWriteSection(
+    psImage* input,
+    /**< the psImage to write */
 
-                         /**< the psImage to write */
-                         int col0,
+    int col0,
+    /**< the column index of the origin to start writing */
 
-                         /**< the column index of the origin to start writing */
-                         int row0,
+    int row0,
+    /**< the row index of the origin to start writing */
 
-                         /**< the row index of the origin to start writing */
-                         int z,
+    int z,
+    /**< the z index to start writing */
 
-                         /**< the z index to start writing */
-                         char *extname,
+    char *extname,
+    /**< the image extension to write (this should match the EXTNAME keyword in
+    *   the extension If NULL, the extnum parameter is to be used instead
+    */
 
-                         /**< the image extension to write (this should match the EXTNAME keyword in
-                          *   the extension If NULL, the extnum parameter is to be used instead
-                          */
-                         int extnum,
+    int extnum,
+    /**< the image extension to write (0=PHU, 1=first extension, etc.)  This is
+    *   only used if extname is NULL.
+    */
 
-                         /**< the image extension to write (0=PHU, 1=first extension, etc.)  This is
-                          *   only used if extname is NULL.
-                          */
-                         char *filename
-
-                         /**< the filename of the FITS image file to write */
-                        );
+    char *filename
+    /**< the filename of the FITS image file to write */
+);
 
 /// @}
