IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 2, 2006, 11:54:11 AM (20 years ago)
Author:
Paul Price
Message:

Adding -no-update option (bug 825).

File:
1 edited

Legend:

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

    r9005 r9091  
    1616# Parse command-line arguments
    1717my ($detId,                     # Detrend id
    18     $iter                       # Iteration
     18    $iter,                      # Iteration
     19    $no_update                  # Don't update the database?
    1920    );
    2021GetOptions(
    2122        'det_id|d=s'    => \$detId,
    2223        'iteration|i=s' => \$iter,
     24        'no-update'     => \$no_update
    2325        ) or pod2usage( 2 );
    2426
     
    9496
    9597# Process output normalisations
    96 {
     98unless ($no_update) {
    9799    foreach my $normItem (@$norms) {
    98100        my $className = $normItem->{name}; # Name of component
Note: See TracChangeset for help on using the changeset viewer.