Changeset 11253 for trunk/psModules/src/objects
- Timestamp:
- Jan 23, 2007, 4:54:15 PM (19 years ago)
- Location:
- trunk/psModules/src/objects
- Files:
-
- 16 edited
-
pmGrowthCurve.h (modified) (2 diffs)
-
pmModel.h (modified) (2 diffs)
-
pmModelGroup.h (modified) (2 diffs)
-
pmMoments.h (modified) (2 diffs)
-
pmObjects.h (modified) (3 diffs)
-
pmPSF.h (modified) (2 diffs)
-
pmPSF_IO.h (modified) (2 diffs)
-
pmPSFtry.h (modified) (3 diffs)
-
pmPeaks.h (modified) (3 diffs)
-
pmSource.h (modified) (2 diffs)
-
pmSourceContour.h (modified) (2 diffs)
-
pmSourceFitModel.h (modified) (2 diffs)
-
pmSourceIO.h (modified) (3 diffs)
-
pmSourcePhotometry.h (modified) (2 diffs)
-
pmSourcePlots.h (modified) (2 diffs)
-
pmSourceSky.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmGrowthCurve.h
r9897 r11253 1 /* @file pmGrowthCurve.h 2 * @brief functions to manipulate the curve-of-growth data 3 * 4 * @author EAM, IfA 5 * 6 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-01-24 02:54:15 $ 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 */ 1 10 2 11 # ifndef PM_GROWTH_CURVE_H 3 12 # define PM_GROWTH_CURVE_H 13 14 /// @addtogroup Objects Object Detection / Analysis Functions 15 /// @{ 4 16 5 17 typedef struct … … 18 30 psF32 pmGrowthCurveCorrect (pmGrowthCurve *growth, psF32 radius); 19 31 32 /// @} 20 33 # endif /* PM_GROWTH_CURVE_H */ -
trunk/psModules/src/objects/pmModel.h
r9810 r11253 1 /** @file pmObjects.h 1 /* @file pmObjects.h 2 * @brief Functions to define and manipulate object models 2 3 * 3 * Functions to define and manipulate object models 4 * @author GLG, MHPCC 5 * @author EAM, IfA 4 6 * 5 * @author GLG, MHPCC 6 * @author EAM, IfA 7 * 8 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-10-31 19:38:44 $ 10 * 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 12 * 7 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-01-24 02:54:15 $ 9 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 13 10 */ 14 11 15 12 # ifndef PM_MODEL_H 16 13 # define PM_MODEL_H 14 15 /// @addtogroup Objects Object Detection / Analysis Functions 16 /// @{ 17 17 18 18 // type of model carried by the pmModel structure … … 125 125 ); 126 126 127 /// @} 127 128 # endif /* PM_MODEL_H */ -
trunk/psModules/src/objects/pmModelGroup.h
r10257 r11253 1 /** @file pmModelGroup.h 2 * 3 * The object model function types are defined to allow for the flexible addition 4 * of new object models. Every object model, with parameters represented by 5 * pmModel, has an associated set of functions which provide necessary support 6 * operations. A set of abstract functions allow the programmer to select the 7 * approriate function or property for a specific named object model. 8 * 9 * @author EAM, IfA 10 * 11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2006-11-29 02:36:07 $ 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 * 1 /* @file pmModelGroup.h 2 * 3 * The object model function types are defined to allow for the flexible addition 4 * of new object models. Every object model, with parameters represented by 5 * pmModel, has an associated set of functions which provide necessary support 6 * operations. A set of abstract functions allow the programmer to select the 7 * approriate function or property for a specific named object model. 8 * 9 * @author EAM, IfA 10 * 11 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2007-01-24 02:54:15 $ 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 16 14 */ 17 15 18 16 # ifndef PM_MODEL_GROUP_H 19 17 # define PM_MODEL_GROUP_H 18 19 /// @addtogroup Objects Object Detection / Analysis Functions 20 /// @{ 20 21 21 22 // This function is the model chi-square minimization function for this model. … … 200 201 ); 201 202 203 /// @} 202 204 # endif /* PM_MODEL_GROUP_H */ -
trunk/psModules/src/objects/pmMoments.h
r6872 r11253 1 /** @file pmMoments.h 1 /* @file pmMoments.h 2 * @brief Definitions of the moments structure 2 3 * 3 * Definitions of the moments structure4 * @author GLG, MHPCC 4 5 * 5 * @author GLG, MHPCC 6 * 7 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2006-04-17 18:01:05 $ 9 * 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 11 * 6 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-01-24 02:54:15 $ 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 12 9 */ 13 10 14 11 # ifndef PM_MOMENTS_H 15 12 # define PM_MOMENTS_H 13 14 /// @addtogroup Objects Object Detection / Analysis Functions 15 /// @{ 16 16 17 17 /** pmMoments data structure … … 43 43 pmMoments *pmMomentsAlloc(); 44 44 45 /// @} 45 46 # endif -
trunk/psModules/src/objects/pmObjects.h
r9621 r11253 1 /* *@file pmObjects.h1 /* @file pmObjects.h 2 2 * 3 3 * The process of finding, measuring, and classifying astronomical sources on … … 8 8 * construct a complete object measurement suite. 9 9 * 10 * @author GLG, MHPCC10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-10-18 02:29:15 $ 14 * 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 16 * 12 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-01-24 02:54:15 $ 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 17 15 */ 18 16 19 17 #ifndef PM_OBJECTS_H 20 18 #define PM_OBJECTS_H 19 20 /// @addtogroup Objects Object Detection / Analysis Functions 21 /// @{ 21 22 22 23 #include <stdio.h> … … 64 65 ); 65 66 66 67 /// @} 67 68 #endif -
trunk/psModules/src/objects/pmPSF.h
r9924 r11253 1 /* *@file pmPSF.h1 /* @file pmPSF.h 2 2 * 3 3 * This file contains typedefs for the Point-Spread Function and prototypes 4 4 * for functions that calculate the PSF. 5 5 * 6 * @author EAM, IfA6 * @author EAM, IfA 7 7 * 8 * 9 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii10 * 8 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-01-24 02:54:15 $ 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 11 11 */ 12 12 13 13 # ifndef PM_PSF_H 14 14 # define PM_PSF_H 15 16 /// @addtogroup Objects Object Detection / Analysis Functions 17 /// @{ 15 18 16 19 typedef enum { … … 96 99 pmPSF *pmPSFBuildSimple (char *typeName, float sxx, float syy, float sxy, ...); 97 100 101 /// @} 98 102 # endif -
trunk/psModules/src/objects/pmPSF_IO.h
r10421 r11253 1 /* *@file pmPSF.h1 /* @file pmPSF.h 2 2 * 3 3 * This file contains typedefs for the Point-Spread Function and prototypes 4 4 * for functions that calculate the PSF. 5 5 * 6 * @author EAM, IfA6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-12-03 18:48:10 $ 10 * 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 12 * 8 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-01-24 02:54:15 $ 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 13 11 */ 14 12 15 13 # ifndef PM_PSF_IO_H 16 14 # define PM_PSF_IO_H 15 16 /// @addtogroup Objects Object Detection / Analysis Functions 17 /// @{ 17 18 18 19 psMetadata *pmPSFtoMetadata (psMetadata *metadata, pmPSF *psf); … … 30 31 bool pmReadoutReadPSFmodel (pmReadout *readout, const pmFPAview *view, pmFPAfile *file, pmConfig *config); 31 32 33 /// @} 32 34 # endif -
trunk/psModules/src/objects/pmPSFtry.h
r10197 r11253 1 /* *@file pmPSFtry.h1 /* @file pmPSFtry.h 2 2 * 3 3 * This file contains code that allows the user to try to fit several 4 4 * PSF models to an image. 5 5 * 6 * @author EAM, IfA6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2006-11-26 22:21:50 $ 10 * 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 12 * 8 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-01-24 02:54:15 $ 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 13 11 */ 14 12 … … 16 14 # define PM_PSF_TRY_H 17 15 16 /// @addtogroup Objects Object Detection / Analysis Functions 17 /// @{ 18 18 19 19 /** … … 125 125 bool pmPSFFromPSFtry (pmPSFtry *psfTry, bool applyWeights); 126 126 127 /// @} 127 128 # endif -
trunk/psModules/src/objects/pmPeaks.h
r11159 r11253 1 /* *@file pmPeaks.h1 /* @file pmPeaks.h 2 2 * 3 3 * The process of finding, measuring, and classifying astronomical sources on … … 8 8 * construct a complete object measurement suite. 9 9 * 10 * @author GLG, MHPCC10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-01-19 04:36:53 $ 14 * 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 16 * 12 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-01-24 02:54:15 $ 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 17 15 */ 18 16 19 17 # ifndef PM_PEAKS_H 20 18 # define PM_PEAKS_H 19 20 /// @addtogroup Objects Object Detection / Analysis Functions 21 /// @{ 21 22 22 23 /** pmPeakType … … 147 148 int pmPeaksCompareDescend (const void **a, const void **b); 148 149 150 /// @} 149 151 # endif /* PM_PEAKS_H */ -
trunk/psModules/src/objects/pmSource.h
r11203 r11253 1 /** @file pmSource.h 2 * 3 * @author EAM, IfA; GLG, MHPCC 4 * 5 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-01-20 02:01:20 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 * 1 /* @file pmSource.h 2 * 3 * @author EAM, IfA; GLG, MHPCC 4 * 5 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-01-24 02:54:15 $ 7 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 8 */ 11 9 12 10 # ifndef PM_SOURCE_H 13 11 # define PM_SOURCE_H 12 13 /// @addtogroup Objects Object Detection / Analysis Functions 14 /// @{ 14 15 15 16 /** … … 228 229 pmModel *pmSourceSelectModel (pmSource *source); 229 230 231 /// @} 230 232 # endif /* PM_SOURCE_H */ -
trunk/psModules/src/objects/pmSourceContour.h
r6872 r11253 1 /* *@file pmSourceContour.h1 /* @file pmSourceContour.h 2 2 * 3 * @author EAM, IfA; GLG, MHPCC3 * @author EAM, IfA; GLG, MHPCC 4 4 * 5 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-04-17 18:01:05 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 * 5 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-01-24 02:54:15 $ 7 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 8 */ 11 9 12 10 # ifndef PM_SOURCE_CONTOUR_H 13 11 # define PM_SOURCE_CONTOUR_H 12 13 /// @addtogroup Objects Object Detection / Analysis Functions 14 /// @{ 14 15 15 16 psArray *pmSourceContour (psImage *image, int xc, int yc, float threshold); … … 35 36 ); 36 37 38 /// @} 37 39 # endif /* PM_SOURCE_PHOTOMETRY_H */ -
trunk/psModules/src/objects/pmSourceFitModel.h
r10260 r11253 1 /* *@file pmSourceFitModel.h1 /* @file pmSourceFitModel.h 2 2 * 3 * @author EAM, IfA; GLG, MHPCC3 * @author EAM, IfA; GLG, MHPCC 4 4 * 5 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-11-29 02:44:21 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 * 5 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-01-24 02:54:15 $ 7 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 8 */ 11 9 12 10 # ifndef PM_SOURCE_FIT_MODEL_H 13 11 # define PM_SOURCE_FIT_MODEL_H 12 13 /// @addtogroup Objects Object Detection / Analysis Functions 14 /// @{ 14 15 15 16 typedef enum { … … 71 72 ); 72 73 74 /// @} 73 75 # endif /* PM_SOURCE_FIT_MODEL_H */ -
trunk/psModules/src/objects/pmSourceIO.h
r10421 r11253 1 /** @file pmSourceIO.h 1 /* @file pmSourceIO.h 2 * @brief functions to read and write object files 2 3 * 3 * @author EAM, IfA; GLG, MHPCC4 * @author EAM, IfA; GLG, MHPCC 4 5 * 5 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-12-03 18:48:10 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 6 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-01-24 02:54:15 $ 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 9 * 10 10 */ … … 12 12 # ifndef PM_SOURCE_IO_H 13 13 # define PM_SOURCE_IO_H 14 15 /// @addtogroup Objects Object Detection / Analysis Functions 16 /// @{ 14 17 15 18 int pmSourceDophotType (pmSource *source); … … 42 45 bool pmReadoutWriteObjects (pmReadout *readout, const pmFPAview *view, pmFPAfile *file, pmConfig *config); 43 46 47 /// @} 44 48 # endif /* PM_SOURCE_IO_H */ -
trunk/psModules/src/objects/pmSourcePhotometry.h
r10050 r11253 1 /** @file pmSourcePhotometry.h 1 /* @file pmSourcePhotometry.h 2 * @brief functions to measure source photometry 2 3 * 3 * @author EAM, IfA; GLG, MHPCC4 * @author EAM, IfA; GLG, MHPCC 4 5 * 5 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-11-17 23:02:21 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 * 6 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-01-24 02:54:15 $ 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 9 */ 11 10 12 11 # ifndef PM_SOURCE_PHOTOMETRY_H 13 12 # define PM_SOURCE_PHOTOMETRY_H 13 14 /// @addtogroup Objects Object Detection / Analysis Functions 15 /// @{ 14 16 15 17 /** … … 55 57 56 58 double pmSourceWeight(const pmSource *Mi, int term, const bool unweighted_sum); 59 60 /// @} 57 61 # endif /* PM_SOURCE_PHOTOMETRY_H */ -
trunk/psModules/src/objects/pmSourcePlots.h
r10827 r11253 1 /** @file pmSourcePlots.h 2 * 3 * @brief functions to create plots illustrating source properties 4 * 5 * @ingroup none 6 * 7 * @author EAM, IfA 8 * 9 * @version $Revision: 1.1 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-12-23 04:00:30 $ 11 * 12 * Copyright 2006 Institute for Astronomy, University of Hawaii 13 */ 1 /* @file pmSourcePlots.h 2 * @brief functions to create plots illustrating source properties 3 * 4 * @author EAM, IfA 5 * 6 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-01-24 02:54:15 $ 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 */ 14 10 15 11 #ifndef PM_SOURCE_PLOTS_H 16 12 #define PM_SOURCE_PLOTS_H 13 14 /// @addtogroup Objects Object Detection / Analysis Functions 15 /// @{ 17 16 18 17 typedef struct … … 38 37 bool pmSourcePlotMoments (const pmFPAview *view, pmFPAfile *file, pmConfig *config, pmSourcePlotLayout *layout); 39 38 39 /// @} 40 40 #endif // PM_SOURCE_PLOTS_H -
trunk/psModules/src/objects/pmSourceSky.h
r6872 r11253 1 /** @file pmSourceSky.h 1 /* @file pmSourceSky.h 2 * @author EAM, IfA; GLG, MHPCC 2 3 * 3 * @author EAM, IfA; GLG, MHPCC 4 * 5 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-04-17 18:01:05 $ 7 * 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 * 4 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 5 * @date $Date: 2007-01-24 02:54:15 $ 6 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 7 */ 11 8 12 9 # ifndef PM_SOURCE_SKY_H 13 10 # define PM_SOURCE_SKY_H 11 12 /// @addtogroup Objects Object Detection / Analysis Functions 13 /// @{ 14 14 15 15 /** pmSourceLocalSky() … … 40 40 ); 41 41 42 /// @} 42 43 # endif /* PM_SOURCE_PHOTOMETRY_H */
Note:
See TracChangeset
for help on using the changeset viewer.
