Index: /trunk/psModules/src/astrom/pmAstrometryDistortion.c
===================================================================
--- /trunk/psModules/src/astrom/pmAstrometryDistortion.c	(revision 7152)
+++ /trunk/psModules/src/astrom/pmAstrometryDistortion.c	(revision 7153)
@@ -7,6 +7,6 @@
 *  @author EAM, IfA
 *
-*  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-05-19 15:39:53 $
+*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-05-19 15:49:37 $
 *
 *  Copyright 2006 Institute for Astronomy, University of Hawaii
@@ -85,5 +85,5 @@
                 pmAstromMatch *match = matches->data[i];
 
-                pmAstromObj *raw = rawstars->data[match->i1];
+                pmAstromObj *raw = rawstars->data[match->raw];
 
                 if (raw->chip->x < Xmin)
@@ -96,5 +96,5 @@
                     continue;
 
-                pmAstromObj *ref = refstars->data[match->i2];
+                pmAstromObj *ref = refstars->data[match->ref];
 
                 L->data.F32[Npts] = ref->FP->x;
Index: /trunk/psModules/src/astrom/pmAstrometryObjects.c
===================================================================
--- /trunk/psModules/src/astrom/pmAstrometryObjects.c	(revision 7152)
+++ /trunk/psModules/src/astrom/pmAstrometryObjects.c	(revision 7153)
@@ -8,6 +8,6 @@
 *  @author EAM, IfA
 *
-*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-05-19 15:39:53 $
+*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-05-19 15:49:37 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -25,5 +25,4 @@
 #include "pmFPA.h"
 #include "pmAstrometryObjects.h"
-
 
 #define PM_ASTROMETRYOBJECTS_DEBUG 1
@@ -215,6 +214,6 @@
 
         pair    = match->data[i];
-        rawStar = raw->data[pair->i1];
-        refStar = ref->data[pair->i2];
+        rawStar = raw->data[pair->raw];
+        refStar = ref->data[pair->ref];
 
         X->data.F32[i] = rawStar->chip->x;
@@ -364,12 +363,12 @@
  ******************************************************************************/
 pmAstromMatch *pmAstromMatchAlloc(
-    int i1,
-    int i2)
+    int raw,
+    int ref)
 {
     pmAstromMatch *match = psAlloc (sizeof(pmAstromMatch));
     psMemSetDeallocator(match, (psFreeFunc) pmAstromMatchFree);
 
-    match->i1 = i1;
-    match->i2 = i2;
+    match->raw = raw;
+    match->ref = ref;
 
     return (match);
Index: /trunk/psModules/src/astrom/pmAstrometryObjects.h
===================================================================
--- /trunk/psModules/src/astrom/pmAstrometryObjects.h	(revision 7152)
+++ /trunk/psModules/src/astrom/pmAstrometryObjects.h	(revision 7153)
@@ -8,6 +8,6 @@
 *  @author EAM, IfA
 *
-*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-05-19 15:39:53 $
+*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-05-19 15:49:37 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -55,6 +55,6 @@
 typedef struct
 {
-    int i1;                             ///< What is this?
-    int i2;                             ///< What is this?
+    int raw;                             ///< What is this?
+    int ref;                             ///< What is this?
 }
 pmAstromMatch;
