IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 25, 2007, 3:20:29 PM (19 years ago)
Author:
magnier
Message:

incorporating updates from eam_02_branch (cached models, pmPSF FITS IO)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSourceFitModel.c

    r12949 r13034  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-04-21 19:47:14 $
     8 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2007-04-26 01:20:29 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5757    PS_ASSERT_PTR_NON_NULL(source, false);
    5858    PS_ASSERT_PTR_NON_NULL(source->pixels, false);
    59     PS_ASSERT_PTR_NON_NULL(source->mask, false);
     59    PS_ASSERT_PTR_NON_NULL(source->maskObj, false);
    6060    PS_ASSERT_PTR_NON_NULL(source->weight, false);
    6161
     
    7777        for (psS32 j = 0; j < source->pixels->numCols; j++) {
    7878            // skip masked points
    79             if (source->mask->data.U8[i][j]) {
     79            if (source->maskObj->data.U8[i][j]) {
    8080                continue;
    8181            }
     
    334334    PS_ASSERT_PTR_NON_NULL(source, false);
    335335    PS_ASSERT_PTR_NON_NULL(source->pixels, false);
    336     PS_ASSERT_PTR_NON_NULL(source->mask, false);
     336    PS_ASSERT_PTR_NON_NULL(source->maskObj, false);
    337337    PS_ASSERT_PTR_NON_NULL(source->weight, false);
    338338
     
    354354        for (psS32 j = 0; j < source->pixels->numCols; j++) {
    355355            // skip masked points
    356             if (source->mask->data.U8[i][j]) {
     356            if (source->maskObj->data.U8[i][j]) {
    357357                continue;
    358358            }
Note: See TracChangeset for help on using the changeset viewer.