Changeset 15258
- Timestamp:
- Oct 9, 2007, 9:57:44 AM (19 years ago)
- Location:
- trunk/psastro/src
- Files:
-
- 3 edited
-
psastroMosaicGradients.c (modified) (1 diff)
-
psastroOneChip.c (modified) (1 diff)
-
psastroTestFuncs.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastroMosaicGradients.c
r13656 r15258 61 61 for (int j = 0; j <= fpa->toTPA->x->nY; j++) { 62 62 if (i + j > order) { 63 fpa->toTPA->x-> mask[i][j] = 1;64 fpa->toTPA->y-> mask[i][j] = 1;63 fpa->toTPA->x->coeffMask[i][j] = PS_POLY_MASK_SET; 64 fpa->toTPA->y->coeffMask[i][j] = PS_POLY_MASK_SET; 65 65 } 66 66 } -
trunk/psastro/src/psastroOneChip.c
r15201 r15258 108 108 for (int j = 0; j <= chip->toFPA->x->nY; j++) { 109 109 if (i + j > order) { 110 chip->toFPA->x-> mask[i][j] = 1;111 chip->toFPA->y-> mask[i][j] = 1;110 chip->toFPA->x->coeffMask[i][j] = PS_POLY_MASK_SET; 111 chip->toFPA->y->coeffMask[i][j] = PS_POLY_MASK_SET; 112 112 } 113 113 } -
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.
