Changeset 13214
- Timestamp:
- May 3, 2007, 2:54:09 PM (19 years ago)
- Location:
- trunk/psModules/src/objects
- Files:
-
- 1 added
- 3 edited
-
Makefile.am (modified) (1 diff)
-
pmSourcePlotApResid.c (added)
-
pmSourcePlots.c (modified) (4 diffs)
-
pmSourcePlots.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/Makefile.am
r12949 r13214 23 23 pmSourcePlotPSFModel.c \ 24 24 pmSourcePlotMoments.c \ 25 pmSourcePlotApResid.c \ 25 26 pmResiduals.c \ 26 27 pmPSF.c \ -
trunk/psModules/src/objects/pmSourcePlots.c
r12832 r13214 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 4-14 03:22:48$7 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-05-04 00:54:09 $ 9 9 * 10 10 * Copyright 2006 IfA, University of Hawaii … … 67 67 layout->nX = 4; 68 68 layout->nY = 2; 69 layout->aspectRatio = 2.0;69 layout->aspectRatio = 1.0; 70 70 // count the number of chips and their layout (xrange, yrange, axis ratio) 71 71 for (int i = 0; i < fpa->chips->n; i++) { … … 104 104 layout = pmSourcePlotLayoutAlloc (); 105 105 layout->nTotal = 1; 106 layout->nX = 1; 107 layout->nY = 1; 108 layout->aspectRatio = 1.0; 106 109 } else { 107 110 psMemIncrRefCounter (layout); … … 119 122 if (!strcmp (file->name, "SOURCE.PLOT.MOMENTS")) { 120 123 pmSourcePlotMoments (newView, file, config, layout); 124 } 125 if (!strcmp (file->name, "SOURCE.PLOT.APRESID")) { 126 pmSourcePlotApResid (newView, file, config, layout); 121 127 } 122 128 } -
trunk/psModules/src/objects/pmSourcePlots.h
r12832 r13214 4 4 * @author EAM, IfA 5 5 * 6 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $7 * @date $Date: 2007-0 4-14 03:22:48$6 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-05-04 00:54:09 $ 8 8 * Copyright 2006 Institute for Astronomy, University of Hawaii 9 9 */ … … 36 36 bool pmSourcePlotPSFModel (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout); 37 37 bool pmSourcePlotMoments (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout); 38 bool pmSourcePlotApResid (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout); 38 39 39 40 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
