IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2009, 11:06:18 AM (17 years ago)
Author:
bills
Message:

Add data_group, dist_group, and note to the pipeline. These new columns will be used
for some of the tasks that label was used previously.

Location:
trunk/ippScripts/scripts
Files:
3 edited

Legend:

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

    r25816 r25835  
    354354#    $fpaCommand .= " -dtime_addstar $dtime_addstar";
    355355} else {
    356     $fpaCommand .= " -updaterun -state full";
     356    $fpaCommand .= " -updaterun -set_state full";
    357357}
    358358$fpaCommand .= " -dbname $dbname" if defined $dbname;
  • trunk/ippScripts/scripts/ipp_cleanup.pl

    r25801 r25835  
    488488        # No skycells were found for some reason.
    489489        # Not technically an "error," but a "you told me to do X, and I can't. Please fix this yourself."
    490         my $command = "$stacktool -updaterun -stack_id $stage_id -state $error_state";
     490        my $command = "$stacktool -updaterun -stack_id $stage_id -set_state $error_state";
    491491        $command .= " -dbname $dbname" if defined $dbname;
    492492       
     
    561561            my $command = "$stacktool -stack_id $stage_id";
    562562            if ($mode eq "goto_purged") {
    563                 $command .= " -updaterun -state purged";
     563                $command .= " -updaterun -set_state purged";
    564564            }
    565565            elsif ($mode eq "goto_cleaned") {
    566                 $command .= " -updaterun -state cleaned";
     566                $command .= " -updaterun -set_state cleaned";
    567567            }
    568568            elsif ($mode eq "goto_scrubbed") {
    569                 $command .= " -updaterun -state scrubbed";
     569                $command .= " -updaterun -set_state scrubbed";
    570570            }
    571571            $command .= " -dbname $dbname" if defined $dbname;
     
    589589
    590590        } else {
    591             my $command = "$stacktool -updaterun  -stack_id $stage_id -state $error_state";
     591            my $command = "$stacktool -updaterun  -stack_id $stage_id -set_state $error_state";
    592592            $command .= " -dbname $dbname" if defined $dbname;
    593593           
     
    624624        # No skycells were found for some reason.
    625625        # Not technically an "error," but a "you told me to do X, and I can't. Please fix this yourself."
    626         my $command = "$difftool -updaterun -diff_id $stage_id -state $error_state";
     626        my $command = "$difftool -updaterun -diff_id $stage_id -set_state $error_state";
    627627        $command .= " -dbname $dbname" if defined $dbname;
    628628       
     
    741741
    742742        } else {
    743             my $command = "$difftool -updaterun -diff_id $stage_id -state $error_state";
     743            my $command = "$difftool -updaterun -diff_id $stage_id -set_state $error_state";
    744744
    745745            $command .= " -dbname $dbname" if defined $dbname;
  • trunk/ippScripts/scripts/stack_skycell.pl

    r25551 r25835  
    304304            $command .= (" -dtime_script " . ((DateTime->now->mjd - $mjd_start) * 86400));
    305305        } else {
    306             $mode = "-updaterun -state full";
     306            $mode = "-updaterun -set_state full";
    307307        }
    308308        $command .= " $mode -stack_id $stack_id";
Note: See TracChangeset for help on using the changeset viewer.