Changeset 13943
- Timestamp:
- Jun 21, 2007, 2:40:01 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/astrom/pmAstrometryObjects.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmAstrometryObjects.c
r13134 r13943 8 8 * @author EAM, IfA 9 9 * 10 * @version $Revision: 1.3 0$ $Name: not supported by cvs2svn $11 * @date $Date: 2007-0 5-03 00:10:29$10 * @version $Revision: 1.31 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2007-06-22 00:40:01 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 735 735 if (minStat->nSigma < minSigma) { 736 736 psError(PS_ERR_UNKNOWN, true, "Failed to find a valid match (%f sigma for best)", minStat->nSigma); 737 psFree (minStat);737 psFree (minStat); 738 738 return NULL; 739 739 } … … 796 796 797 797 // smooth histgram vector with gaussian of 1sigma = radius 798 psVectorSmooth(xHist, xHist, tweakSmooth, tweakNsigma); 799 psVectorSmooth(yHist, yHist, tweakSmooth, tweakNsigma); 798 psVector *xHistNew = psVectorSmooth(NULL, xHist, tweakSmooth, tweakNsigma); 799 psVector *yHistNew = psVectorSmooth(NULL, yHist, tweakSmooth, tweakNsigma); 800 psFree(xHist); 801 psFree(yHist); 802 xHist = xHistNew; 803 yHist = yHistNew; 800 804 801 805 // select peak in x and in y
Note:
See TracChangeset
for help on using the changeset viewer.
