Index: trunk/psModules/src/camera/pmFPA.h
===================================================================
--- trunk/psModules/src/camera/pmFPA.h	(revision 14954)
+++ trunk/psModules/src/camera/pmFPA.h	(revision 15973)
@@ -6,6 +6,6 @@
  * @author Eugene Magnier, IfA
  *
- * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- * @date $Date: 2007-09-21 01:31:51 $
+ * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2008-01-02 20:32:25 $
  * Copyright 2005-2006 Institute for Astronomy, University of Hawaii
  */
@@ -144,30 +144,24 @@
 
 /// Free all readouts within a cell
-void pmCellFreeReadouts(pmCell *cell    ///< Cell for which to free readouts
-                       );
+void pmCellFreeReadouts(pmCell *cell);    ///< Cell for which to free readouts
 
 /// Free all cells within a chip
-void pmChipFreeCells(pmChip *chip       ///< Chip for which to free cells
-                    );
+void pmChipFreeCells(pmChip *chip);       ///< Chip for which to free cells
 
 /// Free all data within a readout
-void pmReadoutFreeData(pmReadout *readout ///< Readout for which to free data
-                      );
+void pmReadoutFreeData(pmReadout *readout); ///< Readout for which to free data
 
 /// Free all data within a cell (all readouts as well as metadata)
-void pmCellFreeData(pmCell *cell        ///< Cell for which to free data
-                   );
+void pmCellFreeData(pmCell *cell);        ///< Cell for which to free data
 
 /// Free all data within a chip (all cells as well as metadata)
-void pmChipFreeData(pmChip *chip        ///< Chip for which to free data
-                   );
+void pmChipFreeData(pmChip *chip);        ///< Chip for which to free data
 
 /// Free all data within an FPA (all chips as well as metadata)
-void pmFPAFreeData(pmFPA *fpa           ///< FPA for which to free data
-                  );
+void pmFPAFreeData(pmFPA *fpa);           ///< FPA for which to free data
 
 /// Allocate a readout associated with a cell
-pmReadout *pmReadoutAlloc(pmCell *cell  ///< Parent cell, or NULL
-                         );
+pmReadout *pmReadoutAlloc(pmCell *cell);  ///< Parent cell, or NULL
+bool psMemCheckReadout(psPtr ptr);
 
 /// Allocate a cell associated with a chip
@@ -175,6 +169,7 @@
 /// The name is used to set CELL.NAME within the concepts.
 pmCell *pmCellAlloc(pmChip *chip,       ///< Parent chip, or NULL
-                    const char *name    ///< Name of cell, for CELL.NAME
-                   );
+                    const char *name);  ///< Name of cell, for CELL.NAME
+bool psMemCheckCell(psPtr ptr);
+
 
 /// Allocate a chip associated with an FPA
@@ -182,11 +177,11 @@
 /// The name is used to set CHIP.NAME within the concepts
 pmChip *pmChipAlloc(pmFPA *fpa,         ///< Parent FPA, or NULL
-                    const char *name    ///< Name of chip, for CHIP.NAME
-                   );
+                    const char *name);  ///< Name of chip, for CHIP.NAME
+bool psMemCheckChip(psPtr ptr);
+
 
 /// Allocate an FPA
-pmFPA *pmFPAAlloc(const psMetadata *camera ///< Camera configuration (to store in FPA)
-                 );
-
+pmFPA *pmFPAAlloc(const psMetadata *camera); ///< Camera configuration (to store in FPA)
+bool psMemCheckFPA(psPtr ptr);
 
 /// Check parent links within an FPA
@@ -194,6 +189,6 @@
 /// Iterates through the FPA to verify that the "parent" links in the chip, cell and readout are set
 /// correctly.  If there are any incorrect links, they are fixed, and the function returns false.
-bool pmFPACheckParents(pmFPA *fpa       ///< FPA to check
-                      );
+bool pmFPACheckParents(pmFPA *fpa);     ///< FPA to check
+
 /// @}
 #endif // #ifndef PM_FPA_H
