Changeset 6380
- Timestamp:
- Feb 7, 2006, 9:16:49 PM (20 years ago)
- Location:
- branches/eam_rel9_p0/psModules/src/objects
- Files:
-
- 3 edited
-
pmObjects.c (modified) (4 diffs)
-
pmObjects.h (modified) (3 diffs)
-
pmPSFtry.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_rel9_p0/psModules/src/objects/pmObjects.c
r6377 r6380 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.5.4. 6$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-02-08 0 6:10:29 $8 * @version $Revision: 1.5.4.7 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-02-08 07:16:49 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 psS32 y, 26 26 psF32 counts, 27 pmPeakType class)27 pmPeakType type) 28 28 { 29 29 psTrace(__func__, 3, "---- %s() begin ----\n", __func__); … … 32 32 tmp->y = y; 33 33 tmp->counts = counts; 34 tmp-> class = class;34 tmp->type = type; 35 35 36 36 psTrace(__func__, 3, "---- %s() end ----\n", __func__); … … 1206 1206 pmSource *tmpSrc = (pmSource *) sources->data[i]; 1207 1207 1208 tmpSrc->peak-> class= 0;1208 tmpSrc->peak->type = 0; 1209 1209 1210 1210 psF32 sigX = tmpSrc->moments->Sx; -
branches/eam_rel9_p0/psModules/src/objects/pmObjects.h
r6183 r6380 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.4.4. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-0 1-22 21:12:20$12 * @version $Revision: 1.4.4.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-02-08 07:16:49 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 74 74 int y; ///< Y-coordinate of peak pixel. 75 75 float counts; ///< Value of peak pixel (above sky?). 76 pmPeakType class; ///< Description of peak.76 pmPeakType type; ///< Description of peak. 77 77 } 78 78 pmPeak; … … 219 219 int y, ///< Col-coordinate in image space 220 220 float counts, ///< The value of the peak pixel 221 pmPeakType class///< The type of peak pixel221 pmPeakType type ///< The type of peak pixel 222 222 ); 223 223 -
branches/eam_rel9_p0/psModules/src/objects/pmPSFtry.h
r5992 r6380 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.2.4. 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-0 1-15 18:23:13$8 * @version $Revision: 1.2.4.3 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-02-08 07:16:49 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 63 63 * 64 64 */ 65 enum {65 typedef enum { 66 66 PSFTRY_MASK_CLEAR = 0x00, ///< Add comment. 67 67 PSFTRY_MASK_OUTLIER = 0x01, ///< 1: outlier in psf polynomial fit (provided by psPolynomials)
Note:
See TracChangeset
for help on using the changeset viewer.
