IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 4, 2011, 1:16:41 PM (15 years ago)
Author:
eugene
Message:

improvements to the output headers; some code organization; plug leaks; user-specified limits to input seeing ranges

Location:
trunk/ppStack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack

    • Property svn:ignore
      •  

        old new  
        1717autom4te.cache
        1818Doxyfile
         19a.out.dSYM
    • Property svn:mergeinfo deleted
  • trunk/ppStack/src/ppStackLoop.c

    r30722 r31158  
    5555    }
    5656
    57     // Start threading
    58     ppStackThreadInit();
     57    // Define threading elements
    5958    ppStackThreadData *stack = ppStackThreadDataSetup(options, config, true);
    6059    if (!stack) {
     
    114113    }
    115114
    116     // Final combination
     115    // Final combination.  This one does NOT need to be normalized since the convolution takes care of that
    117116    psTrace("ppStack", 2, "Final stack of convolved images....\n");
    118117    if (!ppStackCombineFinal(stack, options->convCovars, options, config, false, false, true)) {
     
    181180        }
    182181
    183         // generate the unconvolved stack
     182        // generate the unconvolved stack. NOTE: this one must be normalized since the inputs have not been
    184183        psTrace("ppStack", 2, "Stack of unconvolved images....\n");
    185         if (!ppStackCombineFinal(stack, options->origCovars, options, config,
    186                                  false, true, false)) {
     184        if (!ppStackCombineFinal(stack, options->origCovars, options, config, false, true, false)) {
    187185            psError(psErrorCodeLast(), false, "Unable to perform unconvolved combination.");
    188186            psFree(stack);
Note: See TracChangeset for help on using the changeset viewer.