IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 15, 2008, 2:24:27 PM (18 years ago)
Author:
bills
Message:

update processing for camera stage

File:
1 edited

Legend:

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

    r19545 r19561  
    2828use Pod::Usage qw( pod2usage );
    2929
    30 my ($stack_id, $dbname, $outroot, $debug, $threads, $verbose, $no_update, $no_op, $redirect, $save_temps);
     30my ($stack_id, $dbname, $outroot, $debug, $run_state, $threads, $verbose, $no_update, $no_op, $redirect, $save_temps);
    3131GetOptions(
    3232    'stack_id|d=s'      => \$stack_id, # Stack identifier
    3333    'dbname|d=s'        => \$dbname, # Database name
    3434    'outroot=s'         => \$outroot, # Output root name
     35    'run-state=s'       => \$run_state,
    3536    'debug'             => \$debug,   # Print to stdout
    3637    'threads=s'         => \$threads,   # Number of threads to use for ppStack
     
    4445pod2usage( -msg => "Unknown option: @ARGV", -exitval => 2 ) if @ARGV;
    4546pod2usage(
    46     -msg => "Required options: --stack_id --outroot",
     47    -msg => "Required options: --stack_id --outroot --run-state",
    4748    -exitval => 3,
    4849          ) unless defined $stack_id
    49     and defined $outroot;
     50    and defined $outroot
     51    and defined $run_state;
    5052
    5153# XXX camera is not known here; cannot use filerules...
Note: See TracChangeset for help on using the changeset viewer.