IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 27, 2006, 4:16:26 PM (20 years ago)
Author:
magnier
Message:

added HDU weights, masks; substantial work on the pmFPAfile,view concepts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/pslib/psRegionIsBad.c

    r6620 r6713  
    77}
    88
     9bool psRegionIsNaN (psRegion region)
     10{
     11
     12    if (!isfinite(region.x0))
     13        return true;
     14    if (!isfinite(region.x1))
     15        return true;
     16    if (!isfinite(region.y0))
     17        return true;
     18    if (!isfinite(region.y1))
     19        return true;
     20    return false;
     21}
Note: See TracChangeset for help on using the changeset viewer.