IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 5, 2009, 11:13:29 AM (17 years ago)
Author:
beaumont
Message:

Finished ppStack visualization. Unified the way in which visualizations are invoked, plotting windows are closed, etc

Location:
branches/cnb_branches/cnb_branch_20090215
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/cnb_branches/cnb_branch_20090215

  • branches/cnb_branches/cnb_branch_20090215/psModules/src/objects/pmSource.c

    r21536 r23197  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.69.4.1 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2009-02-19 17:59:50 $
     8 *  @version $Revision: 1.70 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-16 22:29:59 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    543543        pmSource *source = (pmSource *) sources->data[i];
    544544
    545         // psf clumps are found for image subregions:
    546         // skip sources not in this region
     545        // psf clumps are found for image subregions:
     546        // skip sources not in this region
    547547        if (source->peak->x <  region->x0) continue;
    548548        if (source->peak->x >= region->x1) continue;
    549549        if (source->peak->y <  region->y0) continue;
    550         if (source->peak->y >= region->y1) continue;
    551 
    552         // should be set by pmSourceAlloc
     550        if (source->peak->y >= region->y1) continue;
     551
     552        // should be set by pmSourceAlloc
    553553        psAssert (source->type == PM_SOURCE_TYPE_UNKNOWN, "source type was not init-ed?");
    554554
     
    556556        if (!source->moments) {
    557557            source->type = PM_SOURCE_TYPE_STAR;
    558             psAssert (source->mode & noMoments, "why is this source missing moments?");
     558            psAssert (source->mode & noMoments, "why is this source missing moments?");
    559559            Nstar++;
    560560            continue;
Note: See TracChangeset for help on using the changeset viewer.