- Timestamp:
- Apr 23, 2007, 8:04:18 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_02_branch/psModules/src/objects/pmSourceFitModel.c
r12943 r12958 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1.19.4. 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-04-2 1 00:03:31$8 * @version $Revision: 1.19.4.3 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-23 18:04:18 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 57 57 PS_ASSERT_PTR_NON_NULL(source, false); 58 58 PS_ASSERT_PTR_NON_NULL(source->pixels, false); 59 PS_ASSERT_PTR_NON_NULL(source->mask , false);59 PS_ASSERT_PTR_NON_NULL(source->maskObj, false); 60 60 PS_ASSERT_PTR_NON_NULL(source->weight, false); 61 61 … … 77 77 for (psS32 j = 0; j < source->pixels->numCols; j++) { 78 78 // skip masked points 79 if (source->mask ->data.U8[i][j]) {79 if (source->maskObj->data.U8[i][j]) { 80 80 continue; 81 81 } … … 334 334 PS_ASSERT_PTR_NON_NULL(source, false); 335 335 PS_ASSERT_PTR_NON_NULL(source->pixels, false); 336 PS_ASSERT_PTR_NON_NULL(source->mask , false);336 PS_ASSERT_PTR_NON_NULL(source->maskObj, false); 337 337 PS_ASSERT_PTR_NON_NULL(source->weight, false); 338 338 … … 354 354 for (psS32 j = 0; j < source->pixels->numCols; j++) { 355 355 // skip masked points 356 if (source->mask ->data.U8[i][j]) {356 if (source->maskObj->data.U8[i][j]) { 357 357 continue; 358 358 }
Note:
See TracChangeset
for help on using the changeset viewer.
