Index: trunk/archive/scripts/src/phase2/pmFPA.h
===================================================================
--- trunk/archive/scripts/src/phase2/pmFPA.h	(revision 5651)
+++ trunk/archive/scripts/src/phase2/pmFPA.h	(revision 5786)
@@ -19,29 +19,29 @@
 typedef struct {
     // Astrometric transformations
-    psPlaneDistort* fromTangentPlane;  // Transformation from tangent plane to focal plane
-    psPlaneDistort* toTangentPlane;    // Transformation from focal plane to tangent plane
-    psProjection *projection;          // Projection from tangent plane to sky
+    psPlaneDistort* fromTangentPlane;	// Transformation from tangent plane to focal plane
+    psPlaneDistort* toTangentPlane;	// Transformation from focal plane to tangent plane
+    psProjection *projection;		// Projection from tangent plane to sky
     // Information
-    psMetadata *concepts;              // Cache for PS concepts
-    psMetadata *analysis;              // FPA-level analysis metadata
-    const psMetadata *camera;          // Camera configuration
-    psArray *chips;                    // The chips
-    p_pmHDU *hdu;		       // FITS data
-    psMetadata *phu;		       // Primary Header
+    psMetadata *concepts;		// Cache for PS concepts
+    psMetadata *analysis;		// FPA-level analysis metadata
+    const psMetadata *camera;		// Camera configuration
+    psArray *chips;			// The chips
+    p_pmHDU *hdu;			// FITS data
+    psMetadata *phu;			// Primary Header
 } pmFPA;
 
 typedef struct {
     // Offset specifying position on focal plane
-    int col0;                          // Offset from the left of FPA.
-    int row0;                          // Offset from the bottom of FPA.
+    int col0;				// Offset from the left of FPA.
+    int row0;				// Offset from the bottom of FPA.
     // Astrometric transformations
-    psPlaneTransform* toFPA;           // Transformation from chip to FPA coordinates
-    psPlaneTransform* fromFPA;         // Transformation from FPA to chip coordinates
+    psPlaneTransform* toFPA;		// Transformation from chip to FPA coordinates
+    psPlaneTransform* fromFPA;		// Transformation from FPA to chip coordinates
     // Information
-    psMetadata *concepts;              // Cache for PS concepts
-    psMetadata *analysis;              // Chip-level analysis metadata
-    psArray *cells;                    // The cells (referred to by name)
-    pmFPA *parent;                     // Parent FPA
-    bool valid;                        // Do we bother about reading and working with this chip?
+    psMetadata *concepts;		// Cache for PS concepts
+    psMetadata *analysis;		// Chip-level analysis metadata
+    psArray *cells;			// The cells (referred to by name)
+    pmFPA *parent;			// Parent FPA
+    bool valid;				// Do we bother about reading and working with this chip?
     p_pmHDU *hdu;			// FITS data
 } pmChip;
@@ -49,35 +49,35 @@
 typedef struct {
     // Offset specifying position on chip
-    int col0;                          // Offset from the left of chip.
-    int row0;                          // Offset from the bottom of chip.
+    int col0;				// Offset from the left of chip.
+    int row0;				// Offset from the bottom of chip.
     // Astrometric transformations
-    psPlaneTransform* toChip;          // Transformations from cell to chip coordinates
-    psPlaneTransform* toFPA;           // Transformations from cell to FPA coordinates
-    psPlaneTransform* toSky;           // Transformations from cell to sky coordinates
+    psPlaneTransform* toChip;		// Transformations from cell to chip coordinates
+    psPlaneTransform* toFPA;		// Transformations from cell to FPA coordinates
+    psPlaneTransform* toSky;		// Transformations from cell to sky coordinates
     // Information
-    psMetadata *concepts;              // Cache for PS concepts
-    psMetadata *camera;		       // Camera information
-    psMetadata *analysis;              // Cell-level analysis metadata
-    psArray *readouts;                 // The readouts (referred to by number)
-    pmChip *parent;                    // Parent chip
-    bool valid;                        // Do we bother about reading and working with this cell?
-    p_pmHDU *hdu;		       // FITS data
+    psMetadata *concepts;		// Cache for PS concepts
+    psMetadata *camera;			// Camera information
+    psMetadata *analysis;		// Cell-level analysis metadata
+    psArray *readouts;			// The readouts (referred to by number)
+    pmChip *parent;			// Parent chip
+    bool valid;				// Do we bother about reading and working with this cell?
+    p_pmHDU *hdu;			// FITS data
 } pmCell;
 
 typedef struct {
     // Position on the cell
-    int col0;                          // Offset from the left of cell.
-    int row0;                          // Offset from the bottom of cell.
-    int colBins;                       // Amount of binning in x-dimension and parity (from sign)
-    int rowBins;                       // Amount of binning in y-dimension and parity (from sign)
+    int col0;				// Offset from the left of cell.
+    int row0;				// Offset from the bottom of cell.
+    int colBins;			// Amount of binning in x-dimension and parity (from sign)
+    int rowBins;			// Amount of binning in y-dimension and parity (from sign)
     // Information
-    psImage *image;                    // Imaging area of readout
-    psImage *mask;                     // Mask for image
-    psImage *weight;                   // Weight for image
+    psImage *image;			// Imaging area of readout
+    psImage *mask;			// Mask for image
+    psImage *weight;			// Weight for image
 #if 0
-    psList *bias;                      // List of bias section (sub-)images
+    psList *bias;			// List of bias section (sub-)images
 #endif
-    psMetadata *analysis;              // Readout-level analysis metadata
-    pmCell *parent;                    // Parent cell
+    psMetadata *analysis;		// Readout-level analysis metadata
+    pmCell *parent;			// Parent cell
 } pmReadout;
 
