Changeset 29004 for trunk/psModules/src/objects/pmSourceVisual.c
- Timestamp:
- Aug 20, 2010, 1:14:11 PM (16 years ago)
- Location:
- trunk/psModules
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/objects/pmSourceVisual.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules
- Property svn:mergeinfo deleted
-
trunk/psModules/src/objects/pmSourceVisual.c
r26260 r29004 4 4 5 5 #include <pslib.h> 6 #include "pmHDU.h" 7 #include "pmFPA.h" 8 6 9 #include "pmTrend2D.h" 10 #include "pmResiduals.h" 11 #include "pmGrowthCurve.h" 12 #include "pmSpan.h" 13 #include "pmFootprintSpans.h" 14 #include "pmFootprint.h" 15 #include "pmPeaks.h" 16 #include "pmMoments.h" 17 #include "pmModelFuncs.h" 18 #include "pmModel.h" 19 #include "pmModelUtils.h" 20 #include "pmModelClass.h" 21 #include "pmSourceMasks.h" 22 #include "pmSourceExtendedPars.h" 23 #include "pmSourceDiffStats.h" 24 #include "pmSource.h" 25 #include "pmSourceFitModel.h" 7 26 #include "pmPSF.h" 8 27 #include "pmPSFtry.h" 9 #include "pmSource.h" 28 #include "pmDetections.h" 29 10 30 #include "pmSourceVisual.h" 11 31 … … 13 33 #include <kapa.h> 14 34 #include "pmVisual.h" 35 #include "pmVisualUtils.h" 15 36 16 37 // functions used to visualize the analysis as it goes … … 34 55 Graphdata graphdata; 35 56 36 if (!pmVisual IsVisual()) return true;57 if (!pmVisualTestLevel("psphot.psf.metric", 2)) return true; 37 58 38 59 if (kapa1 == -1) { … … 118 139 Graphdata graphdata; 119 140 120 if (!pmVisual IsVisual()) return true;141 if (!pmVisualTestLevel("psphot.psf.subpix", 3)) return true; 121 142 122 143 if (kapa1 == -1) { … … 280 301 bool pmSourceVisualShowModelFits (pmPSF *psf, psArray *sources, psImageMaskType maskVal) { 281 302 282 if (!pmVisual IsVisual()) return true;303 if (!pmVisualTestLevel("psphot.psf.fits", 2)) return true; 283 304 284 305 if (kapa2 == -1) { … … 360 381 bool pmSourceVisualShowModelFit (pmSource *source) { 361 382 362 if (!pmVisualIsVisual()) return true; 383 if (!pmVisualTestLevel("psphot.psf.fitresid", 2)) return true; 384 363 385 if (!source->pixels) return false; 364 386 if (!source->modelFlux) return false; … … 404 426 Graphdata graphdata; 405 427 406 if (!pmVisualIsVisual() || !plotPSF) return true; 428 if (!plotPSF) return true; 429 if (!pmVisualTestLevel("psphot.psf.resid", 2)) return true; 407 430 408 431 if (kapa1 == -1) {
Note:
See TracChangeset
for help on using the changeset viewer.
