Index: /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.c
===================================================================
--- /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.c	(revision 21211)
+++ /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.c	(revision 21212)
@@ -4,6 +4,6 @@
  *
  * @author EAM, IfA
- * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- * @date $Date: 2009-01-27 06:39:38 $
+ * @version $Revision: 1.4.2.1 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2009-01-29 00:48:33 $
  * Copyright 2004 IfA, University of Hawaii
  */
@@ -23,5 +23,5 @@
     psFree (resid->Rx);
     psFree (resid->Ry);
-    psFree (resid->weight);
+    psFree (resid->variance);
     psFree (resid->mask);
     return;
@@ -42,5 +42,5 @@
     resid->Rx  = psImageAlloc (nX, nY, PS_TYPE_F32);
     resid->Ry  = psImageAlloc (nX, nY, PS_TYPE_F32);
-    resid->weight = psImageAlloc (nX, nY, PS_TYPE_F32);
+    resid->variance = psImageAlloc (nX, nY, PS_TYPE_F32);
     resid->mask   = psImageAlloc (nX, nY, PM_TYPE_RESID_MASK);
 
@@ -49,5 +49,5 @@
     resid->xBin = xBin;
     resid->yBin = yBin;
-    resid->xCenter = 0.5*(nX - 1); 
+    resid->xCenter = 0.5*(nX - 1);
     resid->yCenter = 0.5*(nY - 1);
     return resid;
Index: /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.h
===================================================================
--- /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.h	(revision 21211)
+++ /branches/pap_branch_20090128/psModules/src/objects/pmResiduals.h	(revision 21212)
@@ -4,6 +4,6 @@
  *
  * @author EAM, IfA
- * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- * @date $Date: 2009-01-27 06:39:38 $
+ * @version $Revision: 1.4.2.1 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2009-01-29 00:48:33 $
  * Copyright 2004 IfA, University of Hawaii
  */
@@ -14,5 +14,5 @@
 /// @{
 
-/** residual tables for sources 
+/** residual tables for sources
  */
 typedef struct {
@@ -20,5 +20,5 @@
     psImage *Rx;
     psImage *Ry;
-    psImage *weight;
+    psImage *variance;
     psImage *mask;
     int xBin;
@@ -31,5 +31,5 @@
 bool psMemCheckResiduals(psPtr ptr);
 
-// macros to abstract the resid mask type : these values must be consistent 
+// macros to abstract the resid mask type : these values must be consistent
 #define PM_TYPE_RESID_MASK PS_TYPE_U8        /**< the psElemType to use for mask image */
 #define PM_TYPE_RESID_MASK_DATA U8           /**< the data member to use for mask image */
Index: /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.c
===================================================================
--- /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.c	(revision 21211)
+++ /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.c	(revision 21212)
@@ -6,6 +6,6 @@
  *  @author EAM, IfA: significant modifications.
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2008-12-08 02:51:14 $
+ *  @version $Revision: 1.4.8.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2009-01-29 00:48:33 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -71,5 +71,5 @@
     psFree(profile->radius);
     psFree(profile->flux);
-    psFree(profile->weight);
+    psFree(profile->variance);
     return;
 }
@@ -82,5 +82,5 @@
     profile->radius = NULL;
     profile->flux = NULL;
-    profile->weight = NULL;
+    profile->variance = NULL;
 
     return profile;
Index: /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.h
===================================================================
--- /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.h	(revision 21211)
+++ /branches/pap_branch_20090128/psModules/src/objects/pmSourceExtendedPars.h	(revision 21212)
@@ -3,6 +3,6 @@
  * @author EAM, IfA
  *
- * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- * @date $Date: 2008-01-02 20:39:04 $
+ * @version $Revision: 1.3.54.1 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2009-01-29 00:48:33 $
  * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  */
@@ -17,5 +17,5 @@
   psVector *radius;
   psVector *flux;
-  psVector *weight;
+  psVector *variance;
 } pmSourceRadialProfile;
 
