34 #include "sinfo_bp_lin_config.h"
57 sinfo_bp_lin_config_add(cpl_parameterlist *list)
69 p = cpl_parameter_new_value(
"sinfoni.bp_lin.order",
72 "order of the fit polynomial = "
73 "number of coefficents - 1",
77 cpl_parameter_set_alias(p, CPL_PARAMETER_MODE_CLI,
"bp_lin-order");
78 cpl_parameterlist_append(list, p);
82 p = cpl_parameter_new_value(
"sinfoni.bp_lin.thresh_sigma_factor",
84 "Threshold Sigma Factor: "
85 "threshold factor of the clean standard "
86 "deviation. If the deviations of the linear "
87 "polynomial coefficients exceed this threshold "
88 "the corresponding pixels are declared as bad ",
92 cpl_parameter_set_alias(p, CPL_PARAMETER_MODE_CLI,
"bp_lin-thresh_sigma_fct");
93 cpl_parameterlist_append(list, p);
100 p = cpl_parameter_new_value(
"sinfoni.bp_lin.nlin_threshold",
102 "Non Linear Threshold",
106 cpl_parameter_set_alias(p, CPL_PARAMETER_MODE_CLI,
"bp_lin-nlin_threshold");
107 cpl_parameterlist_append(list, p);
115 p = cpl_parameter_new_range(
"sinfoni.bp_lin.low_rejection",
118 "percentage of rejected low intensity "
119 "pixels before averaging",
125 cpl_parameter_set_alias(p, CPL_PARAMETER_MODE_CLI,
"bp_lin-lo_rej");
126 cpl_parameterlist_append(list, p);
133 p = cpl_parameter_new_range(
"sinfoni.bp_lin.high_rejection",
136 "percentage of rejected high intensity "
137 "pixels before averaging",
141 cpl_parameter_set_alias(p, CPL_PARAMETER_MODE_CLI,
"bp_lin-hi_rej");
142 cpl_parameterlist_append(list, p);