IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20135


Ignore:
Timestamp:
Oct 13, 2008, 5:14:36 PM (18 years ago)
Author:
eugene
Message:

adding arguments to accept label, dvodb, end_stage, tess_id

File:
1 edited

Legend:

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

    r20133 r20135  
    2727my $ipprc = PS::IPP::Config->new();
    2828
    29 my ($cache, $exp_id, $exp_tag, $dbname, $verbose, $no_update, $no_op, $save_temps, $logfile);
     29my ($cache, $exp_id, $exp_tag, $label, $dvodb, $end_stage, $tess_id, $dbname, $verbose, $no_update, $no_op, $save_temps, $logfile);
    3030GetOptions(
    3131    'caches'        => \$cache,
     
    3333    'exp_tag|t=s'   => \$exp_tag,
    3434    'dbname|d=s'    => \$dbname, # Database name
     35    'label'         => \$label,   
     36    'dvodb'         => \$dvodb,   
     37    'end_stage'     => \$end_stage,
     38    'tess_id'       => \$tess_id,   
    3539    'verbose'       => \$verbose,   # Print to stdout
    3640    'no-update'     => \$no_update,
     
    118122$command .= " -exp_id $exp_id";
    119123$command .= " -exp_tag $exp_tag";
    120 $command .= " -hostname $host" if defined $host;
    121 $command .= " -dbname $dbname" if defined $dbname;
     124$command .= " -hostname  $host"      if defined $host;
     125$command .= " -dbname    $dbname"    if defined $dbname;
     126$command .= " -label     $label"     if defined $label;
     127$command .= " -dvodb     $dvodb"     if defined $dvodb;
     128$command .= " -end_stage $end_stage" if defined $end_stage;
     129$command .= " -tess_id   $tess_id"   if defined $tess_id;
    122130$command .= " $cmdflags";
    123131
Note: See TracChangeset for help on using the changeset viewer.