Index: /trunk/psModules/src/camera/pmFPAHeader.c
===================================================================
--- /trunk/psModules/src/camera/pmFPAHeader.c	(revision 9591)
+++ /trunk/psModules/src/camera/pmFPAHeader.c	(revision 9592)
@@ -15,7 +15,5 @@
 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
-bool pmCellReadHeader(pmCell *cell,     // Cell for which to read header
-                      psFits *fits      // FITS file handle
-                     )
+bool pmCellReadHeader(pmCell *cell, psFits *fits)
 {
     PS_ASSERT_PTR_NON_NULL(cell, false);
@@ -34,7 +32,5 @@
 
 
-bool pmChipReadHeader(pmChip *chip,     // Chip for which to read header
-                      psFits *fits      // FITS file handle
-                     )
+bool pmChipReadHeader(pmChip *chip, psFits *fits)
 {
     PS_ASSERT_PTR_NON_NULL(chip, false);
@@ -58,7 +54,5 @@
 
 
-bool pmFPAReadHeader(pmFPA *fpa,        // FPA for which to read header
-                     psFits *fits       // FITS file handle
-                    )
+bool pmFPAReadHeader(pmFPA *fpa, psFits *fits)
 {
     PS_ASSERT_PTR_NON_NULL(fpa, false);
Index: /trunk/psModules/src/camera/pmFPAHeader.h
===================================================================
--- /trunk/psModules/src/camera/pmFPAHeader.h	(revision 9591)
+++ /trunk/psModules/src/camera/pmFPAHeader.h	(revision 9592)
@@ -1,14 +1,42 @@
+/// @file pmFPAHeader.h
+///
+/// @brief Functions read FITS headers for FPA components
+///
+/// @ingroup Camera
+///
+/// @author Paul Price, IfA
+///
+/// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+/// @date $Date: 2006-10-17 01:29:02 $
+///
+/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
+///
+
 #ifndef PM_FPA_HEADER_H
 #define PM_FPA_HEADER_H
 
-bool pmCellReadHeader(pmCell *cell,     // Cell for which to read header
-                      psFits *fits      // FITS file handle
-                     );
-bool pmChipReadHeader(pmChip *chip,     // Chip for which to read header
-                      psFits *fits      // FITS file handle
-                     );
-bool pmFPAReadHeader(pmFPA *fpa,        // FPA for which to read header
-                     psFits *fits       // FITS file handle
+/// Read the FITS header (and ingest concepts) for an FPA, if it exists at this level
+///
+/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
+/// was already there.  No iteration to lower levels is performed.
+bool pmFPAReadHeader(pmFPA *fpa,        ///< FPA for which to read header
+                     psFits *fits       ///< FITS file handle
                     );
 
+/// Read the FITS header (and ingest concepts) for a chip, if it exists at this level
+///
+/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
+/// was already there.  No iteration to lower levels is performed.
+bool pmChipReadHeader(pmChip *chip,     ///< Chip for which to read header
+                      psFits *fits      ///< FITS file handle
+                     );
+
+/// Read the FITS header (and ingest concepts) for a cell, if it exists at this level
+///
+/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
+/// was already there.  No iteration to lower levels is performed.
+bool pmCellReadHeader(pmCell *cell,     ///< Cell for which to read header
+                      psFits *fits      ///< FITS file handle
+                     );
+
 #endif
