IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 4, 2006, 6:40:07 PM (20 years ago)
Author:
Paul Price
Message:

Allowing manual rejection.

File:
1 edited

Legend:

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

    r9257 r9286  
    1919use Pod::Usage qw( pod2usage );
    2020
    21 my ($det_id, $iter, $exp_tag, $det_type, $no_update);
     21my ($det_id, $iter, $exp_tag, $det_type, $no_update, $reject);
    2222GetOptions(
    2323    'det_id|d=s'        => \$det_id,
    2424    'iteration=s'       => \$iter,
    25     'exp_tag|e=s'        => \$exp_tag,
     25    'exp_tag|e=s'       => \$exp_tag,
    2626    'det_type|t=s'      => \$det_type,
    27     'no-update'         => \$no_update
     27    'no-update'         => \$no_update,
     28    'reject'            => \$reject
    2829) or pod2usage( 2 );
    2930
     
    154155
    155156# Reject based on the individual stats
    156 my $reject = 0;                 # Rejection flag
    157157die "Number of means and number of stdevs differ!\n" if scalar @means != scalar @stdevs;
    158158for (my $i = 0; $i < scalar @means; $i++) {
Note: See TracChangeset for help on using the changeset viewer.