IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 16, 2010, 11:03:43 AM (16 years ago)
Author:
watersc1
Message:

Added a rerun option to ipp_apply_burntool.pl to force a new pass at burntool, even if the state claims to be good.

File:
1 edited

Legend:

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

    r27298 r27299  
    2020use Pod::Usage qw( pod2usage );
    2121
    22 my ( $class_id, $dateobs_begin, $dateobs_end, $convert, $camera, $dbname, $logfile, $verbose, $save_temps);
     22my ( $class_id, $dateobs_begin, $dateobs_end, $convert, $camera, $dbname, $logfile, $verbose, $save_temps, $rerun);
    2323GetOptions(
    2424    'class_id=s'        => \$class_id, # chip identifier
     
    2828    'dbname|d=s'        => \$dbname, # Database name
    2929    'logfile=s'         => \$logfile,
     30    'rerun'             => \$rerun,
    3031    'verbose'           => \$verbose,   # Print to stdout
    3132    'save-temps'        => \$save_temps, # Save temporary files?
     
    174175        $process = 1;
    175176    }
     177    if ($rerun) {
     178        $process = 1;
     179    }
    176180    if ($REALRUN == 0) {
    177181        print "##Pretending to process as instructed!\n";
Note: See TracChangeset for help on using the changeset viewer.