Changeset 18007
- Timestamp:
- Jun 8, 2008, 3:43:44 PM (18 years ago)
- Location:
- trunk/psastro
- Files:
-
- 1 added
- 6 edited
-
configure.ac (modified) (1 diff)
-
src/Makefile.am (modified) (3 diffs)
-
src/psastro.h (modified) (1 diff)
-
src/psastroArguments.c (modified) (1 diff)
-
src/psastroDataSave.c (modified) (1 diff)
-
src/psastroInternal.h (modified) (1 diff)
-
src/psastroMetadataStats.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/configure.ac
r14186 r18007 183 183 184 184 dnl ------------- psLib, psModules --------------- 185 PKG_CHECK_MODULES([PSLIB], [pslib >= 1.0.0])185 PKG_CHECK_MODULES([PSLIB], [pslib >= 1.0.0]) 186 186 PKG_CHECK_MODULES([PSMODULE], [psmodules >= 1.0.0]) 187 PKG_CHECK_MODULES([PPSTATS], [ppStats >= 1.0.0]) 187 188 188 189 dnl Set CFLAGS for build -
trunk/psastro/src/Makefile.am
r16079 r18007 5 5 bin_PROGRAMS = psastro psastroModel gpcModel 6 6 7 psastro_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(P SASTRO_CFLAGS)8 psastro_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) $(P SASTRO_LIBS)7 psastro_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PPSTATS_CFLAGS) $(PSASTRO_CFLAGS) 8 psastro_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) $(PPSTATS_LIBS) $(PSASTRO_LIBS) 9 9 psastro_LDADD = libpsastro.la 10 10 … … 23 23 psastroDataLoad.c \ 24 24 psastroDataSave.c \ 25 psastroMetadataStats.c \ 25 26 psastroCleanup.c 26 27 … … 38 39 39 40 gpcModel_SOURCES = gpcModel.c 40 41 ## move DataSave to psastro_SOURCES?42 41 43 42 libpsastro_la_SOURCES = \ -
trunk/psastro/src/psastro.h
r17933 r18007 95 95 bool psastroAstromGuessSetChip (pmFPA *fpa, pmChip *chip, const pmFPAview *view, double pixelScale, bool bilevelAstrometry); 96 96 bool psastroAstromGuessSetFPA (pmFPA *fpa, bool *bilevelAstrometry); 97 bool psastroMetadataStats (pmConfig *config); 97 98 98 99 # endif /* PSASTRO_H */ -
trunk/psastro/src/psastroArguments.c
r15891 r18007 55 55 } 56 56 57 if ((N = psArgumentGet(argc, argv, "-stats"))) { 58 psArgumentRemove(N, &argc, argv); 59 psMetadataAddStr(config->arguments, PS_LIST_TAIL, "STATS", PS_META_REPLACE, "Filename for summary statistics", argv[N]); 60 psArgumentRemove(N, &argc, argv); 61 } 57 62 58 63 // apply mosastro mode? -
trunk/psastro/src/psastroDataSave.c
r17107 r18007 61 61 if (!pmFPAfileIOChecks (config, view, PM_FPA_AFTER)) ESCAPE; 62 62 63 // Write out summary statistics 64 if (!psastroMetadataStats (config)) ESCAPE; 65 63 66 // activate all files except PSASTRO.OUTPUT 64 67 pmFPAfileActivate (config->files, true, NULL); -
trunk/psastro/src/psastroInternal.h
r12806 r18007 12 12 # include <pslib.h> 13 13 # include <psmodules.h> 14 # include <ppStats.h> 14 15 # include "psastro.h" 15 16
Note:
See TracChangeset
for help on using the changeset viewer.
