IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 5, 2026, 10:55:58 AM (6 weeks ago)
Author:
eugene
Message:

use consistent names (VALID_OVERSCAN) for detrend type; fix a couple minor bugs in bad-overscan masking; use jpeg rules matching default chip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/detrend/pmMaskBadOverscan.c

    r43038 r43049  
    3232
    3333    // completely mask the readout
    34     for (int i = 0; i < mask->numRows; i++) { // Loop over rows : note: problem with discontinuity here
    35         for (int j = 0; j < mask->numCols; j++) { // Loop over columns
    36           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;
    3737        }
    3838    }
Note: See TracChangeset for help on using the changeset viewer.