Changeset 10294 for trunk/ppImage/src/ppImageLoop.c
- Timestamp:
- Nov 29, 2006, 1:25:46 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageLoop.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageLoop.c
r10213 r10294 6 6 #include "ppImage.h" 7 7 #include "ppImageDetrendFringe.h" 8 #include "ppImageVersion.h" 8 9 9 10 … … 36 37 } 37 38 38 pmFPAview *view = pmFPAviewAlloc(0); 39 pmFPAview *view = pmFPAviewAlloc(0);// View for level of interest 40 pmHDU *lastHDU = NULL; // Last HDU that was updated 39 41 40 42 // files associated with the science image … … 61 63 return false; 62 64 } 65 66 // Put version information into the header 67 pmHDU *hdu = pmHDUFromCell(cell); 68 if (!hdu) { 69 psError(PS_ERR_UNEXPECTED_NULL, false, "Unable to find HDU for cell (%d,%d)!\n", 70 view->chip, view->cell); 71 return false; 72 } 73 if (hdu != lastHDU) { 74 ppImageVersionMetadata(hdu->header); 75 lastHDU = hdu; 76 } 77 63 78 64 79 // process each of the readouts
Note:
See TracChangeset
for help on using the changeset viewer.
