Changeset 7604 for trunk/psModules/src/objects
- Timestamp:
- Jun 20, 2006, 5:21:16 PM (20 years ago)
- Location:
- trunk/psModules/src/objects
- Files:
-
- 14 edited
-
pmModel.c (modified) (3 diffs)
-
pmModelGroup.c (modified) (3 diffs)
-
pmMoments.c (modified) (2 diffs)
-
pmObjects.c (modified) (2 diffs)
-
pmPeaks.c (modified) (3 diffs)
-
pmSource.c (modified) (2 diffs)
-
pmSourceFitModel.c (modified) (3 diffs)
-
pmSourceIO_CMF.c (modified) (2 diffs)
-
pmSourceIO_CMP.c (modified) (2 diffs)
-
pmSourceIO_OBJ.c (modified) (2 diffs)
-
pmSourceIO_RAW.c (modified) (2 diffs)
-
pmSourceIO_SX.c (modified) (2 diffs)
-
pmSourcePhotometry.c (modified) (2 diffs)
-
pmSourceSky.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmModel.c
r6943 r7604 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-0 4-21 21:26:01$8 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmModel.h" 20 20 … … 94 94 95 95 /****************************************************************************** 96 pmModelEval(source, level, row): evaluates the model function at the specified coords. 97 96 pmModelEval(source, level, row): evaluates the model function at the specified coords. 97 98 98 NOTE: The coords are in subImage source->pixel coords, not image coords. 99 99 100 100 XXX: Use static vectors for x (NO: needs to be thread safe) 101 101 *****************************************************************************/ -
trunk/psModules/src/objects/pmModelGroup.c
r7589 r7604 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-06- 17 01:50:43$8 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h" 19 #include "psEllipse.h" 18 #include <pslib.h> 20 19 #include "pmHDU.h" 21 20 #include "pmFPA.h" … … 193 192 /****************************************************************************** 194 193 pmSourceModelGuess(source, model): This function allocates a new 195 pmModel structure based on the given modelType specified in the argument list. 196 The corresponding pmModelGuess function is returned, and used to 197 supply the values of the params array in the pmModel structure. 198 194 pmModel structure based on the given modelType specified in the argument list. 195 The corresponding pmModelGuess function is returned, and used to 196 supply the values of the params array in the pmModel structure. 197 199 198 XXX: Many parameters are based on the src->moments structure, which is in 200 199 image, not subImage coords. Therefore, the calls to the model evaluation -
trunk/psModules/src/objects/pmMoments.c
r6872 r7604 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-0 4-17 18:01:05$8 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 */ 14 14 15 #include "pslib.h" 15 #include <stdio.h> 16 #include <pslib.h> 16 17 #include "pmMoments.h" 17 18 -
trunk/psModules/src/objects/pmObjects.c
r6873 r7604 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-0 4-17 18:10:08$8 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmObjects.h" 20 20 #include "pmModelGroup.h" -
trunk/psModules/src/objects/pmPeaks.c
r7311 r7604 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-06- 03 01:02:08$8 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmPeaks.h" 20 20 … … 51 51 psVector containing the specified row of data from the psImage. 52 52 53 XXX: Is there a better way to do this? 53 XXX: Is there a better way to do this? 54 54 XXX EAM: does this really need to alloc a new vector??? 55 55 *****************************************************************************/ -
trunk/psModules/src/objects/pmSource.c
r7477 r7604 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-06- 10 02:57:58$8 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmHDU.h" 20 20 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceFitModel.c
r7324 r7604 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-06- 03 03:45:57$8 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmHDU.h" 20 20 #include "pmFPA.h" … … 320 320 321 321 /* 322 i: 0 1 2 322 i: 0 1 2 323 323 n: 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 324 324 i*6 + n: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 -
trunk/psModules/src/objects/pmSourceIO_CMF.c
r7413 r7604 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-06- 07 22:58:30$5 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h" 16 #include "psEllipse.h" 15 #include <pslib.h> 17 16 #include "pmHDU.h" 18 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceIO_CMP.c
r7430 r7604 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-06- 08 20:38:31$5 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h" 16 #include "psLine.h" 17 #include "psEllipse.h" 15 #include <pslib.h> 18 16 #include "pmHDU.h" 19 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceIO_OBJ.c
r6872 r7604 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-0 4-17 18:01:05$5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h" 16 #include "psLine.h" 17 #include "psEllipse.h" 15 #include <pslib.h> 18 16 #include "pmHDU.h" 19 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceIO_RAW.c
r6872 r7604 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-0 4-17 18:01:05$5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h" 16 #include "psLine.h" 17 #include "psEllipse.h" 15 #include <pslib.h> 18 16 #include "pmHDU.h" 19 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceIO_SX.c
r6872 r7604 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-0 4-17 18:01:05$5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h" 16 #include "psLine.h" 17 #include "psEllipse.h" 15 #include <pslib.h> 18 16 #include "pmHDU.h" 19 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourcePhotometry.c
r7283 r7604 3 3 * @author EAM, IfA; GLG, MHPCC 4 4 * 5 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-06- 02 02:16:05$5 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 13 13 #include <math.h> 14 14 #include <string.h> 15 #include "pslib.h"15 #include <pslib.h> 16 16 #include "pmHDU.h" 17 17 #include "pmFPA.h" -
trunk/psModules/src/objects/pmSourceSky.c
r7283 r7604 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-06- 02 02:16:05$8 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-06-21 03:21:16 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 #include <math.h> 17 17 #include <string.h> 18 #include "pslib.h"18 #include <pslib.h> 19 19 #include "pmHDU.h" 20 20 #include "pmFPA.h"
Note:
See TracChangeset
for help on using the changeset viewer.
