Changeset 20937
- Timestamp:
- Dec 7, 2008, 4:51:14 PM (17 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 42 edited
-
camera/pmFPAfileIO.c (modified) (1 diff)
-
camera/pmReadoutFake.c (modified) (1 diff)
-
imcombine/pmPSFEnvelope.c (modified) (1 diff)
-
imcombine/pmSubtractionStamps.c (modified) (1 diff)
-
objects/pmFootprint.c (modified) (2 diffs)
-
objects/pmFootprintArrayGrow.c (modified) (2 diffs)
-
objects/pmFootprintArraysMerge.c (modified) (2 diffs)
-
objects/pmFootprintAssignPeaks.c (modified) (3 diffs)
-
objects/pmFootprintFind.c (modified) (2 diffs)
-
objects/pmFootprintFindAtPoint.c (modified) (2 diffs)
-
objects/pmFootprintIDs.c (modified) (2 diffs)
-
objects/pmGrowthCurve.c (modified) (2 diffs)
-
objects/pmGrowthCurveGenerate.c (modified) (2 diffs)
-
objects/pmModelClass.c (modified) (2 diffs)
-
objects/pmModelGroup.c (modified) (2 diffs)
-
objects/pmPSF.c (modified) (2 diffs)
-
objects/pmPSF_IO.c (modified) (2 diffs)
-
objects/pmPSFtry.c (modified) (2 diffs)
-
objects/pmPeaks.c (modified) (2 diffs)
-
objects/pmPeaks.h (modified) (2 diffs)
-
objects/pmSource.c (modified) (2 diffs)
-
objects/pmSourceContour.c (modified) (2 diffs)
-
objects/pmSourceExtendedPars.c (modified) (2 diffs)
-
objects/pmSourceFitModel.c (modified) (2 diffs)
-
objects/pmSourceFitSet.c (modified) (2 diffs)
-
objects/pmSourceIO.c (modified) (2 diffs)
-
objects/pmSourceIO_CMP.c (modified) (2 diffs)
-
objects/pmSourceIO_OBJ.c (modified) (2 diffs)
-
objects/pmSourceIO_PS1_CAL_0.c (modified) (2 diffs)
-
objects/pmSourceIO_PS1_DEV_0.c (modified) (2 diffs)
-
objects/pmSourceIO_PS1_DEV_1.c (modified) (2 diffs)
-
objects/pmSourceIO_RAW.c (modified) (2 diffs)
-
objects/pmSourceIO_SMPDATA.c (modified) (2 diffs)
-
objects/pmSourceIO_SX.c (modified) (2 diffs)
-
objects/pmSourceMoments.c (modified) (2 diffs)
-
objects/pmSourcePhotometry.c (modified) (2 diffs)
-
objects/pmSourcePlotApResid.c (modified) (2 diffs)
-
objects/pmSourcePlotMoments.c (modified) (2 diffs)
-
objects/pmSourcePlotPSFModel.c (modified) (2 diffs)
-
objects/pmSourceSky.c (modified) (2 diffs)
-
objects/pmSourceUtils.c (modified) (2 diffs)
-
psmodules.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileIO.c
r20639 r20937 24 24 #include "pmFPAfileIO.h" 25 25 #include "pmFPAfileFitsIO.h" 26 #include "pmSpan.h" 27 #include "pmFootprint.h" 26 28 #include "pmPeaks.h" 27 29 #include "pmMoments.h" -
trunk/psModules/src/camera/pmReadoutFake.c
r20468 r20937 17 17 #include "pmModel.h" 18 18 #include "pmModelClass.h" 19 #include "pmSpan.h" 20 #include "pmFootprint.h" 19 21 #include "pmPeaks.h" 20 22 #include "pmSource.h" -
trunk/psModules/src/imcombine/pmPSFEnvelope.c
r19998 r20937 20 20 #include "pmModelClass.h" 21 21 #include "pmModelUtils.h" 22 #include "pmSpan.h" 23 #include "pmFootprint.h" 22 24 #include "pmPeaks.h" 23 25 #include "pmSource.h" -
trunk/psModules/src/imcombine/pmSubtractionStamps.c
r20714 r20937 9 9 // All these includes required to get stamps out of an array of pmSources 10 10 #include "pmMoments.h" 11 #include "pmSpan.h" 12 #include "pmFootprint.h" 11 13 #include "pmPeaks.h" 12 14 #include "pmResiduals.h" -
trunk/psModules/src/objects/pmFootprint.c
r18828 r20937 4 4 * @author RHL, Princeton & IfA; EAM, IfA 5 5 * 6 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $7 * @date $Date: 2008- 08-01 00:00:17$6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-12-08 02:51:14 $ 8 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 9 */ … … 18 18 #include <strings.h> 19 19 #include <pslib.h> 20 #include "pmPeaks.h"21 20 #include "pmSpan.h" 22 21 #include "pmFootprint.h" 22 #include "pmPeaks.h" 23 23 24 24 static void footprintFree(pmFootprint *tmp) -
trunk/psModules/src/objects/pmFootprintArrayGrow.c
r20457 r20937 3 3 * @author RHL, Princeton & IfA; EAM, IfA 4 4 * 5 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 0-29 02:45:44 $5 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * Copyright 2006 Institute for Astronomy, University of Hawaii 8 8 */ … … 19 19 #include "pmSpan.h" 20 20 #include "pmFootprint.h" 21 #include "pmPeaks.h" 21 22 22 23 # define USE_FFTS_TO_CONVOLVE 1 -
trunk/psModules/src/objects/pmFootprintArraysMerge.c
r18828 r20937 3 3 * @author RHL, Princeton & IfA; EAM, IfA 4 4 * 5 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 08-01 00:00:17$5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * Copyright 2006 Institute for Astronomy, University of Hawaii 8 8 */ … … 19 19 #include "pmSpan.h" 20 20 #include "pmFootprint.h" 21 #include "pmPeaks.h" 21 22 22 23 /* -
trunk/psModules/src/objects/pmFootprintAssignPeaks.c
r18828 r20937 3 3 * @author RHL, Princeton & IfA; EAM, IfA 4 4 * 5 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 08-01 00:00:17$5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * Copyright 2006 Institute for Astronomy, University of Hawaii 8 8 */ … … 17 17 #include <strings.h> 18 18 #include <pslib.h> 19 #include "pmPeaks.h"20 19 #include "pmSpan.h" 21 20 #include "pmFootprint.h" 21 #include "pmPeaks.h" 22 22 23 23 /* … … 71 71 pmFootprint *fp = footprints->data[id - 1]; 72 72 psArrayAdd(fp->peaks, 5, peak); 73 peak->footprint = (struct pmFootprint *)fp; // reference to containing footprint73 peak->footprint = fp; // reference to containing footprint 74 74 } 75 75 -
trunk/psModules/src/objects/pmFootprintFind.c
r19876 r20937 4 4 * @author RHL, Princeton & IfA; EAM, IfA 5 5 * 6 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $7 * @date $Date: 2008-1 0-03 03:21:22$6 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-12-08 02:51:14 $ 8 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 9 */ … … 20 20 #include "pmSpan.h" 21 21 #include "pmFootprint.h" 22 #include "pmPeaks.h" 22 23 23 24 // XXX EAM : why use WSPAN in here rather than pmSpan? -
trunk/psModules/src/objects/pmFootprintFindAtPoint.c
r18828 r20937 4 4 * @author RHL, Princeton & IfA; EAM, IfA 5 5 * 6 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $7 * @date $Date: 2008- 08-01 00:00:17$6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-12-08 02:51:14 $ 8 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 9 */ … … 18 18 #include <strings.h> 19 19 #include <pslib.h> 20 #include "pmPeaks.h"21 20 #include "pmSpan.h" 22 21 #include "pmFootprint.h" 22 #include "pmPeaks.h" 23 23 24 24 /* -
trunk/psModules/src/objects/pmFootprintIDs.c
r18828 r20937 4 4 * @author RHL, Princeton & IfA; EAM, IfA 5 5 * 6 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $7 * @date $Date: 2008- 08-01 00:00:17$6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-12-08 02:51:14 $ 8 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 9 */ … … 20 20 #include "pmSpan.h" 21 21 #include "pmFootprint.h" 22 #include "pmPeaks.h" 22 23 23 24 /* -
trunk/psModules/src/objects/pmGrowthCurve.c
r20232 r20937 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 0-17 22:58:23$7 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-12-08 02:51:14 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #include "pmHDU.h" 21 21 #include "pmFPA.h" 22 #include "pmSpan.h" 23 #include "pmFootprint.h" 22 24 #include "pmPeaks.h" 23 25 #include "pmMoments.h" -
trunk/psModules/src/objects/pmGrowthCurveGenerate.c
r20447 r20937 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 0-29 00:00:37$7 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-12-08 02:51:14 $ 9 9 * 10 10 * Copyright 2004 Institute for Astronomy, University of Hawaii … … 24 24 #include "pmHDU.h" 25 25 #include "pmFPA.h" 26 #include "pmSpan.h" 27 #include "pmFootprint.h" 26 28 #include "pmPeaks.h" 27 29 #include "pmMoments.h" -
trunk/psModules/src/objects/pmModelClass.c
r19902 r20937 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 0-06 12:57:58$8 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include "pmHDU.h" 24 24 #include "pmFPA.h" 25 #include "pmSpan.h" 26 #include "pmFootprint.h" 25 27 #include "pmPeaks.h" 26 28 #include "pmMoments.h" -
trunk/psModules/src/objects/pmModelGroup.c
r15562 r20937 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $9 * @date $Date: 200 7-11-10 01:09:20$8 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include "pmHDU.h" 24 24 #include "pmFPA.h" 25 #include "pmSpan.h" 26 #include "pmFootprint.h" 25 27 #include "pmPeaks.h" 26 28 #include "pmMoments.h" -
trunk/psModules/src/objects/pmPSF.c
r20076 r20937 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.3 8$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 0-13 01:56:42$8 * @version $Revision: 1.39 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 #include "pmHDU.h" 26 26 #include "pmFPA.h" 27 #include "pmSpan.h" 28 #include "pmFootprint.h" 27 29 #include "pmPeaks.h" 28 30 #include "pmMoments.h" -
trunk/psModules/src/objects/pmPSF_IO.c
r19906 r20937 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.3 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 0-06 13:05:13$8 * @version $Revision: 1.36 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 37 37 #include "pmFPAfileFitsIO.h" 38 38 39 #include "pmSpan.h" 40 #include "pmFootprint.h" 39 41 #include "pmPeaks.h" 40 42 #include "pmMoments.h" -
trunk/psModules/src/objects/pmPSFtry.c
r20582 r20937 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.6 6$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 1-08 01:52:34 $7 * @version $Revision: 1.67 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-12-08 02:51:14 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #include "pmFPA.h" 21 21 #include "pmFPAMaskWeight.h" 22 #include "pmSpan.h" 23 #include "pmFootprint.h" 22 24 #include "pmPeaks.h" 23 25 #include "pmMoments.h" -
trunk/psModules/src/objects/pmPeaks.c
r20332 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 0-22 22:19:42$8 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include <string.h> 22 22 #include <pslib.h> 23 #include "pmSpan.h" 24 #include "pmFootprint.h" 23 25 #include "pmPeaks.h" 24 26 -
trunk/psModules/src/objects/pmPeaks.h
r18971 r20937 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2008- 08-08 19:41:56$12 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2008-12-08 02:51:14 $ 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 15 */ … … 60 60 bool assigned; ///< is peak assigned to a source? 61 61 pmPeakType type; ///< Description of peak. 62 structpmFootprint *footprint; ///< reference to containing footprint62 pmFootprint *footprint; ///< reference to containing footprint 63 63 } 64 64 pmPeak; -
trunk/psModules/src/objects/pmSource.c
r20522 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.6 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 1-04 02:41:33$8 * @version $Revision: 1.66 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 #include "pmFPA.h" 26 26 #include "pmFPAMaskWeight.h" 27 #include "pmSpan.h" 28 #include "pmFootprint.h" 27 29 #include "pmPeaks.h" 28 30 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceContour.c
r15980 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $9 * @date $Date: 2008- 01-02 20:39:04 $8 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include "pmHDU.h" 24 24 #include "pmFPA.h" 25 #include "pmSpan.h" 26 #include "pmFootprint.h" 25 27 #include "pmPeaks.h" 26 28 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceExtendedPars.c
r15889 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $9 * @date $Date: 200 7-12-22 00:31:41$8 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include "pmFPA.h" 25 25 #include "pmFPAMaskWeight.h" 26 #include "pmSpan.h" 27 #include "pmFootprint.h" 26 28 #include "pmPeaks.h" 27 29 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceFitModel.c
r15054 r20937 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1.2 7$ $Name: not supported by cvs2svn $9 * @date $Date: 200 7-09-28 00:38:56$8 * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include "pmHDU.h" 24 24 #include "pmFPA.h" 25 #include "pmSpan.h" 26 #include "pmFootprint.h" 25 27 #include "pmPeaks.h" 26 28 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceFitSet.c
r15980 r20937 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2008- 01-02 20:39:04 $8 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include "pmHDU.h" 24 24 #include "pmFPA.h" 25 #include "pmSpan.h" 26 #include "pmFootprint.h" 25 27 #include "pmPeaks.h" 26 28 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO.c
r20826 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.6 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 1-25 01:27:52$5 * @version $Revision: 1.69 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmConcepts.h" 32 32 33 #include "pmSpan.h" 34 #include "pmFootprint.h" 33 35 #include "pmPeaks.h" 34 36 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_CMP.c
r18845 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 08-01 18:33:01$5 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_OBJ.c
r18841 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 08-01 01:05:39$5 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_PS1_CAL_0.c
r20741 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 1-14 02:11:45$5 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_PS1_DEV_0.c
r15980 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 01-02 20:39:04 $5 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_PS1_DEV_1.c
r19976 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 0-08 02:33:56$5 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_RAW.c
r19879 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 0-03 20:59:16$5 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_SMPDATA.c
r15562 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $6 * @date $Date: 200 7-11-10 01:09:20$5 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceIO_SX.c
r18845 r20937 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2008- 08-01 18:33:14 $5 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "pmFPAfile.h" 29 29 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceMoments.c
r19949 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2008-1 0-07 20:06:42$8 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 #include "pmFPA.h" 26 26 #include "pmFPAMaskWeight.h" 27 #include "pmSpan.h" 28 #include "pmFootprint.h" 27 29 #include "pmPeaks.h" 28 30 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourcePhotometry.c
r20307 r20937 3 3 * @author EAM, IfA; GLG, MHPCC 4 4 * 5 * @version $Revision: 1.4 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2008-1 0-22 02:11:08$5 * @version $Revision: 1.47 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2008-12-08 02:51:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 22 #include "pmFPA.h" 23 23 #include "pmFPAMaskWeight.h" 24 #include "pmSpan.h" 25 #include "pmFootprint.h" 24 26 #include "pmPeaks.h" 25 27 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourcePlotApResid.c
r20882 r20937 4 4 * @author EAM, IfA 5 5 * 6 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $7 * @date $Date: 2008-12-0 4 00:07:25$6 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2008-12-08 02:51:14 $ 8 8 * Copyright 2006 IfA, University of Hawaii 9 9 */ … … 25 25 #include "pmFPAview.h" 26 26 #include "pmFPAfile.h" 27 #include "pmSpan.h" 28 #include "pmFootprint.h" 27 29 #include "pmPeaks.h" 28 30 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourcePlotMoments.c
r19879 r20937 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 0-03 20:59:16$7 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-12-08 02:51:14 $ 9 9 * 10 10 * Copyright 2006 IfA, University of Hawaii … … 28 28 #include "pmFPAview.h" 29 29 #include "pmFPAfile.h" 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourcePlotPSFModel.c
r19879 r20937 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 0-03 20:59:16$7 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-12-08 02:51:14 $ 9 9 * 10 10 * Copyright 2006 IfA, University of Hawaii … … 28 28 #include "pmFPAview.h" 29 29 #include "pmFPAfile.h" 30 #include "pmSpan.h" 31 #include "pmFootprint.h" 30 32 #include "pmPeaks.h" 31 33 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceSky.c
r18554 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $9 * @date $Date: 2008- 07-15 20:25:00$8 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include "pmFPA.h" 25 25 #include "pmFPAMaskWeight.h" 26 #include "pmSpan.h" 27 #include "pmFootprint.h" 26 28 #include "pmPeaks.h" 27 29 #include "pmMoments.h" -
trunk/psModules/src/objects/pmSourceUtils.c
r15562 r20937 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $9 * @date $Date: 200 7-11-10 01:09:20$8 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-12-08 02:51:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include "pmFPA.h" 25 25 #include "pmFPAMaskWeight.h" 26 #include "pmSpan.h" 27 #include "pmFootprint.h" 26 28 #include "pmPeaks.h" 27 29 #include "pmMoments.h" -
trunk/psModules/src/psmodules.h
r20801 r20937 100 100 101 101 // the following headers are from psModule:objects 102 #include <pmPeaks.h>103 102 #include <pmSpan.h> 104 103 #include <pmFootprint.h> 104 #include <pmPeaks.h> 105 105 #include <pmDetections.h> 106 106 #include <pmMoments.h>
Note:
See TracChangeset
for help on using the changeset viewer.
