00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef FORS_TOOLS_H
00029 #define FORS_TOOLS_H
00030
00031 #include <fors_star.h>
00032 #include <fors_setting.h>
00033 #include <fors_image.h>
00034 #include <cpl.h>
00035
00036 double
00037 fors_star_ext_corr(fors_star_list *stars,
00038 const fors_setting *setting,
00039 double ext_coeff,
00040 double dext_coeff,
00041 const cpl_frame *raw_frame);
00042
00043 cpl_table *
00044 fors_create_sources_table(fors_star_list *sources);
00045
00046 double
00047 fors_fixed_pattern_noise(const fors_image *master,
00048 double convert_ADU,
00049 double master_noise);
00050 double
00051 fors_fixed_pattern_noise_bias(const fors_image *first_raw,
00052 const fors_image *second_raw,
00053 double ron);
00054 double
00055 fors_get_airmass(const cpl_propertylist *header);
00056
00057 #endif