Changeset 12949
- Timestamp:
- Apr 21, 2007, 9:47:14 AM (19 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 2 added
- 26 edited
-
camera/pmFPAfileIO.c (modified) (1 diff)
-
objects/Makefile.am (modified) (2 diffs)
-
objects/pmGrowthCurve.c (modified) (2 diffs)
-
objects/pmModel.c (modified) (9 diffs)
-
objects/pmModel.h (modified) (2 diffs)
-
objects/pmModelGroup.c (modified) (2 diffs)
-
objects/pmPSF.c (modified) (4 diffs)
-
objects/pmPSF.h (modified) (2 diffs)
-
objects/pmPSF_IO.c (modified) (2 diffs)
-
objects/pmPSFtry.c (modified) (2 diffs)
-
objects/pmResiduals.c (added)
-
objects/pmResiduals.h (added)
-
objects/pmSource.c (modified) (2 diffs)
-
objects/pmSourceContour.c (modified) (2 diffs)
-
objects/pmSourceFitModel.c (modified) (2 diffs)
-
objects/pmSourceIO.c (modified) (2 diffs)
-
objects/pmSourceIO_CMF.c (modified) (2 diffs)
-
objects/pmSourceIO_CMP.c (modified) (2 diffs)
-
objects/pmSourceIO_OBJ.c (modified) (2 diffs)
-
objects/pmSourceIO_PS1_DEV_0.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/pmSourcePhotometry.c (modified) (2 diffs)
-
objects/pmSourcePlotMoments.c (modified) (2 diffs)
-
objects/pmSourcePlotPSFModel.c (modified) (2 diffs)
-
objects/pmSourceSky.c (modified) (2 diffs)
-
psmodules.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileIO.c
r12890 r12949 24 24 #include "pmPeaks.h" 25 25 #include "pmMoments.h" 26 #include "pmResiduals.h" 26 27 #include "pmModel.h" 27 28 #include "pmSource.h" 28 29 #include "pmSourceIO.h" 29 30 #include "pmGrowthCurve.h" 31 #include "pmResiduals.h" 30 32 #include "pmPSF.h" 31 33 #include "pmPSF_IO.h" -
trunk/psModules/src/objects/Makefile.am
r12448 r12949 23 23 pmSourcePlotPSFModel.c \ 24 24 pmSourcePlotMoments.c \ 25 pmResiduals.c \ 25 26 pmPSF.c \ 26 27 pmPSF_IO.c \ … … 46 47 pmSourceIO.h \ 47 48 pmSourcePlots.h \ 49 pmResiduals.h \ 48 50 pmPSF.h \ 49 51 pmPSF_IO.h \ -
trunk/psModules/src/objects/pmGrowthCurve.c
r12696 r12949 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 3-30 21:12:56$7 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-04-21 19:47:14 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 22 #include "pmPeaks.h" 23 23 #include "pmMoments.h" 24 #include "pmResiduals.h" 24 25 #include "pmModel.h" 25 26 #include "pmSource.h" -
trunk/psModules/src/objects/pmModel.c
r9810 r12949 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $9 * @date $Date: 200 6-10-31 19:38:44 $8 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47: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 "pmResiduals.h" 23 24 #include "pmModel.h" 24 25 … … 49 50 { 50 51 psTrace("psModules.objects", 3, "---- %s() begin ----\n", __func__); 52 51 53 pmModel *tmp = (pmModel *) psAlloc(sizeof(pmModel)); 54 psMemSetDeallocator(tmp, (psFreeFunc) modelFree); 52 55 53 56 tmp->type = type; … … 57 60 tmp->radiusFit = 0; 58 61 tmp->status = PM_MODEL_UNTRIED; 62 tmp->residuals = NULL; // XXX should the model own this memory? 59 63 60 64 psS32 Nparams = pmModelParameterCount(type); … … 72 76 } 73 77 74 psMemSetDeallocator(tmp, (psFreeFunc) modelFree);75 78 psTrace("psModules.objects", 3, "---- %s() end ----\n", __func__); 76 79 return(tmp); … … 88 91 new->status = model->status; 89 92 new->radiusFit = model->radiusFit; 93 94 // XXX note that model->residuals is just a reference 95 new->residuals = model->residuals; 90 96 91 97 for (int i = 0; i < new->params->n; i++) { … … 147 153 psF32 skyValue = params->data.F32[0]; 148 154 psF32 pixelValue; 149 150 for (psS32 i = 0; i < image->numRows; i++) { 151 for (psS32 j = 0; j < image->numCols; j++) { 152 if ((mask != NULL) && mask->data.U8[i][j]) 155 156 float xCenter = model->params->data.F32[PM_PAR_XPOS]; 157 float yCenter = model->params->data.F32[PM_PAR_YPOS]; 158 float Io = model->params->data.F32[PM_PAR_I0]; 159 160 int xBin = 1; 161 int yBin = 1; 162 float xResidCenter = 0.0; 163 float yResidCenter = 0.0; 164 165 psImageInterpolateOptions *Ro = NULL; 166 psImageInterpolateOptions *Rx = NULL; 167 psImageInterpolateOptions *Ry = NULL; 168 if (model->residuals) { 169 Ro = psImageInterpolateOptionsAlloc( 170 PS_INTERPOLATE_BILINEAR, 171 model->residuals->Ro, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0); 172 Rx = psImageInterpolateOptionsAlloc( 173 PS_INTERPOLATE_BILINEAR, 174 model->residuals->Rx, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0); 175 Ry = psImageInterpolateOptionsAlloc( 176 PS_INTERPOLATE_BILINEAR, 177 model->residuals->Ry, NULL, NULL, 0, 0.0, 0.0, 1, 0, 0.0); 178 179 xBin = model->residuals->xBin; 180 yBin = model->residuals->yBin; 181 xResidCenter = model->residuals->xCenter; 182 yResidCenter = model->residuals->yCenter; 183 } 184 185 for (psS32 iy = 0; iy < image->numRows; iy++) { 186 for (psS32 ix = 0; ix < image->numCols; ix++) { 187 if ((mask != NULL) && mask->data.U8[iy][ix]) 153 188 continue; 154 189 … … 156 191 // 'center' option changes meaning of i,j: 157 192 if (center) { 158 imageCol = j - 0.5*image->numCols + model->params->data.F32[2];159 imageRow = i - 0.5*image->numRows + model->params->data.F32[3];193 imageCol = ix - 0.5*image->numCols + xCenter; 194 imageRow = iy - 0.5*image->numRows + yCenter; 160 195 } else { 161 imageCol = j+ image->col0;162 imageRow = i + image->row0;196 imageCol = ix + image->col0; 197 imageRow = iy + image->row0; 163 198 } 164 199 … … 173 208 } 174 209 210 // get the contribution from the residual model 211 // XXX for a test, do this for all sources and all pixels 212 if (Ro) { 213 // fractional image position 214 // this is wrong for the 'center' case 215 float ox = xBin*(ix + 0.5 + image->col0 - xCenter) + xResidCenter; 216 float oy = yBin*(iy + 0.5 + image->row0 - yCenter) + yResidCenter; 217 218 psU8 mflux = 0; 219 double Fo = 0.0; 220 double Fx = 0.0; 221 double Fy = 0.0; 222 psImageInterpolate (&Fo, NULL, &mflux, ox, oy, Ro); 223 psImageInterpolate (&Fx, NULL, &mflux, ox, oy, Rx); 224 psImageInterpolate (&Fy, NULL, &mflux, ox, oy, Ry); 225 226 if (!mflux && isfinite(Fo) && isfinite(Fx) && isfinite(Fy)) { 227 double flux = Fo + xCenter*Fx + yCenter*Fy; 228 pixelValue += Io*flux; 229 } 230 } 175 231 176 232 // add or subtract the value 177 if (add 178 ) { 179 image->data.F32[i][j] += pixelValue; 180 } 181 else { 182 image->data.F32[i][j] -= pixelValue; 233 if (add) { 234 image->data.F32[iy][ix] += pixelValue; 235 } else { 236 image->data.F32[iy][ix] -= pixelValue; 183 237 } 184 238 } 185 239 } 186 240 psFree(x); 241 psFree(Ro); 242 psFree(Rx); 243 psFree(Ry); 187 244 psTrace("psModules.objects", 3, "---- %s(true) end ----\n", __func__); 188 245 return(true); -
trunk/psModules/src/objects/pmModel.h
r11253 r12949 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 1-24 02:54:15$7 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-04-21 19:47:14 $ 9 9 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 10 10 */ … … 38 38 typedef struct 39 39 { 40 pmModelType type; ///< Model to be used. 41 psVector *params; ///< Paramater values. 42 psVector *dparams; ///< Parameter errors. 43 float chisq; ///< Fit chi-squared. 44 float chisqNorm; ///< re-normalized fit chi-squared. 45 int nDOF; ///< number of degrees of freedom 46 int nIter; ///< number of iterations to reach min 47 pmModelStatus status; ///< fit status 48 float radiusFit; ///< fit radius actually used 40 pmModelType type; ///< Model to be used. 41 psVector *params; ///< Paramater values. 42 psVector *dparams; ///< Parameter errors. 43 float chisq; ///< Fit chi-squared. 44 float chisqNorm; ///< re-normalized fit chi-squared. 45 int nDOF; ///< number of degrees of freedom 46 int nIter; ///< number of iterations to reach min 47 pmModelStatus status; ///< fit status 48 float radiusFit; ///< fit radius actually used 49 pmResiduals *residuals; ///< normalized PSF residuals 49 50 } 50 51 pmModel; 52 53 /* XXX we are currently saving the residuals with the pmModel. It might be better to save this 54 * in the pmSource. we may want an API to Add/Sub a pmModel (analytical model only) or a 55 * pmSource (analytical + residuals). 56 */ 51 57 52 58 /** Symbolic names for the elements of [d]params -
trunk/psModules/src/objects/pmModelGroup.c
r10256 r12949 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $9 * @date $Date: 200 6-11-29 02:35:45$8 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include "pmMoments.h" 27 27 #include "pmGrowthCurve.h" 28 #include "pmResiduals.h" 28 29 #include "pmModel.h" 30 #include "pmResiduals.h" 29 31 #include "pmPSF.h" 30 32 #include "pmSource.h" -
trunk/psModules/src/objects/pmPSF.c
r12816 r12949 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-04- 12 18:56:37$8 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 27 27 #include "pmPeaks.h" 28 28 #include "pmMoments.h" 29 #include "pmResiduals.h" 29 30 #include "pmModel.h" 30 31 #include "pmSource.h" … … 73 74 psFree (psf->growth); 74 75 psFree (psf->params_NEW); 76 psFree (psf->residuals); 75 77 return; 76 78 } … … 117 119 // don't define a growth curve : user needs to choose radius bins 118 120 psf->growth = NULL; 121 122 // by default, we do not construct the residual image 123 psf->residuals = NULL; 119 124 120 125 Nparams = pmModelParameterCount (type); -
trunk/psModules/src/objects/pmPSF.h
r11253 r12949 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-0 1-24 02:54:15$8 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 11 11 */ … … 49 49 // unfitted elements (So, Io, Xo, Yo) and leave them as NULL 50 50 // I am using a new name to catch all refs to params with gcc 51 psPolynomial1D *ChiTrend; ///< Chisq vs flux fit (correction for systematic errors) 52 psPolynomial4D *ApTrend; ///< ApResid vs (x,y,rflux) (rflux = ten(0.4*mInst)) 53 //pmGrowthCurve *growth; ///< apMag vs Radius // move to end as gdb is confused by it here 54 float ApResid; ///< apMag - psfMag (for PSF stars) 55 float dApResid; ///< scatter of ApResid 56 float skyBias; ///< implied residual sky offset from ApResid fit 57 float skySat; ///< roll-over of ApResid fit 58 float chisq; ///< PSF goodness statistic (unused??) 59 int nPSFstars; ///< number of stars used to measure PSF 60 int nApResid; ///< number of stars used to measure ApResid 51 psPolynomial1D *ChiTrend; ///< Chisq vs flux fit (correction for systematic errors) 52 psPolynomial4D *ApTrend; ///< ApResid vs (x,y,rflux) (rflux = ten(0.4*mInst)) 53 float ApResid; ///< apMag - psfMag (for PSF stars) 54 float dApResid; ///< scatter of ApResid 55 float skyBias; ///< implied residual sky offset from ApResid fit 56 float skySat; ///< roll-over of ApResid fit 57 float chisq; ///< PSF goodness statistic (unused??) 58 int nPSFstars; ///< number of stars used to measure PSF 59 int nApResid; ///< number of stars used to measure ApResid 61 60 bool poissonErrors; 62 pmGrowthCurve *growth; ///< apMag vs Radius 61 pmGrowthCurve *growth; ///< apMag vs Radius 62 pmResiduals *residuals; ///< normalized residual image (no spatial variation) 63 63 } 64 64 pmPSF; -
trunk/psModules/src/objects/pmPSF_IO.c
r12832 r12949 6 6 * @author EAM, IfA 7 7 * 8 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-04- 14 03:22:48$8 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 36 36 #include "pmMoments.h" 37 37 #include "pmGrowthCurve.h" 38 #include "pmResiduals.h" 38 39 #include "pmModel.h" 39 40 #include "pmPSF.h" -
trunk/psModules/src/objects/pmPSFtry.c
r11158 r12949 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.3 4$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 1-19 04:35:53$7 * @version $Revision: 1.35 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-04-21 19:47:14 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 22 22 #include "pmPeaks.h" 23 23 #include "pmMoments.h" 24 #include "pmResiduals.h" 24 25 #include "pmModel.h" 25 26 #include "pmSource.h" -
trunk/psModules/src/objects/pmSource.c
r11762 r12949 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.2 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-0 2-13 03:14:42$8 * @version $Revision: 1.26 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include "pmPeaks.h" 27 27 #include "pmMoments.h" 28 #include "pmResiduals.h" 28 29 #include "pmModel.h" 29 30 #include "pmSource.h" -
trunk/psModules/src/objects/pmSourceContour.c
r9730 r12949 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $9 * @date $Date: 200 6-10-24 22:55:05$8 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 #include "pmPeaks.h" 26 26 #include "pmMoments.h" 27 #include "pmResiduals.h" 27 28 #include "pmModel.h" 28 29 #include "pmSource.h" -
trunk/psModules/src/objects/pmSourceFitModel.c
r11687 r12949 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-0 2-07 23:58:17$8 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include "pmMoments.h" 27 27 #include "pmGrowthCurve.h" 28 #include "pmResiduals.h" 28 29 #include "pmModel.h" 29 30 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO.c
r12890 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.3 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-04- 18 19:42:37$5 * @version $Revision: 1.36 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 33 33 #include "pmMoments.h" 34 34 #include "pmGrowthCurve.h" 35 #include "pmResiduals.h" 35 36 #include "pmModel.h" 36 37 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_CMF.c
r12696 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 3-30 21:12:56$5 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 27 27 #include "pmMoments.h" 28 28 #include "pmGrowthCurve.h" 29 #include "pmResiduals.h" 29 30 #include "pmModel.h" 30 31 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_CMP.c
r12888 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.2 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-04- 18 19:40:57$5 * @version $Revision: 1.26 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_OBJ.c
r12696 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 3-30 21:12:56$5 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_PS1_DEV_0.c
r12704 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 3-31 03:02:05$5 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_RAW.c
r12696 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 3-30 21:12:56$5 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_SMPDATA.c
r12884 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-04- 18 19:36:01$5 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceIO_SX.c
r12696 r12949 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 3-30 21:12:56$5 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourcePhotometry.c
r11687 r12949 3 3 * @author EAM, IfA; GLG, MHPCC 4 4 * 5 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-0 2-07 23:58:17$5 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-04-21 19:47:14 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include "pmMoments.h" 25 25 #include "pmGrowthCurve.h" 26 #include "pmResiduals.h" 26 27 #include "pmModel.h" 27 28 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourcePlotMoments.c
r12832 r12949 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-04- 14 03:22:48$7 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-04-21 19:47:14 $ 9 9 * 10 10 * Copyright 2006 IfA, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourcePlotPSFModel.c
r12832 r12949 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-04- 14 03:22:48$7 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-04-21 19:47:14 $ 9 9 * 10 10 * Copyright 2006 IfA, University of Hawaii … … 31 31 #include "pmMoments.h" 32 32 #include "pmGrowthCurve.h" 33 #include "pmResiduals.h" 33 34 #include "pmModel.h" 34 35 #include "pmPSF.h" -
trunk/psModules/src/objects/pmSourceSky.c
r11762 r12949 6 6 * @author EAM, IfA: significant modifications. 7 7 * 8 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $9 * @date $Date: 2007-0 2-13 03:14:42$8 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2007-04-21 19:47:14 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 #include "pmPeaks.h" 27 27 #include "pmMoments.h" 28 #include "pmResiduals.h" 28 29 #include "pmModel.h" 29 30 #include "pmSource.h" -
trunk/psModules/src/psmodules.h
r12696 r12949 73 73 #include <pmPeaks.h> 74 74 #include <pmMoments.h> 75 #include <pmResiduals.h> 75 76 #include <pmModel.h> 76 77 #include <pmSource.h>
Note:
See TracChangeset
for help on using the changeset viewer.
