Index: /trunk/psModules/src/camera/pmFPAUtils.c
===================================================================
--- /trunk/psModules/src/camera/pmFPAUtils.c	(revision 9600)
+++ /trunk/psModules/src/camera/pmFPAUtils.c	(revision 9601)
@@ -10,8 +10,5 @@
 #include "pmFPAUtils.h"
 
-// Find a chip by name; return the index
-int pmFPAFindChip(const pmFPA *fpa, // FPA in which to find the chip
-                  const char *name // Name of the chip
-                 )
+int pmFPAFindChip(const pmFPA *fpa, const char *name)
 {
     PS_ASSERT_PTR_NON_NULL(fpa, -1);
@@ -34,8 +31,6 @@
 }
 
-// Find a cell by name; return the index
-int pmChipFindCell(const pmChip *chip, // Chip in which to find the cell
-                   const char *name // Name of the cell
-                  )
+
+int pmChipFindCell(const pmChip *chip, const char *name)
 {
     PS_ASSERT_PTR_NON_NULL(chip, -1);
Index: /trunk/psModules/src/camera/pmFPAUtils.h
===================================================================
--- /trunk/psModules/src/camera/pmFPAUtils.h	(revision 9600)
+++ /trunk/psModules/src/camera/pmFPAUtils.h	(revision 9601)
@@ -1,2 +1,16 @@
+/// @file pmFPAUtils.h
+///
+/// @brief Utility functions for FPAs
+///
+/// @ingroup Camera
+///
+/// @author Paul Price, IfA
+///
+/// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+/// @date $Date: 2006-10-17 03:03:35 $
+///
+/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
+///
+
 #ifndef PM_FPA_UTILS_H
 #define PM_FPA_UTILS_H
@@ -4,12 +18,18 @@
 #include "pmFPA.h"
 
-// Find a chip by name; return the index
-int pmFPAFindChip(const pmFPA *fpa, // FPA in which to find the chip
-                  const char *name // Name of the chip
+/// Find a chip by name; return the index
+///
+/// Looks for a chip within the FPA with CHIP.NAME matching the provided name.  Returns the index of the chip,
+/// or -1 if it was not found.
+int pmFPAFindChip(const pmFPA *fpa,     ///< FPA in which to find the chip
+                  const char *name      ///< Name of the chip
                  );
 
-// Find a cell by name; return the index
-int pmChipFindCell(const pmChip *chip, // Chip in which to find the cell
-                   const char *name // Name of the cell
+/// Find a cell by name; return the index
+///
+/// Looks for a cell within the chip with CELL.NAME matching the provided name.  Returns the index of the
+/// cell, or -1 if it was not found.
+int pmChipFindCell(const pmChip *chip,  // Chip in which to find the cell
+                   const char *name     // Name of the cell
                   );
 
