IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29419


Ignore:
Timestamp:
Oct 14, 2010, 2:25:48 PM (16 years ago)
Author:
bills
Message:

optionally save temporary files

Location:
trunk/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/runcameraexp.pl

    r29176 r29419  
    1515
    1616my $dbname = "gpc1";
    17 my ($cam_id, $update, $redirect, $pretend, $no_verbose);
     17my ($cam_id, $update, $redirect, $save_temps, $pretend, $no_verbose);
    1818
    1919GetOptions(
     
    2121    'pretend'           => \$pretend,
    2222    'redirect-output'   => \$redirect,
     23    'save-temps'        => \$save_temps,
    2324    'update'            => \$update,
    2425    'dbname=s'          => \$dbname,
     
    6768$command .= " --dvodb $dvodb" if $dvodb and ($dvodb ne "NULL");
    6869$command .= " --redirect-output" if $redirect or $update;
     70$command .= " --save-temps" if $save_temps;
    6971$command .= " --no-update" unless $update;
    7072$command .= " --verbose" unless $no_verbose;
  • trunk/tools/runwarpskycell.pl

    r29176 r29419  
    1616
    1717my $dbname = "gpc1";
    18 my ($warp_id, $skycell_id, $threads, $update, $redirect, $pretend);
     18my ($warp_id, $skycell_id, $threads, $update, $redirect, $pretend, $save_temps);
    1919
    2020GetOptions(
     
    2727    'dbname=s'          => \$dbname,
    2828    'no-verbose'        => \$no_verbose,
     29    'save-temps'        => \$save_temps,
    2930) or pod2usage( 2 );
    3031
     
    7879$command .= " --reduction $reduction" if $reduction and ($reduction ne "NULL");
    7980$command .= " --redirect-output" if $redirect;
     81$command .= " --save-temps" if $save_temps;
    8082$command .= " --no-update" unless $update;
    8183$command .= " --verbose" unless $no_verbose;
Note: See TracChangeset for help on using the changeset viewer.