Index: /trunk/tools/warp_outputs.pl
===================================================================
--- /trunk/tools/warp_outputs.pl	(revision 20657)
+++ /trunk/tools/warp_outputs.pl	(revision 20657)
@@ -0,0 +1,77 @@
+#!/usr/bin/env perl
+
+#
+# Copy warp outputs to the current directory
+#
+
+use warnings;
+use strict;
+
+use DBI;
+use constant DB_SOCKET => '/var/run/mysqld/mysqld.sock'; # Socket for mysql
+use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt );
+
+use constant EXTENSIONS => { 'IMAGE' => '.fits', # Image
+                             'MASK' => '.mask.fits', # Mask
+                             'WEIGHT' => '.wt.fits', # Weight
+                             'SOURCES' => '.cmf', # Sources
+                         };
+
+my ($db_host, $db_name, $db_user, $db_pw); # Database details
+my ($warp_id);                  # Warp of interest
+my ($skycell_id);               # Skycell of interest
+my ($input);                    # Input list
+
+GetOptions(
+           'dbhost=s' => \$db_host, # Database host name
+           'dbname=s' => \$db_name, # Database name
+           'dbuser=s' => \$db_user, # Database user
+           'dbpass=s' => \$db_pw, # Database p/w
+           'warp_id=s' => \$warp_id, # Warp identifier
+           'skycell_id=s' => \$skycell_id, # Skycell identifier
+           ) or die "Unable to parse arguments.\n";
+die "Unknown option: @ARGV\n" if @ARGV;
+die "Required options: --dbhost --dbname --dbuser --dbpass --warp_id\n"
+    unless defined $db_host
+    and defined $db_name
+    and defined $db_user
+    and defined $db_pw
+    and defined $warp_id;
+
+# Database connection
+my $db = DBI->connect( "DBI:mysql:database=$db_name;host=$db_host;mysql_socket=" . DB_SOCKET(),
+                       $db_user,
+                       $db_pw,
+                       { RaiseError => 1, AutoCommit => 1 }
+                       ) or die "Unable to connect to database: $DBI::errstr";
+
+# Query to run
+my $sql = "SELECT path_base FROM warpSkyfile WHERE warp_id = $warp_id";
+$sql .= " AND skycell_id = $skycell_id" if defined $skycell_id;
+
+# List of diffs
+my $warps = $db->selectcol_arrayref( $sql,
+                                     { Columns => [1] }
+                                     ) or die "Unable to execute SQL: $DBI::errstr";
+
+foreach my $warp ( @$warps ) {
+    copy_extensions( $warp, EXTENSIONS() );
+}
+
+# Pau.
+
+
+sub copy_extensions
+{
+    my $path = shift;           # Path to copy
+    my $extensions = shift;     # Extensions structure
+
+    foreach my $type ( keys %$extensions ) {
+        my $ext = $$extensions{$type}; # Extension
+        my $file = "$path$ext"; # File
+        my $source = `ipp_datapath.pl $file` or die "Unable to locate $file\n"; # Actual file
+        chomp $source;
+        my ($target) = $source =~ m|^.*[:/](.*)|; # Target name
+        !system "cp $source $target" or die "Unable to copy $source\n";
+    }
+}
