Index: trunk/psModules/src/camera/pmFPA.c
===================================================================
--- trunk/psModules/src/camera/pmFPA.c	(revision 9584)
+++ trunk/psModules/src/camera/pmFPA.c	(revision 9621)
@@ -1,28 +1,6 @@
-/** @file  pmFPA.c
-*
-*  @brief This file defines the basic types for the FPA hierarchy
-*
-*  @ingroup AstroImage
-*
-*  @author GLG, MHPCC
-*
-* XXX: We should review the extent of the warning messages on these functions
-* when the transformations are not successful.
-*
-* XXX: Should we implement non-linear cell->chip transforms?
-*
-*  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-17 00:33:56 $
-*
-*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
-*/
-
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
 
-/******************************************************************************/
-/*  INCLUDE FILES                                                             */
-/******************************************************************************/
 #include <string.h>
 #include <math.h>
@@ -35,12 +13,10 @@
 #include "pmMaskBadPixels.h"
 
-/******************************************************************************
- *****************************************************************************/
-
 static void readoutFree(pmReadout *readout)
 {
     // if this readout has a parent, drop that instance
     if (readout->parent) {
-        psTrace("psModules.camera", 9, "Removing readout %zd from cell %zd...\n", (size_t)readout, (size_t)readout->parent);
+        psTrace("psModules.camera", 9, "Removing readout %zd from cell %zd...\n",
+                (size_t)readout, (size_t)readout->parent);
         psArray *readouts = readout->parent->readouts;
         for (int i = 0; i < readouts->n; i++) {
@@ -63,5 +39,6 @@
     // if this cell has a parent, drop that instance
     if (cell->parent) {
-        psTrace("psModules.camera", 9, "Removing cell %zd from chip %zd...\n", (size_t)cell, (size_t)cell->parent);
+        psTrace("psModules.camera", 9, "Removing cell %zd from chip %zd...\n",
+                (size_t)cell, (size_t)cell->parent);
         psArray *cells = cell->parent->cells;
         for (int i = 0; i < cells->n; i++) {
@@ -85,5 +62,6 @@
     // if this chip has a parent, drop that instance
     if (chip->parent) {
-        psTrace("psModules.camera", 9, "Removing chip %zd from fpa %zd...\n", (size_t)chip, (size_t)chip->parent);
+        psTrace("psModules.camera", 9, "Removing chip %zd from fpa %zd...\n",
+                (size_t)chip, (size_t)chip->parent);
         psArray *chips = chip->parent->chips;
         for (int i = 0; i < chips->n; i++) {
