IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 5, 2009, 5:03:40 AM (17 years ago)
Author:
eugene
Message:

allow either separate or simultaneous coeff calculation (norm vs kernels) -- compile time option; report norm and background

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20091201/psModules/src/imcombine/pmSubtractionStamps.c

    r26318 r26342  
    842842
    843843}
     844
     845
     846bool pmSubtractionStampsResetStatus (pmSubtractionStampList *stamps) {
     847
     848    for (int i = 0; i < stamps->num; i++) {
     849        pmSubtractionStamp *stamp = stamps->stamps->data[i]; // Stamp of interest
     850        if (!stamp) continue;
     851        if (stamp->status != PM_SUBTRACTION_STAMP_USED) continue;
     852        stamp->status = PM_SUBTRACTION_STAMP_CALCULATE;
     853    }
     854    return true;
     855}
Note: See TracChangeset for help on using the changeset viewer.