IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 15, 2012, 1:32:57 PM (14 years ago)
Author:
watersc1
Message:

Median code completes now, but is saving in the wrong output format.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20120906/ppStack/src/ppStackThread.c

    r34623 r34666  
    6868        PS_ASSERT_ARRAYS_SIZE_EQUAL(cells, covariances, NULL);
    6969    }
    70 
     70   
    7171    ppStackThreadData *stack = psAlloc(sizeof(ppStackThreadData)); // Thread data, to return
    7272    psMemSetDeallocator(stack, (psFreeFunc)stackThreadDataFree);
     
    9797            psFree(resolved); \
    9898        }
     99        fprintf(stderr,"ppST:99 %s %s\n",pmConfigConvertFilename(imageNames->data[i], config, false, false),
     100                (char*)imageNames->data[i]);
     101               
    99102        IMAGE_OPEN(imageNames, stack->imageFits, i);
    100         IMAGE_OPEN(maskNames, stack->maskFits, i);
    101         IMAGE_OPEN(varianceNames, stack->varianceFits, i);
     103        if (maskNames) {
     104          IMAGE_OPEN(maskNames, stack->maskFits, i);
     105        }
     106        if (varianceNames) {
     107          IMAGE_OPEN(varianceNames, stack->varianceFits, i);
     108        }
    102109    }
    103110
Note: See TracChangeset for help on using the changeset viewer.