IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 24, 2009, 3:13:26 PM (17 years ago)
Author:
eugene
Message:

handle empty sets of ref/raw stars in remove clumps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroRemoveClumps.c

    r26259 r26275  
    8383 */
    8484psArray *psastroRemoveClumps (psArray *input, int scale) {
     85
     86    if (!input) return NULL;
     87
     88    if (!input->n) {
     89        psArray *output = psArrayAllocEmpty (16);
     90        return output;
     91    }
    8592
    8693    // determine data range
Note: See TracChangeset for help on using the changeset viewer.