IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 24, 2022, 10:42:15 AM (4 years ago)
Author:
eugene
Message:

fail is not an allowed state for a run (not in list of pxIsValidState in pxtools.c); changing fail to drop, which is allowed

File:
1 edited

Legend:

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

    r41893 r41994  
    15181518            my $this_quality = ${ $this_warp }[5];
    15191519            my $this_state   = ${ $this_warp }[4];
    1520             if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1520            if (($this_quality != 0) || ($this_state eq 'drop') ) {
    15211521                print STDERR "diff_queue: excluding $this_exp_id for $this_object due to non-zero cam.quality $this_quality or state $this_state\n";
    15221522            }
     
    17081708                my $this_quality = ${ $this_warp }[5];
    17091709                my $this_state   = ${ $this_warp }[4];
    1710                 if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1710                if (($this_quality != 0) || ($this_state eq 'drop') ) {
    17111711                    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";
    17121712                }
     
    19251925                my $this_quality = ${ $this_warp }[5];
    19261926                my $this_state   = ${ $this_warp }[4];
    1927                 if (($this_quality != 0) || ($this_state eq 'fail') ) {
     1927                if (($this_quality != 0) || ($this_state eq 'drop') ) {
    19281928                    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";
    19291929                }
Note: See TracChangeset for help on using the changeset viewer.