Changeset 13803 for trunk/psModules/src/objects/pmModel.h
- Timestamp:
- Jun 13, 2007, 1:41:51 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/objects/pmModel.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmModel.h
r13335 r13803 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 5-10 19:48:35$7 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-06-13 23:41:51 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 22 22 typedef enum { 23 PM_MODEL_UNTRIED, ///< model fit not yet attempted 24 PM_MODEL_SUCCESS, ///< model fit succeeded 25 PM_MODEL_NONCONVERGE, ///< model fit did not converge 26 PM_MODEL_OFFIMAGE, ///< model fit drove out of range 27 PM_MODEL_BADARGS ///< model fit called with invalid args 23 PM_MODEL_STATUS_NONE = 0x00, ///< model fit not yet attempted, no other info 24 PM_MODEL_STATUS_FITTED = 0x01, ///< model fit completed 25 PM_MODEL_STATUS_NONCONVERGE = 0x02, ///< model fit did not converge 26 PM_MODEL_STATUS_OFFIMAGE = 0x04, ///< model fit drove out of range 27 PM_MODEL_STATUS_BADARGS = 0x08, ///< model fit called with invalid args 28 PM_MODEL_STATUS_LIMITS = 0x10 ///< model parameters hit limits 28 29 } pmModelStatus; 29 30 … … 58 59 int nDOF; ///< number of degrees of freedom 59 60 int nIter; ///< number of iterations to reach min 60 pmModelStatus status; ///< fit status61 pmModelStatus flags; ///< model status flags 61 62 float radiusFit; ///< fit radius actually used 62 63 pmResiduals *residuals; ///< normalized PSF residuals
Note:
See TracChangeset
for help on using the changeset viewer.
