IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 15, 2006, 8:21:19 AM (20 years ago)
Author:
magnier
Message:

changed FLT to EXT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_rel9_p0/psModules/src/objects/pmObjects.h

    r5982 r5990  
    1010 *  @author GLG, MHPCC
    1111 *
    12  *  @version $Revision: 1.4.4.2 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-01-14 07:00:25 $
     12 *  @version $Revision: 1.4.4.3 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-01-15 18:21:19 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    131131/** pmModel data structure
    132132 *
    133  * Every source may have two types of models: a PSF model and a FLT (floating)
     133 * Every source may have two types of models: a PSF model and a EXT (extended-source)
    134134 * model. The PSF model represents the best fit of the image PSF to the specific
    135135 * object. In this case, the PSF-dependent parameters are specified for the
    136  * object by the PSF, not by the fit. The FLT model represents the best fit of
    137  * the given model to the object, with all parameters floating in the fit.
     136 * object by the PSF, not by the fit. The EXT model represents the best fit of
     137 * the given model to the object, with all shape parameters floating in the fit.
    138138 * 
    139139 */
     
    146146    int nDOF;    ///< number of degrees of freedom
    147147    int nIter;    ///< number of iterations to reach min
    148     int status;         ///< fit status
     148    pmModelStatus status;  ///< fit status
    149149    float radius;   ///< fit radius actually used
    150150}
     
    166166    PM_SOURCE_SATURATED,                ///< random saturated pixels
    167167    PM_SOURCE_STAR,                     ///< a good-quality star
    168     PM_SOURCE_GALAXY,                   ///< an extended object (galaxy)
     168    PM_SOURCE_EXTENDED,                 ///< an extended object (eg, galaxy)
    169169} pmSourceType;
    170170
     
    172172    PM_SOURCE_DEFAULT    = 0x0000, ///<
    173173    PM_SOURCE_PSFMODEL   = 0x0001, ///<
    174     PM_SOURCE_FLTMODEL   = 0x0002, ///<
     174    PM_SOURCE_EXTMODEL   = 0x0002, ///<
    175175    PM_SOURCE_SUBTRACTED = 0x0004, ///<
    176176    PM_SOURCE_FITTED     = 0x0008, ///<
     
    200200    pmMoments *moments;   ///< Basic moments measure for the object.
    201201    pmModel *modelPSF;   ///< PSF Model fit (parameters and type)
    202     pmModel *modelFLT;   ///< FLT (floating) Model fit (parameters and type).
     202    pmModel *modelEXT;   ///< EXT (floating) Model fit (parameters and type).
    203203    pmSourceType type;   ///< Best identification of object.
    204204    pmSourceMode mode;   ///< Best identification of object.
     
    487487    pmSource *source,   ///< The input pmSource
    488488    pmModel *model,   ///< model to be fitted
    489     const bool PSF   ///< Treat model as PSF or FLT?
     489    const bool PSF   ///< Treat model as PSF or EXT?
    490490);
    491491
     
    569569 * This function converts the source classification into the closest available
    570570 * approximation to the Dophot classification scheme:
     571 * XXX EAM : fix this to use current source classification scheme
    571572 *
    572573 * PM_SOURCE_DEFECT: 8
     
    616617    pmSource *source,   ///< The input pmSource
    617618    pmModel *model,   ///< model to be fitted
    618     const bool PSF   ///< Treat model as PSF or FLT?
     619    const bool PSF   ///< Treat model as PSF or EXT?
    619620);
    620621
     
    632633    pmSource *source,   ///< The input pmSource
    633634    pmModel *model,   ///< model to be fitted
    634     const bool PSF   ///< Treat model as PSF or FLT?
     635    const bool PSF   ///< Treat model as PSF or EXT?
    635636);
    636637
Note: See TracChangeset for help on using the changeset viewer.