IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34375


Ignore:
Timestamp:
Sep 2, 2012, 12:38:50 PM (14 years ago)
Author:
eugene
Message:

adding satstar element to pmSource

Location:
branches/eam_branches/ipp-20120805/psModules/src/objects
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120805/psModules/src/objects/Makefile.am

    r34367 r34375  
    2626        pmSourceDiffStats.c \
    2727        pmSourceExtendedPars.c \
     28        pmSourceSatstar.c \
    2829        pmSourceUtils.c \
    2930        pmSourceSky.c \
     
    100101        pmSourceDiffStats.h \
    101102        pmSourceExtendedPars.h \
     103        pmSourceSatstar.h \
    102104        pmSourceUtils.h \
    103105        pmSourceSky.h \
  • branches/eam_branches/ipp-20120805/psModules/src/objects/pmSource.c

    r34367 r34375  
    4040#include "pmSourceDiffStats.h"
    4141#include "pmSourcePhotometry.h"
     42#include "pmSourceSatstar.h"
    4243#include "pmSource.h"
    4344
     
    6162    psFree(tmp->modelFits);
    6263    psFree(tmp->extFitPars);
     64    psFree(tmp->blends);
     65    psFree(tmp->satstar);
    6366    psFree(tmp->extpars);
    64     psFree(tmp->moments);
    6567    psFree(tmp->diffStats);
    6668    psFree(tmp->radialAper);
    67     psFree(tmp->blends);
    6869    psTrace("psModules.objects", 10, "---- end ----\n");
    6970}
     
    160161    source->region = psRegionSet(NAN, NAN, NAN, NAN);
    161162    source->blends = NULL;
     163    source->satstar = NULL;
    162164    source->extpars = NULL;
    163165    source->diffStats = NULL;
  • branches/eam_branches/ipp-20120805/psModules/src/objects/pmSource.h

    r34085 r34375  
    114114    psRegion region;                    ///< area on image covered by selected pixels
    115115    psArray *blends;                    ///< collection of sources thought to be confused with object
     116    pmSourceSatstar *satstar;
    116117    pmSourceExtendedPars *extpars;      ///< extended source parameters
    117118    pmSourceDiffStats *diffStats;       ///< extra parameters for difference detections
Note: See TracChangeset for help on using the changeset viewer.