Index: trunk/psLib/src/astronomy/psAstrometry.h
===================================================================
--- trunk/psLib/src/astronomy/psAstrometry.h	(revision 1489)
+++ trunk/psLib/src/astronomy/psAstrometry.h	(revision 1496)
@@ -8,6 +8,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-11 23:33:44 $
+*  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-12 01:23:20 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -44,18 +44,18 @@
 typedef struct
 {
-    const double latitude;      ///< geodetic latitude (radians)
-    const double sinLat;        ///< sine of geodetic latitude
-    const double cosLat;        ///< cosine of geodetic latitude
-    const double abberationMag; ///< magnitude of diurnal aberration vector
-    const double height;        ///< height (HM)
-    const double temperature;   ///< ambient temperature (TDK)
-    const double pressure;      ///< pressure (PMB)
-    const double humidity;      ///< relative humidity (RH)
-    const double wavelength;    ///< wavelength (WL)
-    const double lapseRate;     ///< lapse rate (TLR)
-    const double refractA;      ///< refraction constant A (radians)
-    const double refractB;      ///< refraction constant B (radians)
-    const double longitudeOffset; ///< longitude + ... (radians)
-    const double siderealTime;  ///< local apparent sidereal time (radians)
+    const double latitude;             ///< geodetic latitude (radians)
+    const double sinLat;               ///< sine of geodetic latitude
+    const double cosLat;               ///< cosine of geodetic latitude
+    const double abberationMag;        ///< magnitude of diurnal aberration vector
+    const double height;               ///< height (HM)
+    const double temperature;          ///< ambient temperature (TDK)
+    const double pressure;             ///< pressure (PMB)
+    const double humidity;             ///< relative humidity (RH)
+    const double wavelength;           ///< wavelength (WL)
+    const double lapseRate;            ///< lapse rate (TLR)
+    const double refractA;             ///< refraction constant A (radians)
+    const double refractB;             ///< refraction constant B (radians)
+    const double longitudeOffset;      ///< longitude + ... (radians)
+    const double siderealTime;         ///< local apparent sidereal time (radians)
 }
 psGrommit;
@@ -72,12 +72,12 @@
 typedef struct
 {
-    int nX;                     ///< Number of elements in x direction
-    int nY;                     ///< Number of elements in y direction
-    double x0;                  ///< X Position of 0,0 corner on focal plane
-    double y0;                  ///< Y Position of 0,0 corner on focal plane
-    double xScale;              ///< Scale of the grid in x direction
-    double yScale;              ///< Scale of the grid in x direction
-    double **x;                 ///< The grid of offsets in x
-    double **y;                 ///< The grid of offsets in y
+    int nX;                            ///< Number of elements in x direction
+    int nY;                            ///< Number of elements in y direction
+    double x0;                         ///< X Position of 0,0 corner on focal plane
+    double y0;                         ///< Y Position of 0,0 corner on focal plane
+    double xScale;                     ///< Scale of the grid in x direction
+    double yScale;                     ///< Scale of the grid in x direction
+    double **x;                        ///< The grid of offsets in x
+    double **y;                        ///< The grid of offsets in y
 }
 psFixedPattern;
@@ -94,12 +94,12 @@
 typedef struct
 {
-    const unsigned int colBins; ///< Amount of binning in x-dimension
-    const unsigned int rowBins; ///< Amount of binning in y-dimension
-    const int col0;             ///< Offset from the left of chip.
-    const int row0;             ///< Offset from the bottom of chip.
-
-    psImage* image;             ///< imaging area of Readout
-    psList* objects;            ///< objects derived from Readout
-    psMetadata* metadata;       ///< readout-level metadata
+    const unsigned int colBins;        ///< Amount of binning in x-dimension
+    const unsigned int rowBins;        ///< Amount of binning in y-dimension
+    const int col0;                    ///< Offset from the left of chip.
+    const int row0;                    ///< Offset from the bottom of chip.
+
+    psImage* image;                    ///< imaging area of Readout
+    psList* objects;                   ///< objects derived from Readout
+    psMetadata* metadata;              ///< readout-level metadata
 }
 psReadout;
@@ -116,13 +116,13 @@
 typedef struct psCell
 {
-    psArray* readouts;          ///< readouts from the cell
-    psMetadata* metadata;       ///< cell-level metadata
-
-    psPlaneTransform* toChip;   ///< transformations from cell to chip coordinates
-    psPlaneTransform* fromChip; ///< transformations from chip to cell coordinates
-    psPlaneTransform* toFPA;    ///< transformations from cell to FPA coordinates
-    psPlaneTransform* toTP;     ///< transformations from cell to tangent plane coordinates
-
-    struct psChip* parent;      ///< chip in which contains this cell
+    psArray* readouts;                 ///< readouts from the cell
+    psMetadata* metadata;              ///< cell-level metadata
+
+    psPlaneTransform* toChip;          ///< transformations from cell to chip coordinates
+    psPlaneTransform* fromChip;        ///< transformations from chip to cell coordinates
+    psPlaneTransform* toFPA;           ///< transformations from cell to FPA coordinates
+    psPlaneTransform* toTP;            ///< transformations from cell to tangent plane coordinates
+
+    struct psChip* parent;             ///< chip in which contains this cell
 }
 psCell;
@@ -138,11 +138,11 @@
 typedef struct psChip
 {
-    psArray* cells;             ///< cells in the chip
-    psMetadata* metadata;       ///< chip-level metadata
-
-    psPlaneTransform* toFPA;    ///< transformation from chip to FPA coordinates
-    psPlaneTransform* fromFPA;  ///< transformation from FPA to chip coordinates
-
-    struct psFPA* parent;       ///< FPA which contains this chip
+    psArray* cells;                    ///< cells in the chip
+    psMetadata* metadata;              ///< chip-level metadata
+
+    psPlaneTransform* toFPA;           ///< transformation from chip to FPA coordinates
+    psPlaneTransform* fromFPA;         ///< transformation from FPA to chip coordinates
+
+    struct psFPA* parent;              ///< FPA which contains this chip
 }
 psChip;
