midiAppendPropertylist.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef MIDI_APPEND_PROPERTYLIST_H
00021 #define MIDI_APPEND_PROPERTYLIST_H
00022
00023
00024
00025
00026
00027 #include <cpl.h>
00028
00029
00030
00031
00032
00033
00034 struct plots
00035 {
00036 const char * filename;
00037 const char * label;
00038
00039 } ;
00040
00041
00042 cpl_error_code appendPropertylist(const char *Produc,
00043 cpl_frame_type type,
00044 const char *tag,
00045 cpl_frameset *frameset,
00046 cpl_parameterlist *parlist);
00047
00048 cpl_error_code appendPropertylist_table(const char *ProductFile,
00049 cpl_frame_type type,
00050 const char *tag,
00051 cpl_frameset *frameset,
00052 cpl_parameterlist *parlist);
00053
00054
00055 cpl_error_code appendPropertylist_statistics(const char *InputFile,
00056 const char *ProductFile,
00057 cpl_frame_type type,
00058 const char *tag,
00059 cpl_frameset *frameset,
00060 cpl_parameterlist *parlist,
00061 struct plots *plotfiles_lambda,
00062 struct plots *plotfiles_frames,
00063 struct plots *plotfiles_scans,
00064 int dimen_lambda,
00065 int dimen_frames,
00066 int dimen_scans);
00067
00068 cpl_vector * vector_read(const char * filename);
00069 #endif