Index: /trunk/ippconfig/recipes/filerules-mef.mdc
===================================================================
--- /trunk/ippconfig/recipes/filerules-mef.mdc	(revision 27985)
+++ /trunk/ippconfig/recipes/filerules-mef.mdc	(revision 27986)
@@ -134,4 +134,7 @@
 PPSIM.INPUT             INPUT    @FILES        FPA        IMAGE     
 PPSIM.REAL.SOURCES      INPUT    @FILES        CHIP       CMF       
+
+PPCOORD.ASTROM		INPUT	 @FILES	       FPA	  WCS
+PPCOORD.RAW		INPUT	 @FILES	       CHIP	  IMAGE
 
 ## files used by ppNoiseMap
Index: /trunk/ippconfig/recipes/filerules-simple.mdc
===================================================================
--- /trunk/ippconfig/recipes/filerules-simple.mdc	(revision 27985)
+++ /trunk/ippconfig/recipes/filerules-simple.mdc	(revision 27986)
@@ -107,4 +107,7 @@
 PPSIM.INPUT               INPUT    @FILES        FPA        IMAGE     
 PPSIM.REAL.SOURCES        INPUT    @FILES        CHIP       CMF       
+
+PPCOORD.ASTROM		  INPUT	   @FILES	 FPA	    WCS
+PPCOORD.RAW		  INPUT	   @FILES	 CHIP	    IMAGE
 
 ## files used by ppNoiseMap
Index: /trunk/ippconfig/recipes/filerules-split.mdc
===================================================================
--- /trunk/ippconfig/recipes/filerules-split.mdc	(revision 27985)
+++ /trunk/ippconfig/recipes/filerules-split.mdc	(revision 27986)
@@ -118,4 +118,7 @@
 PPSIM.INPUT               INPUT    @FILES        CHIP       IMAGE     
 PPSIM.REAL.SOURCES        INPUT    @FILES        CHIP       CMF       
+
+PPCOORD.ASTROM		  INPUT	   @FILES	 FPA	    WCS
+PPCOORD.RAW		  INPUT	   @FILES	 CHIP	    IMAGE
 
 ## files used by ppNoiseMap
@@ -314,4 +317,5 @@
 PPVIZPATTERN.CHIP            OUTPUT {OUTPUT}.{CHIP.NAME}.ch.fits      IMAGE           NONE       CHIP       TRUE      NONE
 
+
 # FILERULE naming operators:
 # {FPA.OBS}
Index: /trunk/ppViz/src/ppCoord/ppCoordCamera.c
===================================================================
--- /trunk/ppViz/src/ppCoord/ppCoordCamera.c	(revision 27985)
+++ /trunk/ppViz/src/ppCoord/ppCoordCamera.c	(revision 27986)
@@ -33,7 +33,7 @@
 
     fileArguments("ASTROM", data->astromName, "Input astrometry", data->config);
-    pmFPAfile *astrom = pmFPAfileDefineFromArgs(&status, data->config, "PSWARP.ASTROM", "ASTROM"); // File
+    pmFPAfile *astrom = pmFPAfileDefineFromArgs(&status, data->config, "PPCOORD.ASTROM", "ASTROM"); // File
     if (!status || !astrom) {
-        psError(PS_ERR_IO, false, "Failed to build file from PSWARP.ASTROM");
+        psError(PS_ERR_IO, false, "Failed to build file from PPCOORD.ASTROM");
         return false;
     }
@@ -41,7 +41,7 @@
     if (data->rawName) {
         fileArguments("RAW", data->rawName, "Input raw image", data->config);
-        pmFPAfile *raw = pmFPAfileDefineFromArgs(&status, data->config, "PPIMAGE.INPUT", "RAW"); // File
+        pmFPAfile *raw = pmFPAfileDefineFromArgs(&status, data->config, "PPCOORD.RAW", "RAW"); // File
         if (!status || !raw) {
-            psError(PS_ERR_IO, false, "Failed to build file from PPIMAGE.INPUT");
+            psError(PS_ERR_IO, false, "Failed to build file from PPCOORD.RAW");
             return false;
         }
Index: /trunk/ppViz/src/ppCoord/ppCoordLoop.c
===================================================================
--- /trunk/ppViz/src/ppCoord/ppCoordLoop.c	(revision 27985)
+++ /trunk/ppViz/src/ppCoord/ppCoordLoop.c	(revision 27986)
@@ -71,5 +71,5 @@
 {
     pmConfig *config = data->config;                                        // Configuration data
-    pmFPAfile *astromFile = pmFPAfileSelectSingle(config->files, "PSWARP.ASTROM", 0); // File with astrometry
+    pmFPAfile *astromFile = pmFPAfileSelectSingle(config->files, "PPCOORD.ASTROM", 0); // File with astrometry
 
     if (astromFile->fpa->chips->n > 0 && data->pixelsName && !data->chipName) {
@@ -77,5 +77,5 @@
     }
 
-    pmFPAfile *rawFile = data->rawName ? pmFPAfileSelectSingle(config->files, "PPIMAGE.INPUT", 0) :
+    pmFPAfile *rawFile = data->rawName ? pmFPAfileSelectSingle(config->files, "PPCOORD.RAW", 0) :
         NULL; // File with raw image
 
