Index: trunk/ippScripts/scripts/warp_skycell.pl
===================================================================
--- trunk/ippScripts/scripts/warp_skycell.pl	(revision 41705)
+++ trunk/ippScripts/scripts/warp_skycell.pl	(revision 42860)
@@ -150,6 +150,15 @@
 my $dynamicMasks;               # Use dynamic masks?
 {
+    # Check psastro.mdc file
+    my $psastro_mdc = $ipprc->filename ("PSASTRO.CONFIG", @$imfiles[0]->{cam_path_base}, undef);
     # Get the PSASTRO recipe
-    my $command = "$ppConfigDump -camera $camera -recipe PSASTRO $recipe_psastro -dump-recipe PSASTRO -";
+    my $command = "$ppConfigDump -recipe PSASTRO $recipe_psastro -dump-recipe PSASTRO -";
+    if ($ipprc->file_exists($psastro_mdc)) {
+        # get recipes as set in config dump file
+        $command .= " -ipprc $psastro_mdc";
+    } else {
+        # use this camera's recipes
+        $command .= " -camera $camera";
+    }
     my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
         run(command => $command, verbose => $verbose);
