IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9101


Ignore:
Timestamp:
Oct 2, 2006, 12:30:17 PM (20 years ago)
Author:
Paul Price
Message:

dettool change: -processed --> -processedimfile.

Location:
trunk/ippScripts/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_norm_calc.pl

    r9097 r9101  
    4545my $files;                      # The input files
    4646{
    47     my $command = "$dettool -processed -unmask -det_id $detId -iteration $iter"; # Command to run
     47    my $command = "$dettool -processedimfile -unmask -det_id $detId -iteration $iter"; # Command to run
    4848    my @command = split /\s+/, $command;
    4949    my ( $stdin, $stdout, $stderr ); # Buffers for running program
    5050    print "Running [$command]...\n";
    5151    run \@command, \$stdin, \$stdout, \$stderr or
    52         die "Unable to perform dettool -processed -unmask on detrend $detId/$iter: $?";
     52        die "Unable to perform dettool -processedimfile -unmask on detrend $detId/$iter: $?";
    5353    print $stdout . "\n";
    5454   
  • trunk/ippScripts/scripts/detrend_stack.pl

    r9091 r9101  
    6464my $files;                      # Array of files to be stacked
    6565{
    66     my $command = "$dettool -processed -det_id $det_id -iteration $iter -class_id $class_id"; # Command to run
     66    my $command = "$dettool -processedimfile -det_id $det_id -iteration $iter -class_id $class_id"; # Command to run
    6767    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
    6868        run(command => $command, verbose => 1);
    69     die "Unable to perform dettool -processed: $error_code\n" if not $success;
     69    die "Unable to perform dettool -processedimfile: $error_code\n" if not $success;
    7070    my $metadata = $mdcParser->parse(join "", @$stdout_buf)
    7171        or die "unable to parse metadata config doc";
Note: See TracChangeset for help on using the changeset viewer.