private List_d get_list_d()
    {
        List_d list_d = new List_d();
        double d      = new double();

        foreach (Gtk.SpinButton sp in hbox_list_d.Children)
        {
            d = (double)sp.Value;
            list_d.Add(d);
        }
        return(list_d);
    }