private void optionsButton_Click(object sender, EventArgs e)
        {
            SingleESOptionsForm op = new SingleESOptionsForm();

            op.InitialSmoothed = this.singleInitialSmoothed;

            if (op.ShowDialog() == DialogResult.OK)
            {
                this.singleInitialSmoothed = op.InitialSmoothed;
            }
        }
        private void optionsButton_Click(object sender, EventArgs e)
        {
            SingleESOptionsForm op = new SingleESOptionsForm();
            op.InitialSmoothed = this.singleInitialSmoothed;

            if (op.ShowDialog() == DialogResult.OK)
            {
                this.singleInitialSmoothed = op.InitialSmoothed;
            }
        }