IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 4, 2021, 6:06:03 PM (5 years ago)
Author:
eugene
Message:

warp_overlap sets warpRun state to fail if no overlaps are found

File:
1 edited

Legend:

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

    r41463 r41893  
    15171517            my $this_exp_id  = ${ $this_warp }[0];
    15181518            my $this_quality = ${ $this_warp }[5];
    1519             if ($this_quality != 0) {
    1520                 print STDERR "diff_queue: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality\n";
     1519            my $this_state   = ${ $this_warp }[4];
     1520            if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1521                print STDERR "diff_queue: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality or state $this_state\n";
    15211522            }
    15221523            else {
     
    17061707                my $this_exp_id  = ${ $this_warp }[0];
    17071708                my $this_quality = ${ $this_warp }[5];
    1708                 if ($this_quality != 0) {
    1709                     print STDERR "desp_diff_singles: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality\n";
     1709                my $this_state   = ${ $this_warp }[4];
     1710                if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1711                    print STDERR "desp_diff_singles: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality or state $this_state\n";
    17101712                }
    17111713                else {
     
    19221924                my $this_exp_id  = ${ $this_warp }[0];
    19231925                my $this_quality = ${ $this_warp }[5];
    1924                 if ($this_quality != 0) {
    1925                     print STDERR "desp_diff_queue: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality\n";
     1926                my $this_state   = ${ $this_warp }[4];
     1927                if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1928                    print STDERR "desp_diff_queue: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality or state $this_state\n";
    19261929                }
    19271930                else {
Note: See TracChangeset for help on using the changeset viewer.