Changeset 10827
- Timestamp:
- Dec 22, 2006, 6:00:30 PM (19 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 4 added
- 5 edited
-
camera/pmFPAfileIO.c (modified) (2 diffs)
-
extras/pmKapaPlots.c (modified) (2 diffs)
-
extras/pmKapaPlots.h (modified) (2 diffs)
-
objects/Makefile.am (modified) (2 diffs)
-
objects/pmSourcePlotMoments.c (added)
-
objects/pmSourcePlotPSFModel.c (added)
-
objects/pmSourcePlots.c (added)
-
objects/pmSourcePlots.h (added)
-
psmodules.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileIO.c
r10726 r10827 28 28 #include "pmFPA_JPEG.h" 29 29 #include "pmFPA_MANAPLOT.h" 30 #include "pmSourcePlots.h" 30 31 #include "pmDetrendDB.h" 31 32 … … 527 528 528 529 case PM_FPA_FILE_KAPA: 529 psTrace ("pmFPAfile", 5, "skipping KAPA (output in specific functions) %s (fpa: %p)\n", file->filename, file->fpa); 530 pmFPAviewWriteSourcePlot (view, file, config); 531 psTrace ("pmFPAfile", 5, "wrote KAPA %s (fpa: %p)\n", file->filename, file->fpa); 530 532 break; 531 533 -
trunk/psModules/src/extras/pmKapaPlots.c
r10648 r10827 7 7 * @author EAM, IfA 8 8 * 9 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-12- 12 08:25:43$9 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-12-23 04:00:30 $ 11 11 * 12 12 * Copyright 2006 Institute for Astronomy, University of Hawaii … … 30 30 // to make this thread safe, we could check the thread ID and tie to it 31 31 static int kapa_fd = -1; 32 int pmKapaOpen ( )32 int pmKapaOpen (bool showWindow) 33 33 { 34 char kapa[64]; 35 36 if (showWindow) { 37 strcpy (kapa, "kapa"); 38 } else { 39 strcpy (kapa, "kapa -noX"); 40 } 34 41 35 42 if (kapa_fd == -1) { 36 // XXX make -noX an option 37 // XXX -noX is crashing kapa on point plotting 38 kapa_fd = KapaOpen ("kapa", "psphot"); 43 kapa_fd = KapaOpen (kapa, "psphot"); 39 44 } 40 45 return kapa_fd; -
trunk/psModules/src/extras/pmKapaPlots.h
r10610 r10827 1 /** @file pm AstrometryDistortion.h1 /** @file pmKapaPlots.h 2 2 * 3 * @brief functions to convert FITS WCS keywords to / from pmFPA structures3 * @brief functions to make plots with the external program 'kapa' 4 4 * 5 * @ingroup Astrometry5 * @ingroup extras 6 6 * 7 7 * @author EAM, IfA 8 8 * 9 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-12- 10 18:27:26$9 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-12-23 04:00:30 $ 11 11 * 12 12 * Copyright 2006 Institute for Astronomy, University of Hawaii … … 17 17 18 18 // move to psLib or psModules 19 int pmKapaOpen ( );19 int pmKapaOpen (bool showWindow); 20 20 bool pmKapaClose (); 21 21 -
trunk/psModules/src/objects/Makefile.am
r10610 r10827 19 19 pmSourceIO_SX.c \ 20 20 pmSourceIO_RAW.c \ 21 pmSourcePlots.c \ 22 pmSourcePlotPSFModel.c \ 23 pmSourcePlotMoments.c \ 21 24 pmPSF.c \ 22 25 pmPSF_IO.c \ … … 41 44 pmSourcePhotometry.h \ 42 45 pmSourceIO.h \ 46 pmSourcePlots.h \ 43 47 pmPSF.h \ 44 48 pmPSF_IO.h \ -
trunk/psModules/src/psmodules.h
r10610 r10827 74 74 #include <pmSourceFitModel.h> 75 75 #include <pmSourceContour.h> 76 #include <pmSourcePlots.h> 76 77 #include <pmGrowthCurve.h> 77 78 #include <pmPSF.h>
Note:
See TracChangeset
for help on using the changeset viewer.
