Index: trunk/psLib/src/astronomy/psCoord2.h
===================================================================
--- trunk/psLib/src/astronomy/psCoord2.h	(revision 1312)
+++ trunk/psLib/src/astronomy/psCoord2.h	(revision 1374)
@@ -1,18 +1,18 @@
 /** @file  psCoord2.h
- *
- *  @brief Contains basic coordinate transformation definitions and operations
- *
- *  This file defines the basic types for astronomical coordinate 
- *  transformation
- *
- *  @ingroup AstroImage
- *
- *  @author George Gusciora, MHPCC
- *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-28 22:31:19 $
- *
- *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
- */
+*
+*  @brief Contains basic coordinate transformation definitions and operations
+*
+*  This file defines the basic types for astronomical coordinate 
+*  transformation
+*
+*  @ingroup CoordinateTransform
+*
+*  @author George Gusciora, MHPCC
+*
+*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-04 00:55:17 $
+*
+*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+*/
 
 # ifndef PS_COORD2_H
@@ -25,100 +25,106 @@
 #include "psFunctions.h"
 
+/// @addtogroup CoordinateTransform
+/// @{
+
 typedef struct
-{
-    const double latitude;             ///<
-    const double sinLat, cosLat;       ///<
-    const double abberationMag;        ///<
-    const double height;               ///<
-    const double temperature;          ///<
-    const double pressure;             ///<
-    const double humidity;             ///<
-    const double wavelength;           ///<
-    const double lapseRate;            ///<
-    const double refractA, refractB;   ///<
-    const double longitudeOffset;      ///<
-    const double siderealTime;         ///<
-}
+    {
+        const double latitude;             ///<
+        const double sinLat, cosLat;       ///<
+        const double abberationMag;        ///<
+        const double height;               ///<
+        const double temperature;          ///<
+        const double pressure;             ///<
+        const double humidity;             ///<
+        const double wavelength;           ///<
+        const double lapseRate;            ///<
+        const double refractA, refractB;   ///<
+        const double longitudeOffset;      ///<
+        const double siderealTime;         ///<
+    }
 psGrommit;
 
 typedef struct
-{
-    int nX, nY;               ///<
-    double x0, y0;            ///<
-    double xScale, yScale;    ///<
-    double **x, **y;          ///<
-}
+    {
+        int nX, nY;               ///<
+        double x0, y0;            ///<
+        double xScale, yScale;    ///<
+        double **x, **y;          ///<
+    }
 psFixedPattern;
 
-psGrommit *psGrommitAlloc(const psExposure *exp);
+psGrommit *psGrommitAlloc( const psExposure *exp );
 
-void p_psGrommitFree(psGrommit *grommit);
+void p_psGrommitFree( psGrommit *grommit );
 
-psCell *psCellinFPA(psCell *out,
-                    const psPlane *coord,
-                    const psFPA *FPA);
-
-psChip *psChipinFPA(psChip *out,
-                    const psPlane *coord,
-                    const psFPA *FPA);
-
-psCell *psCellinChip(psCell *out,
+psCell *psCellinFPA( psCell *out,
                      const psPlane *coord,
-                     const psChip *chip);
-
-
-
-
-psPlane *psCoordCelltoChip(psPlane *out,
+                     const psFPA *FPA );
+                     
+psChip *psChipinFPA( psChip *out,
+                     const psPlane *coord,
+                     const psFPA *FPA );
+                     
+psCell *psCellinChip( psCell *out,
+                      const psPlane *coord,
+                      const psChip *chip );
+                      
+                      
+                      
+                      
+psPlane *psCoordCelltoChip( psPlane *out,
+                            const psPlane *in,
+                            const psCell *cell );
+                            
+psPlane *psCoordChipToFPA( psPlane *out,
                            const psPlane *in,
-                           const psCell *cell);
-
-psPlane *psCoordChipToFPA(psPlane *out,
+                           const psChip *chip );
+                           
+psPlane *psCoordFPAtoTP( psPlane *out,
+                         const psPlane *in,
+                         const psFPA *fpa );
+                         
+psSphere *psCoordTPtoSky( psSphere *out,
                           const psPlane *in,
-                          const psChip *chip);
-
-psPlane *psCoordFPAtoTP(psPlane *out,
-                        const psPlane *in,
-                        const psFPA *fpa);
-
-psSphere *psCoordTPtoSky(psSphere *out,
+                          const psGrommit *grommit );
+                          
+psPlane *psCoordCellToFPA( psPlane *out,
+                           const psPlane *in,
+                           const psCell *cell );
+                           
+psSphere *psCoordCelltoSky( psSphere *out,
+                            const psPlane *in,
+                            const psCell *cell );
+                            
+psSphere *psCoordCelltoSkyQuick( psSphere *out,
+                                 const psPlane *in,
+                                 const psCell *cell );
+                                 
+psPlane *psCoordSkytoTP( psPlane *out,
+                         const psSphere *in,
+                         const psGrommit *grommit );
+                         
+psPlane *psCoordTPtoFPA( psPlane *out,
                          const psPlane *in,
-                         const psGrommit *grommit);
-
-psPlane *psCoordCellToFPA(psPlane *out,
-                          const psPlane *in,
-                          const psCell *cell);
-
-psSphere *psCoordCelltoSky(psSphere *out,
+                         const psFPA *fpa );
+                         
+psPlane *psCoordFPAtoChip( psPlane *out,
                            const psPlane *in,
-                           const psCell *cell);
-
-psSphere *psCoordCelltoSkyQuick(psSphere *out,
-                                const psPlane *in,
-                                const psCell *cell);
-
-psPlane *psCoordSkytoTP(psPlane *out,
-                        const psSphere *in,
-                        const psGrommit *grommit);
-
-psPlane *psCoordTPtoFPA(psPlane *out,
-                        const psPlane *in,
-                        const psFPA *fpa);
-
-psPlane *psCoordFPAtoChip(psPlane *out,
-                          const psPlane *in,
-                          const psChip *chip);
-
-psPlane *psCoordChiptoCell(psPlane *out,
-                           const psPlane *in,
-                           const psCell *cell);
-
-psPlane *psCoordSkytoCell(psPlane *out,
-                          const psSphere *in,
-                          const psCell *cell);
-
-psPlane *psCoordSkytoCellQuick(psPlane *out,
-                               const psSphere *in,
-                               const psCell *cell);
+                           const psChip *chip );
+                           
+psPlane *psCoordChiptoCell( psPlane *out,
+                            const psPlane *in,
+                            const psCell *cell );
+                            
+psPlane *psCoordSkytoCell( psPlane *out,
+                           const psSphere *in,
+                           const psCell *cell );
+                           
+psPlane *psCoordSkytoCellQuick( psPlane *out,
+                                const psSphere *in,
+                                const psCell *cell );
+                                
+                                
+/// @}
 
 #endif
