IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 23, 2007, 4:54:30 PM (19 years ago)
Author:
eugene
Message:

moving to maskObj and maskView, re-wrote psphotEnsemblePSF using modelFlux, renamed to psphotFitSourcesLinear

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_02_branch/psphot/src/psphotOutput.c

    r12957 r12978  
    5656        for (int j = 0; j < source->pixels->numCols; j++) {
    5757            // skip masked points
    58             if (source->mask->data.U8[i][j]) {
     58            if (source->maskObj->data.U8[i][j]) {
    5959                continue;
    6060            }
     
    6969                     source->pixels->data.F32[i][j],
    7070                     1.0 / source->weight->data.F32[i][j],
    71                      source->mask->data.U8[i][j]);
     71                     source->maskObj->data.U8[i][j]);
    7272        }
    7373    }
     
    101101    for (int i = 0; (sources != NULL) && (i < sources->n); i++) {
    102102        pmSource *source = (pmSource *) sources->data[i];
    103         pmModel *model = pmSourceSelectModel (source);
     103        pmModel *model = pmSourceGetModel (NULL, source);
    104104        if (model == NULL)
    105105            continue;
Note: See TracChangeset for help on using the changeset viewer.