Changeset 6114 for trunk/ppImage/src/ppImageLoop.c
- Timestamp:
- Jan 20, 2006, 6:37:29 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageLoop.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageLoop.c
r6079 r6114 89 89 90 90 ppDetrendCell(&detrend, options, config); 91 92 // Need to free detrend cells here so we have enough memory to do other stuff 93 psFree(detrend.bias); 94 psFree(detrend.dark); 95 psFree(detrend.mask); 96 psFree(detrend.flat); 91 97 } 98 99 int numMosaicked = pmChipMosaic(inputChip, 1, 1); // Number of cells mosaicked together 100 psLogMsg(__func__, PS_LOG_INFO, "%d cells mosaicked.\n", numMosaicked); 101 92 102 } 103 104 // Free the detrend FPA and chips 105 psFree(data->bias); 106 psFree(data->dark); 107 psFree(data->mask); 108 psFree(data->flat); 109 110 93 111 return true; 94 112 }
Note:
See TracChangeset
for help on using the changeset viewer.
