Functions | |
| int | dfs_get_parameter_int (cpl_parameterlist *parlist, const char *name, const cpl_table *defaults) |
| Reading a recipe integer parameter value. | |
| double | dfs_get_parameter_double (cpl_parameterlist *parlist, const char *name, const cpl_table *defaults) |
| Reading a recipe double parameter value. | |
| const char * | dfs_get_parameter_string (cpl_parameterlist *parlist, const char *name, const cpl_table *defaults) |
| Reading a recipe string parameter value. | |
| int | dfs_get_parameter_bool (cpl_parameterlist *parlist, const char *name, const cpl_table *defaults) |
| Reading a recipe boolean parameter value. | |
| cpl_image * | dfs_load_image (cpl_frameset *frameset, const char *category, cpl_type type, int ext, int calib) |
| Loading image data of given category. | |
| cpl_table * | dfs_load_table (cpl_frameset *frameset, const char *category, int ext) |
| Loading table data of given category. | |
| cpl_propertylist * | dfs_load_header (cpl_frameset *frameset, const char *category, int ext) |
| Loading header associated to data of given category. | |
| int | dfs_save_image (cpl_frameset *frameset, cpl_image *image, const char *category, cpl_propertylist *header, cpl_parameterlist *parlist, const char *recipename, const char *version) |
| Saving image data of given category. | |
| int | dfs_save_table (cpl_frameset *frameset, cpl_table *table, const char *category, cpl_propertylist *header, cpl_parameterlist *parlist, const char *recipename, const char *version) |
| Saving table data of given category. | |
| int | dfs_equal_keyword (cpl_frameset *frameset, char *keyword) |
| Saving table data of given category. | |
|
||||||||||||
|
Saving table data of given category.
|
|
||||||||||||||||
|
Reading a recipe boolean parameter value.
cpl_parameter_get_bool(), but if a defaults table is passed then the parameter value is searched in that table. If it is found, the parameter value will be modified also on the input parameter list before being returned, so that it would appear on the recipe products headers. If the parameter is not found, then the parameter value is simply read from the input parameter list. If a defaults table is not specified, then this function works exactly as the function cpl_parameter_get_bool(). |
|
||||||||||||||||
|
Reading a recipe double parameter value.
cpl_parameter_get_double(), but if a defaults table is passed then the parameter value is searched in that table. If it is found, the parameter value will be modified also on the input parameter list before being returned, so that it would appear on the recipe products headers. If the parameter is not found, then the parameter value is simply read from the input parameter list. If a defaults table is not specified, then this function works exactly as the function cpl_parameter_get_double(). |
|
||||||||||||||||
|
Reading a recipe integer parameter value.
cpl_parameter_get_int(), but if a defaults table is passed then the parameter value is searched in that table. If it is found, the parameter value will be modified also on the input parameter list before being returned, so that it would appear on the recipe products headers. If the parameter is not found, then the parameter value is simply read from the input parameter list. If a defaults table is not specified, then this function works exactly as the function cpl_parameter_get_int(). |
|
||||||||||||||||
|
Reading a recipe string parameter value.
cpl_parameter_get_string(), but if a defaults table is passed then the parameter value is searched in that table. If it is found, the parameter value will be modified also on the input parameter list before being returned, so that it would appear on the recipe products headers. If the parameter is not found, then the parameter value is simply read from the input parameter list. If a defaults table is not specified, then this function works exactly as the function cpl_parameter_get_string(). |
|
||||||||||||||||
|
Loading header associated to data of given category.
cpl_frameset_find() and cpl_propertylist_load(), as they typically are called every time a header should be loaded by a recipe. Error checking and proper messaging are also included here, to give a more readable look to the main recipe code.
In case of any error, a |
|
||||||||||||||||||||||||
|
Loading image data of given category.
cpl_frameset_find() and cpl_image_load(), as they typically are called every time an image should be loaded by a recipe. Error checking and proper messaging are also included here, to give a more readable look to the main recipe code.
In case of any error, a |
|
||||||||||||||||
|
Loading table data of given category.
cpl_frameset_find() and cpl_table_load(), as they typically are called every time a table should be loaded by a recipe. Error checking and proper messaging are also included here, to give a more readable look to the main recipe code.
In case of any error, a |
|
||||||||||||||||||||||||||||||||
|
Saving image data of given category.
The output file name will be derived from the specified category by lowercasing it and by appending the suffix ".fits". The new image is properly logged in the input set-of-frames in case of success.
The error codes that are set in this case are the same set by the above mentioned CPL functions. The "where" string (accessible via a call to |
|
||||||||||||||||||||||||||||||||
|
Saving table data of given category.
The output file name will be derived from the specified category by lowercasing it and by appending the suffix ".fits". The new table is properly logged in the input set-of-frames in case of success.
The error codes that are set in this case are the same set by the above mentioned CPL functions. The "where" string (accessible via a call to |
1.4.6