Changeset 15258 for trunk/psastro/src/psastroTestFuncs.c
- Timestamp:
- Oct 9, 2007, 9:57:44 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psastro/src/psastroTestFuncs.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastroTestFuncs.c
r12806 r15258 31 31 for (int i = 0; i < map->x->nX + 1; i++) { 32 32 for (int j = 0; j < map->x->nY + 1; j++) { 33 if (map->x-> mask[i][j]) continue;33 if (map->x->coeffMask[i][j] & PS_POLY_MASK_SET) continue; 34 34 psLogMsg ("psastro", 4, "x term %d,%d: %f +/- %f\n", i, j, map->x->coeff[i][j], map->x->coeffErr[i][j]); 35 35 } … … 38 38 for (int i = 0; i < map->y->nX + 1; i++) { 39 39 for (int j = 0; j < map->y->nY + 1; j++) { 40 if (map->y-> mask[i][j]) continue;40 if (map->y->coeffMask[i][j] & PS_POLY_MASK_SET) continue; 41 41 psLogMsg ("psastro", 4, "y term %d,%d: %f +/- %f\n", i, j, map->y->coeff[i][j], map->y->coeffErr[i][j]); 42 42 }
Note:
See TracChangeset
for help on using the changeset viewer.
