Changeset 5990 for branches/eam_rel9_p0/psModules/src/objects/pmObjects.h
- Timestamp:
- Jan 15, 2006, 8:21:19 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_rel9_p0/psModules/src/objects/pmObjects.h
r5982 r5990 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.4.4. 2$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-01-1 4 07:00:25$12 * @version $Revision: 1.4.4.3 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-01-15 18:21:19 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 131 131 /** pmModel data structure 132 132 * 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) 134 134 * model. The PSF model represents the best fit of the image PSF to the specific 135 135 * 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 of137 * 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. 138 138 * 139 139 */ … … 146 146 int nDOF; ///< number of degrees of freedom 147 147 int nIter; ///< number of iterations to reach min 148 int status;///< fit status148 pmModelStatus status; ///< fit status 149 149 float radius; ///< fit radius actually used 150 150 } … … 166 166 PM_SOURCE_SATURATED, ///< random saturated pixels 167 167 PM_SOURCE_STAR, ///< a good-quality star 168 PM_SOURCE_ GALAXY, ///< an extended object (galaxy)168 PM_SOURCE_EXTENDED, ///< an extended object (eg, galaxy) 169 169 } pmSourceType; 170 170 … … 172 172 PM_SOURCE_DEFAULT = 0x0000, ///< 173 173 PM_SOURCE_PSFMODEL = 0x0001, ///< 174 PM_SOURCE_ FLTMODEL = 0x0002, ///<174 PM_SOURCE_EXTMODEL = 0x0002, ///< 175 175 PM_SOURCE_SUBTRACTED = 0x0004, ///< 176 176 PM_SOURCE_FITTED = 0x0008, ///< … … 200 200 pmMoments *moments; ///< Basic moments measure for the object. 201 201 pmModel *modelPSF; ///< PSF Model fit (parameters and type) 202 pmModel *model FLT; ///< FLT (floating) Model fit (parameters and type).202 pmModel *modelEXT; ///< EXT (floating) Model fit (parameters and type). 203 203 pmSourceType type; ///< Best identification of object. 204 204 pmSourceMode mode; ///< Best identification of object. … … 487 487 pmSource *source, ///< The input pmSource 488 488 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? 490 490 ); 491 491 … … 569 569 * This function converts the source classification into the closest available 570 570 * approximation to the Dophot classification scheme: 571 * XXX EAM : fix this to use current source classification scheme 571 572 * 572 573 * PM_SOURCE_DEFECT: 8 … … 616 617 pmSource *source, ///< The input pmSource 617 618 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? 619 620 ); 620 621 … … 632 633 pmSource *source, ///< The input pmSource 633 634 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? 635 636 ); 636 637
Note:
See TracChangeset
for help on using the changeset viewer.
