Changeset 30009
- Timestamp:
- Dec 9, 2010, 3:11:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20101205/ppStack/src/ppStackFinish.c
r27906 r30009 12 12 #include "ppStackLoop.h" 13 13 14 // this function unlinks the temporary files (if desired) 14 15 bool ppStackFinish(ppStackOptions *options, pmConfig *config) 15 16 { … … 32 33 } 33 34 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); 40 39 if (unlink(imageResolved) == -1 || unlink(maskResolved) == -1 || 41 40 unlink(varianceResolved) == -1) { … … 47 46 } 48 47 } 49 50 51 48 return true; 52 49 }
Note:
See TracChangeset
for help on using the changeset viewer.
