IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 30, 2013, 4:48:58 PM (13 years ago)
Author:
eugene
Message:

updates from trunk

Location:
branches/eam_branches/ipp-20130711/pstamp/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130711/pstamp/scripts

  • branches/eam_branches/ipp-20130711/pstamp/scripts/pstamp_checkdependent.pl

    r35793 r36071  
    438438            $chips_ready = 0;
    439439            $chip->{fault} = $chip->{chip_fault};
     440            $chip->{data_group} = $chip->{chip_data_group};
    440441            push @chipsToUpdate, $chip;
    441442        } else {
     
    575576    } elsif ($diff_mode == $IPP_DIFF_MODE_STACK_STACK ) {
    576577        # check the state of the input stack
    577         my $command = "$stacktool -sumskyfile -stack_id $skycell->{stack2}";
     578        my $command = "$stacktool -sumskyfile -stack_id $skycell->{stack1}";
    578579        my $stack1 = runToolAndParseExpectOne($command, $verbose);
    579         my_die("failed to find stackSumSkyfile for stack_id $skycell->{stack2}", $PS_EXIT_UNKNOWN_ERROR) if !$stack1;
     580        my_die("failed to find stackSumSkyfile for stack_id $skycell->{stack1}", $PS_EXIT_UNKNOWN_ERROR) if !$stack1;
    580581
    581582        if ($stack1->{state} ne 'full') {
    582             print STDERR "input stack for diffRun $diff_id $skycell_id is not in full state faulting jobs\n";
     583            print STDERR "input stack $skycell->{stack1} for diffRun $diff_id $skycell_id is not in full state faulting jobs\n";
    583584            faultComponent('diff', $diff_id, $skycell_id, $PSTAMP_GONE);
    584585            return $PSTAMP_GONE;
     
    590591
    591592        if ($stack2->{state} ne 'full') {
    592             print STDERR "template stack for diffRun $diff_id $skycell_id is not in full state faulting jobs\n";
     593            print STDERR "template stack $skycell->{stack2} for diffRun $diff_id $skycell_id is not in full state faulting jobs\n";
    593594            faultComponent('diff', $diff_id, $skycell_id, $PSTAMP_GONE);
    594595            return $PSTAMP_GONE;
     
    850851    my ($stage, $stage_id, $component, $fault) = @_;
    851852
     853    # Stop faulting components. With the death of magic the likelyhood that something is truly gone
     854    # forever is much smaller. The false alarm rate is far too high
     855    return;
     856
    852857    my $command;
    853858    if ($stage eq 'chip') {
Note: See TracChangeset for help on using the changeset viewer.