Index: trunk/psLib/src/astronomy/psAstrometry.h
===================================================================
--- trunk/psLib/src/astronomy/psAstrometry.h	(revision 1384)
+++ trunk/psLib/src/astronomy/psAstrometry.h	(revision 1385)
@@ -8,6 +8,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-04 23:12:34 $
+*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-04 23:37:39 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -43,20 +43,20 @@
  */
 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;
 
@@ -71,14 +71,14 @@
  */
 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;
 
@@ -93,14 +93,14 @@
  */
 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;
 
@@ -115,15 +115,15 @@
  */
 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* toSky;           ///< transformations from cell to sky 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* toSky;           ///< transformations from cell to sky coordinates
+
+    struct psChip* parent;             ///< chip in which contains this cell
+}
 psCell;
 
@@ -137,13 +137,13 @@
  */
 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;
 
@@ -162,21 +162,21 @@
  */
 typedef struct psFPA
-    {
-        psArray* chips;                    ///< chips in the focal plane array
-        psMetadata* metadata;              ///< focal-plane's metadata
-        
-        psPlaneDistort* fromTangentPlane;  ///< transformation from tangent plane to focal plane
-        psPlaneDistort* toTangentPlane;    ///< transformation from focal plane to tangent plane
-        psFixedPattern* pattern;           ///< fixed pattern residual offsets
-        
-        const struct psExposure* exposure; ///< information about this exposure
-        
-        psPhotSystem* colorPlus;           ///< Color reference
-        psPhotSystem* colorMinus;          ///< Color reference
-        
-        float rmsX;                        ///< RMS for x transformation fits
-        float rmsY;                        ///< RMS for y transformation fits
-        float chi2;                        ///< chi^2 of astrometric solution
-    }
+{
+    psArray* chips;                    ///< chips in the focal plane array
+    psMetadata* metadata;              ///< focal-plane's metadata
+
+    psPlaneDistort* fromTangentPlane;  ///< transformation from tangent plane to focal plane
+    psPlaneDistort* toTangentPlane;    ///< transformation from focal plane to tangent plane
+    psFixedPattern* pattern;           ///< fixed pattern residual offsets
+
+    const struct psExposure* exposure; ///< information about this exposure
+
+    psPhotSystem* colorPlus;           ///< Color reference
+    psPhotSystem* colorMinus;          ///< Color reference
+
+    float rmsX;                        ///< RMS for x transformation fits
+    float rmsY;                        ///< RMS for y transformation fits
+    float chi2;                        ///< chi^2 of astrometric solution
+}
 psFPA;
 
@@ -189,26 +189,26 @@
  */
 typedef struct psExposure
-    {
-        const double ra;                  ///< Telescope boresight, right ascention
-        const double dec;                 ///< Telescope boresight, declination
-        const double hourAngle;           ///< Hour angle
-        const double zenith;              ///< Zenith distance
-        const double azimuth;             ///< Azimuth
-        const double localTime;           ///< Local Sidereal Time
-        const float date;                 ///< Modified Jullian Date of observation
-        const float rotAngle;             ///< Rotator position angle
-        const float temperature;          ///< Air temperature, for estimating refraction
-        const float pressure;             ///< Air pressure, for calculating refraction
-        const float humidity;             ///< Relative humidity, for refraction
-        const float exposureTime;         ///< Exposure time
-        
-        /* Derived quantities */
-        const float positionAngle;        ///< Position angle
-        const float parallacticAngle;     ///< Parallactic angle
-        const float airmass;              ///< Airmass, calculated from zenith distance
-        const float parallacticFactor;    ///< Parallactic factor
-        const char *cameraName;           ///< name of camera which provided exposure
-        const char *telescopeName;        ///< name of telescope which provided exposure
-    }
+{
+    const double ra;                  ///< Telescope boresight, right ascention
+    const double dec;                 ///< Telescope boresight, declination
+    const double hourAngle;           ///< Hour angle
+    const double zenith;              ///< Zenith distance
+    const double azimuth;             ///< Azimuth
+    const double localTime;           ///< Local Sidereal Time
+    const float date;                 ///< Modified Jullian Date of observation
+    const float rotAngle;             ///< Rotator position angle
+    const float temperature;          ///< Air temperature, for estimating refraction
+    const float pressure;             ///< Air pressure, for calculating refraction
+    const float humidity;             ///< Relative humidity, for refraction
+    const float exposureTime;         ///< Exposure time
+
+    /* Derived quantities */
+    const float positionAngle;        ///< Position angle
+    const float parallacticAngle;     ///< Parallactic angle
+    const float airmass;              ///< Airmass, calculated from zenith distance
+    const float parallacticFactor;    ///< Parallactic factor
+    const char *cameraName;           ///< name of camera which provided exposure
+    const char *telescopeName;        ///< name of telescope which provided exposure
+}
 psExposure;
 
