Index: trunk/psModules/src/pmObjects.h
===================================================================
--- trunk/psModules/src/pmObjects.h	(revision 4187)
+++ trunk/psModules/src/pmObjects.h	(revision 4579)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-09 06:19:27 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-07-19 01:44:48 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -209,50 +209,57 @@
 XXX EAM: psMinimizeLMChi2Func returns psF64, not psF32
  *****************************************************************************/
-psF64 pmMinLM_Gauss2D(psVector *deriv,  ///< A possibly-NULL structure for the output derivatives
-                      psVector *params,  ///< A psVector which holds the parameters of this function
-                      psVector *x  ///< A psVector which holds the row/col coordinate
-                     );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_PsuedoGauss2D(psVector *deriv, ///< A possibly-NULL structure for the output derivatives
-                            psVector *params, ///< A psVector which holds the parameters of this function
-                            psVector *x  ///< A psVector which holds the row/col coordinate
-                           );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_Wauss2D(psVector *deriv,  ///< A possibly-NULL structure for the output derivatives
-                      psVector *params,  ///< A psVector which holds the parameters of this function
-                      psVector *x  ///< A psVector which holds the row/col coordinate
-                     );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_TwistGauss2D(psVector *deriv, ///< A possibly-NULL structure for the output derivatives
-                           psVector *params, ///< A psVector which holds the parameters of this function
-                           psVector *x  ///< A psVector which holds the row/col coordinate
-                          );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_Sersic(psVector *deriv,  ///< A possibly-NULL structure for the output derivatives
-                     psVector *params,  ///< A psVector which holds the parameters of this function
-                     psVector *x  ///< A psVector which holds the row/col coordinate
-                    );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_SersicCore(psVector *deriv, ///< A possibly-NULL structure for the output derivatives
-                         psVector *params, ///< A psVector which holds the parameters of this function
-                         psVector *x  ///< A psVector which holds the row/col coordinate
-                        );
-
-/******************************************************************************
- *****************************************************************************/
-psF64 pmMinLM_PsuedoSersic(psVector *deriv, ///< A possibly-NULL structure for the output derivatives
-                           psVector *params, ///< A psVector which holds the parameters of this function
-                           psVector *x  ///< A psVector which holds the row/col coordinate
-                          );
+float pmMinLM_Gauss2D(
+    psVector *deriv,                   ///< A possibly-NULL structure for the output derivatives
+    const psVector *params,            ///< A psVector which holds the parameters of this function
+    const psVector *x                  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_PsuedoGauss2D(
+    psVector *deriv, ///< A possibly-NULL structure for the output derivatives
+    const psVector *params, ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_Wauss2D(
+    psVector *deriv,  ///< A possibly-NULL structure for the output derivatives
+    const psVector *params,  ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_TwistGauss2D(
+    psVector *deriv, ///< A possibly-NULL structure for the output derivatives
+    const psVector *params, ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_Sersic(
+    psVector *deriv,  ///< A possibly-NULL structure for the output derivatives
+    const psVector *params,  ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_SersicCore(
+    psVector *deriv, ///< A possibly-NULL structure for the output derivatives
+    const psVector *params, ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
+
+/******************************************************************************
+ *****************************************************************************/
+float pmMinLM_PsuedoSersic(
+    psVector *deriv, ///< A possibly-NULL structure for the output derivatives
+    const psVector *params, ///< A psVector which holds the parameters of this function
+    const psVector *x  ///< A psVector which holds the row/col coordinate
+);
 
 
