IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 15880


Ignore:
Timestamp:
Dec 19, 2007, 8:54:11 AM (18 years ago)
Author:
eugene
Message:

create psastroModel to analyse a collection of astrometry measurements

Location:
trunk/psastro/src
Files:
5 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src

    • Property svn:ignore
      •  

        old new  
        1313config.h.in
        1414stamp-h1
         15psastroModel
  • trunk/psastro/src/.cvsignore

    r10961 r15880  
    1313config.h.in
    1414stamp-h1
     15psastroModel
  • trunk/psastro/src/Makefile.am

    r15562 r15880  
    33libpsastro_la_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSASTRO_CFLAGS)
    44
    5 bin_PROGRAMS = psastro
     5bin_PROGRAMS = psastro psastroModel
     6
    67psastro_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSASTRO_CFLAGS)
    78psastro_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) $(PSASTRO_LIBS)
    89psastro_LDADD = libpsastro.la
     10
     11psastroModel_CPPFLAGS = $(PSLIB_CFLAGS) $(PSMODULE_CFLAGS) $(PSASTRO_CFLAGS)
     12psastroModel_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) $(PSASTRO_LIBS)
     13psastroModel_LDADD = libpsastro.la
    914
    1015psastro_SOURCES = \
     
    1318        psastroParseCamera.c        \
    1419        psastroDataLoad.c           \
     20        psastroDataSave.c           \
     21        psastroCleanup.c
     22
     23psastroModel_SOURCES = \
     24        psastroModel.c              \
     25        psastroModelArguments.c     \
     26        psastroModelParseCamera.c   \
     27        psastroModelDataLoad.c      \
     28        psastroModelAnalysis.c      \
    1529        psastroCleanup.c
    1630
     
    2034        psastroErrorCodes.c         \
    2135        psastroVersion.c            \
    22         psastroDataSave.c           \
    2336        psastroDefineFiles.c        \
    2437        psastroAnalysis.c           \
  • trunk/psastro/src/psastroStandAlone.h

    r12806 r15880  
    1717bool              psastroDataLoad (pmConfig *config);
    1818
     19pmConfig *psastroModelArguments (int argc, char **argv);
     20bool psastroModelParseCamera (pmConfig *config);
     21bool psastroModelDataLoad (pmConfig *config);
     22bool psastroModelAnalysis (pmConfig *config);
     23
    1924#endif
Note: See TracChangeset for help on using the changeset viewer.