Changeset 12978 for branches/eam_02_branch/psphot/src/psphotOutput.c
- Timestamp:
- Apr 23, 2007, 4:54:30 PM (19 years ago)
- File:
-
- 1 edited
-
branches/eam_02_branch/psphot/src/psphotOutput.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_02_branch/psphot/src/psphotOutput.c
r12957 r12978 56 56 for (int j = 0; j < source->pixels->numCols; j++) { 57 57 // skip masked points 58 if (source->mask ->data.U8[i][j]) {58 if (source->maskObj->data.U8[i][j]) { 59 59 continue; 60 60 } … … 69 69 source->pixels->data.F32[i][j], 70 70 1.0 / source->weight->data.F32[i][j], 71 source->mask ->data.U8[i][j]);71 source->maskObj->data.U8[i][j]); 72 72 } 73 73 } … … 101 101 for (int i = 0; (sources != NULL) && (i < sources->n); i++) { 102 102 pmSource *source = (pmSource *) sources->data[i]; 103 pmModel *model = pmSource SelectModel (source);103 pmModel *model = pmSourceGetModel (NULL, source); 104 104 if (model == NULL) 105 105 continue;
Note:
See TracChangeset
for help on using the changeset viewer.
