Changeset 9653
- Timestamp:
- Oct 19, 2006, 11:16:49 AM (20 years ago)
- Location:
- trunk/psModules/src/objects
- Files:
-
- 5 edited
-
pmSourceIO_CMF.c (modified) (2 diffs)
-
pmSourceIO_CMP.c (modified) (2 diffs)
-
pmSourceIO_OBJ.c (modified) (2 diffs)
-
pmSourceIO_RAW.c (modified) (3 diffs)
-
pmSourceIO_SX.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmSourceIO_CMF.c
r9652 r9653 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-10-19 21:1 3:21$5 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-10-19 21:16:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 63 63 64 64 type = pmSourceDophotType (source); 65 #if 0 66 67 float sky = PAR[PM_PAR_SKY]; 68 #else 69 70 float sky = source->sky; 71 #endif 72 73 lsky = (sky < 1.0) ? 0.0 : log10(sky); 65 lsky = (source->sky < 1.0) ? 0.0 : log10(source->sky); 74 66 75 67 shape.sx = PAR[PM_PAR_SXX]; -
trunk/psModules/src/objects/pmSourceIO_CMP.c
r9652 r9653 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-10-19 21:1 3:21$5 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-10-19 21:16:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 117 117 118 118 type = pmSourceDophotType (source); 119 #if 0 120 121 float sky = PAR[PM_PAR_SKY]; 122 #else 123 124 float sky = source->sky; 125 #endif 126 127 lsky = (sky < 1.0) ? 0.0 : log10(sky); 119 lsky = (source->sky < 1.0) ? 0.0 : log10(source->sky); 128 120 129 121 shape.sx = PAR[PM_PAR_SXX]; -
trunk/psModules/src/objects/pmSourceIO_OBJ.c
r9528 r9653 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-10-1 3 02:29:14$5 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-10-19 21:16:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 81 81 psLineAdd (line, "%8.3f", source->psfMag); 82 82 psLineAdd (line, "%6.3f", dmag); 83 psLineAdd (line, "%9.2f", PAR[PM_PAR_SKY]);83 psLineAdd (line, "%9.2f", source->sky); 84 84 psLineAdd (line, "%9.3f", axes.major); 85 85 psLineAdd (line, "%9.3f", axes.minor); -
trunk/psModules/src/objects/pmSourceIO_RAW.c
r9561 r9653 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-10-1 4 00:54:37$5 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-10-19 21:16:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 87 87 88 88 fprintf (f, "%7.1f %7.1f %7.1f %8.4f %7.4f %7.4f ", 89 PAR[PM_PAR_XPOS], PAR[PM_PAR_YPOS], PAR[PM_PAR_SKY],89 PAR[PM_PAR_XPOS], PAR[PM_PAR_YPOS], source->sky, 90 90 source->psfMag, source->errMag, dPos); 91 91 … … 149 149 150 150 fprintf (f, "%7.1f %7.1f %7.1f %8.4f %7.4f %7.4f ", 151 PAR[PM_PAR_XPOS], PAR[PM_PAR_YPOS], PAR[PM_PAR_SKY],151 PAR[PM_PAR_XPOS], PAR[PM_PAR_YPOS], source->sky, 152 152 source->extMag, source->errMag, dPos); 153 153 -
trunk/psModules/src/objects/pmSourceIO_SX.c
r8882 r9653 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $6 * @date $Date: 2006- 09-22 12:24:38$5 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-10-19 21:16:49 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 71 71 psLineAdd (line, "%9.4f", source->psfMag); 72 72 psLineAdd (line, "%9.4f", source->errMag); 73 psLineAdd (line, "%13.4f", PAR[PM_PAR_SKY]);73 psLineAdd (line, "%13.4f", source->sky); 74 74 psLineAdd (line, "%9.2f", axes.major); 75 75 psLineAdd (line, "%9.2f", axes.minor);
Note:
See TracChangeset
for help on using the changeset viewer.
