= [](auto &rc) {
using namespace config_utils::clipp_builder;
return "fitter configs" % __(
_(rc, p("fitter_weight_window_type"), "Fit with weight window of this"
" type applied",
Fitter::WeightOption::lorentz,
list(Fitter::WeightOption{})),
_(rc, p("fitter_weight_window_fwhm"), "The FWHM of the weight window in Hz",
1.5e4, doub()),
_(rc, p("fitter_modelspec"), "The spec of S21 model to use",
Fitter::ModelSpec::gainlintrend,
list(Fitter::ModelSpec{})),
_(rc, p("output_processed" ), "Save the reduced data",
"{stem}{suffix}.{ext}", opt_str("dest"))
);
}