Changeset 20058
- Timestamp:
- Oct 10, 2008, 3:26:49 PM (18 years ago)
- Location:
- branches/cnb_branch_20081010/psastro/src
- Files:
-
- 4 edited
-
Makefile.am (modified) (3 diffs)
-
psastro.h (modified) (1 diff)
-
psastroArguments.c (modified) (3 diffs)
-
psastroLuminosityFunction.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/cnb_branch_20081010/psastro/src/Makefile.am
r20043 r20058 29 29 psastroDataSave.c \ 30 30 psastroMetadataStats.c \ 31 psastroCleanup.c 31 psastroCleanup.c 32 32 33 33 psastroModel_SOURCES = \ … … 53 53 psastroErrorCodes.c \ 54 54 psastroVersion.c \ 55 psastroVisual.c \ 55 56 psastroDefineFiles.c \ 56 57 psastroAnalysis.c \ … … 81 82 psastroZeroPoint.c \ 82 83 psastroDemoDump.c \ 83 psastroDemoPlot.c 84 psastroDemoPlot.c 84 85 85 86 include_HEADERS = \ -
branches/cnb_branch_20081010/psastro/src/psastro.h
r20036 r20058 71 71 bool psastroMosaicOneChip (pmChip *chip, pmReadout *readout, psMetadata *recipe, psMetadata *updates, int iteration); 72 72 73 // psastroVisual.c functions 74 bool psastroSetVisual (bool mode); 75 bool psastroVisualPlotLuminosityFunction (psVector *lnMag, psVector *Mag, pmLumFunc *lumFunc, pmLumFunc *rawFunc); 76 77 73 78 // Return version strings. 74 79 psString psastroVersion(void); -
branches/cnb_branch_20081010/psastro/src/psastroArguments.c
r20043 r20058 37 37 psArgumentRemove (N, &argc, argv); 38 38 } 39 39 40 40 // apply the chip correction based on the reference astrometry? 41 41 if ((N = psArgumentGet (argc, argv, "-fixchips"))) { … … 51 51 status = pmConfigFileSetsMD (config->arguments, &argc, argv, "ASTROM.MODEL", "-astrommodel", "-astrommodellist"); 52 52 if (status) { 53 // if supplied, assume -fixchips is desired53 // if supplied, assume -fixchips is desired 54 54 psMetadataAddBool (config->arguments, PS_LIST_TAIL, "PSASTRO.FIX.CHIPS", PS_META_REPLACE, "", true); 55 55 } … … 88 88 } 89 89 90 // show visual diagnostics? 91 if ((N = psArgumentGet(argc, argv, "-visual"))) { 92 psArgumentRemove (N, &argc, argv); 93 psastroSetVisual (true); 94 } 95 90 96 status = pmConfigFileSetsMD (config->arguments, &argc, argv, "INPUT", "-file", "-list"); 91 97 if (!status) { -
branches/cnb_branch_20081010/psastro/src/psastroLuminosityFunction.c
r20037 r20058 129 129 lumFunc->sPeak = sPeak; 130 130 131 psastroVisualPlotLuminosityFunction(lnMag, Mag, lumFunc, rawFunc); 131 132 #if 0 132 133 psastroLuminosityFunctionPlot(lnMag, Mag, lumFunc, rawFunc);
Note:
See TracChangeset
for help on using the changeset viewer.
