Changeset 43049 for trunk/psModules/src/detrend/pmMaskBadOverscan.c
- Timestamp:
- Jun 5, 2026, 10:55:58 AM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/psModules/src/detrend/pmMaskBadOverscan.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/detrend/pmMaskBadOverscan.c
r43038 r43049 32 32 33 33 // completely mask the readout 34 for (int i = 0; i < mask->numRows; i++) { // Loop over rows : note: problem with discontinuity here35 for (int j = 0; j < mask->numCols; j++) { // Loop over columns36 mask->data.PS_TYPE_IMAGE_MASK_DATA[ j][i] |= maskValue;34 for (int iy = 0; iy < mask->numRows; iy++) { // Loop over rows : note: problem with discontinuity here 35 for (int ix = 0; ix < mask->numCols; ix++) { // Loop over columns 36 mask->data.PS_TYPE_IMAGE_MASK_DATA[iy][ix] |= maskValue; 37 37 } 38 38 }
Note:
See TracChangeset
for help on using the changeset viewer.
