Index: /trunk/psLib/test/astro/tap_psCoord01.c
===================================================================
--- /trunk/psLib/test/astro/tap_psCoord01.c	(revision 11662)
+++ /trunk/psLib/test/astro/tap_psCoord01.c	(revision 11663)
@@ -12,8 +12,8 @@
 *      values were obtained, and they nearly all fail now.
 *
-*    @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
-*    @date  $Date: 2007-01-19 20:42:21 $
-*    @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
-*    @date  $Date: 2007-01-19 20:42:21 $
+*    @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*    @date  $Date: 2007-02-06 04:11:54 $
+*    @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+*    @date  $Date: 2007-02-06 04:11:54 $
 *
 *    Copyright 2005 Maui High Performance Computing Center, Univ. of Hawaii
@@ -173,10 +173,10 @@
             myProjection->Ys = projectionTestPoint[i][5];
 
-            psPlane *out = psProject(in, myProjection);
+            psPlane *out = psProject(NULL, in, myProjection);
             if(out == NULL) {
                 diag("psProject() returned NULL");
                 errorFlag = true;
             } else {
-                inTest = psDeproject(out, myProjection);
+                inTest = psDeproject(NULL, out, myProjection);
                 if(fabs(out->x - projectionTanExpected[i][0]) > ERROR_TOL) {
                     diag("TEST ERROR: Testpoint %d  psPlane->x = %lg  expected %lg",
@@ -230,5 +230,5 @@
 
             // Perform deprojection
-            psSphere *out = psDeproject(in, myProjection);
+            psSphere *out = psDeproject(NULL, in, myProjection);
 
             // Verify output is not NULL
@@ -278,5 +278,5 @@
 
             // Perform projection
-            psPlane *out = psProject(in, myProjection);
+            psPlane *out = psProject(NULL, in, myProjection);
 
             // Verify output not NULL
@@ -326,5 +326,5 @@
 
             // Perform deprojection
-            psSphere *out = psDeproject(in, myProjection);
+            psSphere *out = psDeproject(NULL, in, myProjection);
 
             // Verify output is not NULL
@@ -374,5 +374,5 @@
 
             // Perform projection
-            psPlane *out = psProject(in, myProjection);
+            psPlane *out = psProject(NULL, in, myProjection);
 
             // Verify output not NULL
@@ -422,5 +422,5 @@
 
             // Perform deprojection
-            psSphere *out = psDeproject(in, myProjection);
+            psSphere *out = psDeproject(NULL, in, myProjection);
 
             // Verify output is not NULL
@@ -470,5 +470,5 @@
 
             // Perform projection
-            psPlane *out = psProject(in, myProjection);
+            psPlane *out = psProject(NULL, in, myProjection);
 
             // Verify output not NULL
@@ -518,5 +518,5 @@
 
             // Perform deprojection
-            psSphere *out = psDeproject(in, myProjection);
+            psSphere *out = psDeproject(NULL, in, myProjection);
 
             // Verify output is not NULL
@@ -553,6 +553,6 @@
         psMemId id = psMemGetId();
         psProjection *myProjection = psProjectionAlloc(0.0,0.0,1.0,1.0,PS_PROJ_TAN);
-        psPlane *out = psProject(NULL, myProjection);
-        ok(out == NULL, "psProject(NULL, xxx) returned NULL");
+        psPlane *out = psProject(NULL, NULL, myProjection);
+        ok(out == NULL, "psProject(NULL, NULL, xxx) returned NULL");
         psFree(myProjection);
         psFree(out);
@@ -567,6 +567,6 @@
         psMemId id = psMemGetId();
         psSphere *in = psSphereAlloc();
-        psPlane *out = psProject(in, NULL);
-        ok(out == NULL, "psProject(in, NULL) returned NULL");
+        psPlane *out = psProject(NULL, in, NULL);
+        ok(out == NULL, "psProject(NULL, in, NULL) returned NULL");
         psFree(in);
         psFree(out);
@@ -583,6 +583,6 @@
         myProjection->type = PS_PROJ_NTYPE;
         psSphere *in = psSphereAlloc();
-        psPlane *out = psProject(in,myProjection);
-        ok(out == NULL, "psProject(in, out) returned NULL with unallowed projection type");
+        psPlane *out = psProject(NULL, in,myProjection);
+        ok(out == NULL, "psProject(NULL, in, out) returned NULL with unallowed projection type");
         psFree(myProjection);
         psFree(in);
@@ -601,6 +601,6 @@
     {
         psProjection *myProjection = psProjectionAlloc(0.0,0.0,1.0,1.0,PS_PROJ_TAN);
-        psSphere *out = psDeproject(NULL, myProjection);
-        ok(out == NULL, "psDeproject(NULL, myProjection) returned NULL");
+        psSphere *out = psDeproject(NULL, NULL, myProjection);
+        ok(out == NULL, "psDeproject(NULL, NULL, myProjection) returned NULL");
         psFree(myProjection);
         psFree(out);
@@ -614,6 +614,6 @@
         psMemId id = psMemGetId();
         psPlane *in = psPlaneAlloc();
-        psSphere *out = psDeproject(in, NULL);
-        ok(out == NULL, "psDeproject(in, NULL) returned NULL");
+        psSphere *out = psDeproject(NULL, in, NULL);
+        ok(out == NULL, "psDeproject(NULL, in, NULL) returned NULL");
         psFree(in);
         psFree(out);
@@ -629,6 +629,6 @@
         psPlane *in = psPlaneAlloc();
         myProjection->type = PS_PROJ_NTYPE;
-        psSphere *out = psDeproject(in,myProjection);
-        ok(out == NULL, "psDeproject(in,myProjection) returned NULL with unallowed projection type");
+        psSphere *out = psDeproject(NULL, in,myProjection);
+        ok(out == NULL, "psDeproject(NULL, in,myProjection) returned NULL with unallowed projection type");
         psFree(myProjection);
         psFree(in);
