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 #ifdef HAVE_CONFIG_H
00029 #include <config.h>
00030 #endif
00031
00032
00033
00034
00035
00036 #include <cpl.h>
00037
00038 #include "irplib_detmon.h"
00039 #include "irplib_detmon_lg.h"
00040 #include "irplib_plugin.h"
00041
00042
00043 #define ISAAC_IMG_LINGAIN_ON_RAW "CAL_LINGAIN_LAMP"
00044 #define ISAAC_IMG_LINGAIN_OFF_RAW "CAL_LINGAIN_DARK"
00045
00046 #define RECIPE_NAME "isaac_img_lingain"
00047
00048
00049 #define INSTREGEXP "ESO DET CHIP NAME|ESO DET MODE NAME"
00050
00051 #define PAFREGEXP "^(" REGEXP "|" INSTREGEXP ")$"
00052
00053 #define NIR TRUE
00054
00055
00056
00057
00058
00059 CPL_RECIPE_DEFINE(isaac_img_lingain, ISAAC_BINARY_VERSION,
00060 irplib_detmon_lg_fill_parlist_nir_default
00061 (recipe->parameters, RECIPE_NAME, PACKAGE_TARNAME),
00062 "Lars Lundin", PACKAGE_BUGREPORT, "2008",
00063 "Linearity/Gain recipe for the IR domain",
00064 irplib_detmon_lg_get_description(RECIPE_NAME, "ISAAC",
00065 ISAAC_IMG_LINGAIN_ON_RAW,
00066 ISAAC_IMG_LINGAIN_OFF_RAW));
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077 static int isaac_img_lingain(cpl_frameset * frameset,
00078 const cpl_parameterlist * parlist)
00079 {
00080 cpl_propertylist * lintbl =
00081 irplib_detmon_fill_prolist("DET_LIN_INFO", "TYPE", "TECH", CPL_TRUE);
00082
00083 cpl_propertylist * gaintbl =
00084 irplib_detmon_fill_prolist("GAIN_INFO", "TYPE", "TECH", CPL_TRUE);
00085
00086 cpl_propertylist * coeffscube =
00087 irplib_detmon_fill_prolist("COEFFS_CUBE", "TYPE", "TECH", CPL_TRUE);
00088
00089 cpl_propertylist * bpm =
00090 irplib_detmon_fill_prolist("BP_MAP_NL", "TYPE", "TECH", CPL_TRUE);
00091
00092 cpl_propertylist * corr =
00093 irplib_detmon_fill_prolist("AUTOCORR", "TYPE", "TECH", CPL_TRUE);
00094
00095 cpl_propertylist * diff_flat =
00096 irplib_detmon_fill_prolist("DIFF_FLAT", "TYPE", "TECH", CPL_TRUE);
00097
00098 const cpl_error_code error = irplib_detmon_lg(frameset,
00099 parlist,
00100 ISAAC_IMG_LINGAIN_ON_RAW,
00101 ISAAC_IMG_LINGAIN_OFF_RAW,
00102 RECIPE_NAME,
00103 PACKAGE_TARNAME,
00104 PAFREGEXP,
00105 lintbl, gaintbl, coeffscube,
00106 bpm, corr, diff_flat,
00107 PACKAGE "/" PACKAGE_VERSION,
00108 NULL, NULL, NIR);
00109
00110 cpl_propertylist_delete(lintbl);
00111 cpl_propertylist_delete(gaintbl);
00112 cpl_propertylist_delete(coeffscube);
00113 cpl_propertylist_delete(bpm);
00114 cpl_propertylist_delete(corr);
00115 cpl_propertylist_delete(diff_flat);
00116
00117
00118 cpl_ensure_code(!error, error);
00119
00120 return CPL_ERROR_NONE;
00121 }