IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 23, 2007, 8:04:18 AM (19 years ago)
Author:
magnier
Message:

converting to source->maskObj and source->maskView

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_02_branch/psModules/src/objects/pmSourceFitModel.c

    r12943 r12958  
    66 *  @author GLG, MHPCC
    77 *
    8  *  @version $Revision: 1.19.4.2 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-04-21 00:03:31 $
     8 *  @version $Revision: 1.19.4.3 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2007-04-23 18:04:18 $
    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.