Index: trunk/archive/pslib/include/psPosition.h
===================================================================
--- trunk/archive/pslib/include/psPosition.h	(revision 295)
+++ trunk/archive/pslib/include/psPosition.h	(revision 344)
@@ -13,14 +13,14 @@
 typedef union {
     struct {
-	double x;			//!< x position
-	double y;			//!< y position
-	double xErr;			//!< Error in x position
-	double yErr;			//!< Error in y position
+	double x;			///< x position
+	double y;			///< y position
+	double xErr;			///< Error in x position
+	double yErr;			///< Error in y position
     } xy;
     struct {
-	double r;			//!< RA
-	double d;			//!< Dec
-	double rErr;			//!< Error in RA
-	double dErr;			//!< Error in Dec
+	double r;			///< RA
+	double d;			///< Dec
+	double rErr;			///< Error in RA
+	double dErr;			///< Error in Dec
     } rd;
 } psCoord;
@@ -48,5 +48,5 @@
 
 /** apply the coordinate transformation to the given coordinate */
-psCoord *psCoordXformApply (psCoord *out, //!< Output coordinates, or NULL
+psCoord *psCoordXformApply (psCoord *out, ///< Output coordinates, or NULL
 			    const psCoordXform *frame, ///< coordinate transformation
 			    const psCoord *coords ///< input coordiate
@@ -54,5 +54,5 @@
 
 /** apply the optical distortion to the given coordinate, magnitude, color */
-psCoord *psDistortionApply (psCoord *out, //!< Output coordinates, or NULL
+psCoord *psDistortionApply (psCoord *out, ///< Output coordinates, or NULL
 			    const psdistortion *pattern, ///< optical distortion pattern
 			    const psCoord *coords, ///< input coordinate
@@ -63,14 +63,14 @@
 /** Get offset (RA,Dec) on the sky between two positions position1 and position2 may not be identical */
 psCoord *
-psGetOffset(const psCoord *restrict position1, //!< Position 1
-	    const psCoord *restrict position2, //!< Position 2
-	    const char *type		//!< Type of offset: Linear, Spherical/Arcsec, Spherical/Degreees etc
+psGetOffset(const psCoord *restrict position1, ///< Position 1
+	    const psCoord *restrict position2, ///< Position 2
+	    const char *type		///< Type of offset: Linear, Spherical/Arcsec, Spherical/Degreees etc
     );
 
 /** Apply an offset to a position */
 psCoord *
-psApplyOffset(const psCoord *restrict position, //!< Position
-	      const psCoord *restrict offset, //!< Offset
-	      const char *type		//!< Type of offset: Linear, Spherical/Arcsec, Spherical/Degreees etc
+psApplyOffset(const psCoord *restrict position, ///< Position
+	      const psCoord *restrict offset, ///< Offset
+	      const char *type		///< Type of offset: Linear, Spherical/Arcsec, Spherical/Degreees etc
     );
 
@@ -79,23 +79,23 @@
 /** Get Sun Position */
 psCoord *
-psGetSunPos(float mjd			//!< MJD to get position for
+psGetSunPos(float mjd			///< MJD to get position for
     );
 
 /** Get Moon position */
 psCoord *
-psGetMoonPos(float mjd,			//!< MJD to get position for
-	     double latitude,		//!< Latitude for apparent position
-	     double longitude		//!< Longitude for apparent position
+psGetMoonPos(float mjd,			///< MJD to get position for
+	     double latitude,		///< Latitude for apparent position
+	     double longitude		///< Longitude for apparent position
     );
 
 /** Get Moon phase */
 float
-psGetMoonPhase(float mjd		//!< MJD to get phase for
+psGetMoonPhase(float mjd		///< MJD to get phase for
     );
 
 /** Get Planet positions */
 psCoord *
-psGetSolarSystemPos(const char *solarSystemObject, //!< Named S.S. object
-		    float mjd		//!< MJD to get position for
+psGetSolarSystemPos(const char *solarSystemObject, ///< Named S.S. object
+		    float mjd		///< MJD to get position for
     );
 
@@ -106,20 +106,20 @@
 /** Convert ICRS to Ecliptic */
 psCoord *
-psCoordinatesItoE(const psCoord *restrict coordinates //!< ICRS coordinates to convert
+psCoordinatesItoE(const psCoord *restrict coordinates ///< ICRS coordinates to convert
     );
 
 /** Convert Ecliptic to ICRS */
 psCoord *
-psCoordinatesEtoI(const psCoord *restrict coordinates //!< Ecliptic coordinates to convert
+psCoordinatesEtoI(const psCoord *restrict coordinates ///< Ecliptic coordinates to convert
     );
 
 /** Convert ICRS to Galactic */
 psCoord *
-psCoordinatesItoG(const psCoord *restrict coordinates //!< ICRS coordinates to convert
+psCoordinatesItoG(const psCoord *restrict coordinates ///< ICRS coordinates to convert
     );
 
 /** Convert Galactic to ICRS */
 psCoord *
-psCoordinatesGtoI(const psCoord *restrict coordinates //!< Galactic coordinates to convert
+psCoordinatesGtoI(const psCoord *restrict coordinates ///< Galactic coordinates to convert
     );
 
