IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 30009


Ignore:
Timestamp:
Dec 9, 2010, 3:11:37 PM (15 years ago)
Author:
eugene
Message:

add some notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20101205/ppStack/src/ppStackFinish.c

    r27906 r30009  
    1212#include "ppStackLoop.h"
    1313
     14// this function unlinks the temporary files (if desired)
    1415bool ppStackFinish(ppStackOptions *options, pmConfig *config)
    1516{
     
    3233            }
    3334
    34             psString imageResolved = pmConfigConvertFilename(options->convImages->data[i],
    35                                                              config, false, false);
    36             psString maskResolved = pmConfigConvertFilename(options->convMasks->data[i],
    37                                                             config, false, false);
    38             psString varianceResolved = pmConfigConvertFilename(options->convVariances->data[i],
    39                                                                 config, false, false);
     35            // XXX careful about repeatative resolution of nebulous names (though these are probably not neb names)
     36            psString imageResolved = pmConfigConvertFilename(options->convImages->data[i], config, false, false);
     37            psString maskResolved = pmConfigConvertFilename(options->convMasks->data[i], config, false, false);
     38            psString varianceResolved = pmConfigConvertFilename(options->convVariances->data[i], config, false, false);
    4039            if (unlink(imageResolved) == -1 || unlink(maskResolved) == -1 ||
    4140                unlink(varianceResolved) == -1) {
     
    4746        }
    4847    }
    49 
    50 
    5148    return true;
    5249}
Note: See TracChangeset for help on using the changeset viewer.