IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 20, 2008, 11:47:23 AM (18 years ago)
Author:
eugene
Message:

fixed invalid use of bitwise and

File:
1 edited

Legend:

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

    r19127 r19138  
    208208    # $accept is set above based on the fraction of lit pixels
    209209    # XXX for some files, there may not be enough stars to find a good psf.  these should be dropped as well
    210     $accept &= $ipprc->file_exists($outputPSF);
     210    if ($accept && !$ipprc->file_exists($outputPSF)) {
     211        $accept = 0;
     212    }
    211213
    212214    if ($accept) {
Note: See TracChangeset for help on using the changeset viewer.