Changeset 7604
- Timestamp:
- Jun 20, 2006, 5:21:16 PM (20 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 31 edited
-
astrom/pmAstrometryDistortion.c (modified) (2 diffs)
-
astrom/pmAstrometryObjects.c (modified) (2 diffs)
-
astrom/pmFPAAstrometry.c (modified) (1 diff)
-
camera/pmFPA.c (modified) (2 diffs)
-
camera/pmFPAConstruct.c (modified) (1 diff)
-
camera/pmFPAHeader.c (modified) (1 diff)
-
camera/pmFPARead.c (modified) (1 diff)
-
camera/pmFPAUtils.c (modified) (1 diff)
-
camera/pmHDU.c (modified) (1 diff)
-
concepts/pmConceptsRead.c (modified) (1 diff)
-
concepts/pmConceptsWrite.c (modified) (1 diff)
-
detrend/pmFlatField.c (modified) (2 diffs)
-
detrend/pmFringeStats.c (modified) (2 diffs)
-
detrend/pmNonLinear.c (modified) (2 diffs)
-
detrend/pmSubtractBias.c (modified) (2 diffs)
-
detrend/pmSubtractSky.c (modified) (2 diffs)
-
imcombine/pmImageSubtract.c (modified) (2 diffs)
-
objects/pmModel.c (modified) (3 diffs)
-
objects/pmModelGroup.c (modified) (3 diffs)
-
objects/pmMoments.c (modified) (2 diffs)
-
objects/pmObjects.c (modified) (2 diffs)
-
objects/pmPeaks.c (modified) (3 diffs)
-
objects/pmSource.c (modified) (2 diffs)
-
objects/pmSourceFitModel.c (modified) (3 diffs)
-
objects/pmSourceIO_CMF.c (modified) (2 diffs)
-
objects/pmSourceIO_CMP.c (modified) (2 diffs)
-
objects/pmSourceIO_OBJ.c (modified) (2 diffs)
-
objects/pmSourceIO_RAW.c (modified) (2 diffs)
-
objects/pmSourceIO_SX.c (modified) (2 diffs)
-
objects/pmSourcePhotometry.c (modified) (2 diffs)
-
objects/pmSourceSky.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmAstrometryDistortion.c
r7282 r7604 7 7 * @author EAM, IfA 8 8 * 9 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-06- 02 02:15:35$9 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-21 03:21:16 $ 11 11 * 12 12 * Copyright 2006 Institute for Astronomy, University of Hawaii … … 21 21 //#include <math.h> 22 22 //#include <unistd.h> // for unlink 23 #include "pslib.h"23 #include <pslib.h> 24 24 #include "pmFPA.h" 25 25 #include "pmAstrometryObjects.h" -
trunk/psModules/src/astrom/pmAstrometryObjects.c
r7382 r7604 8 8 * @author EAM, IfA 9 9 * 10 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $11 * @date $Date: 2006-06- 07 03:27:52$10 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2006-06-21 03:21:16 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include <math.h> 22 22 #include <unistd.h> // for unlink 23 #include "pslib.h" 24 #include "psVectorSmooth.h" 23 #include <pslib.h> 25 24 #include "pmFPA.h" 26 25 #include "pmAstrometryObjects.h" -
trunk/psModules/src/astrom/pmFPAAstrometry.c
r6872 r7604 1 1 #include <stdio.h> 2 #include "pslib.h"2 #include <pslib.h> 3 3 #include "pmFPAAstrometry.h" 4 4 #include "pmFPA.h" -
trunk/psModules/src/camera/pmFPA.c
r7589 r7604 12 12 * XXX: Should we implement non-linear cell->chip transforms? 13 13 * 14 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-06- 17 01:50:43$14 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-06-21 03:21:16 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include <math.h> 25 25 #include <assert.h> 26 #include "pslib.h"26 #include <pslib.h> 27 27 28 28 #include "pmHDU.h" -
trunk/psModules/src/camera/pmFPAConstruct.c
r7589 r7604 2 2 #include <assert.h> 3 3 #include <string.h> 4 #include "pslib.h" 5 #include "psMetadataItemParse.h" 4 #include <pslib.h> 6 5 7 6 #include "pmFPA.h" -
trunk/psModules/src/camera/pmFPAHeader.c
r7469 r7604 1 1 #include <stdio.h> 2 2 #include <assert.h> 3 #include "pslib.h"3 #include <pslib.h> 4 4 #include "pmFPA.h" 5 5 #include "pmHDU.h" -
trunk/psModules/src/camera/pmFPARead.c
r7555 r7604 2 2 #include <strings.h> 3 3 #include <assert.h> 4 #include "pslib.h"4 #include <pslib.h> 5 5 6 6 #include "pmFPA.h" -
trunk/psModules/src/camera/pmFPAUtils.c
r7278 r7604 1 1 #include <stdio.h> 2 #include "pslib.h"2 #include <pslib.h> 3 3 #include "pmFPA.h" 4 4 #include "pmFPAUtils.h" -
trunk/psModules/src/camera/pmHDU.c
r7382 r7604 2 2 #include <assert.h> 3 3 4 #include "pslib.h"4 #include <pslib.h> 5 5 #include "pmFPA.h" 6 6 -
trunk/psModules/src/concepts/pmConceptsRead.c
r7450 r7604 1 1 #include <stdio.h> 2 2 #include <assert.h> 3 4 #include "pslib.h" 5 #include "psMetadataItemParse.h" 3 #include <pslib.h> 6 4 7 5 #include "pmFPA.h" -
trunk/psModules/src/concepts/pmConceptsWrite.c
r7516 r7604 9 9 #include "pmConcepts.h" 10 10 #include "pmConceptsRead.h" 11 #include "psMetadataItemCompare.h"12 11 13 12 ////////////////////////////////////////////////////////////////////////////////////////////////////////////// -
trunk/psModules/src/detrend/pmFlatField.c
r7283 r7604 18 18 * @author Ross Harman, MHPCC 19 19 * 20 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $21 * @date $Date: 2006-06- 02 02:16:05$20 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 21 * @date $Date: 2006-06-21 03:21:16 $ 22 22 * 23 23 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #endif 29 29 30 #include <stdio.h>31 #include <math.h>30 #include <stdio.h> 31 #include <math.h> 32 32 #include <strings.h> 33 33 34 #include "pslib.h"34 #include <pslib.h> 35 35 #include "pmFlatField.h" 36 36 #include "pmFPAMaskWeight.h" -
trunk/psModules/src/detrend/pmFringeStats.c
r7567 r7604 3 3 * @author Eugene Magnier, IfA 4 4 * 5 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-06- 14 22:34:46 $5 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-06-21 03:21:16 $ 7 7 * 8 8 * Copyright 2004 IfA … … 11 11 #include <stdio.h> 12 12 #include <assert.h> 13 #include "pslib.h"13 #include <pslib.h> 14 14 #include "pmFPA.h" 15 15 #include "pmFringeStats.h" -
trunk/psModules/src/detrend/pmNonLinear.c
r6873 r7604 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-0 4-17 18:10:08$12 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-06-21 03:21:16 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #endif 24 24 25 #include<stdio.h> 26 #include<math.h> 25 #include <stdio.h> 26 #include <math.h> 27 #include <pslib.h> 27 28 28 29 #include "pmNonLinear.h" -
trunk/psModules/src/detrend/pmSubtractBias.c
r7589 r7604 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2006-06- 17 01:50:43$13 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-06-21 03:21:16 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 22 #endif 23 23 24 #include <stdio.h> 24 25 #include <assert.h> 26 #include <pslib.h> 25 27 #include "pmSubtractBias.h" 26 28 -
trunk/psModules/src/detrend/pmSubtractSky.c
r7018 r7604 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2006-0 5-01 01:56:29$8 * @version $Revision: 1.2 $ $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 … … 15 15 */ 16 16 17 #include <stdio.h>18 #include <math.h>19 #include "pslib.h"17 #include <stdio.h> 18 #include <math.h> 19 #include <pslib.h> 20 20 #include "pmSubtractSky.h" 21 21 -
trunk/psModules/src/imcombine/pmImageSubtract.c
r7018 r7604 7 7 * @author GLG, MHPCC 8 8 * 9 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 5-01 01:56:48$9 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-21 03:21:16 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 38 38 */ 39 39 40 #include<stdio.h> 41 #include<math.h> 42 #include "pslib.h" 43 #include "psConstants.h" 40 #include <stdio.h> 41 #include <math.h> 42 #include <pslib.h> 44 43 #include "pmImageSubtract.h" 45 44 -
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.
