From 9b76e490e74c827f63424133bb2e45f01cb1ea55 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Wed, 29 May 2019 10:29:04 -0400 Subject: set step size on theta and phi to 0.1 Also, update the step size for the energy during the final minimization to 10%. --- src/fit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/fit.c b/src/fit.c index 0307437..b1882d8 100644 --- a/src/fit.c +++ b/src/fit.c @@ -5387,8 +5387,8 @@ int fit_event2(event *ev, double *xopt, double *fmin, int *id, size_t n, double x[4+3*j] = T0; ss[4+3*j] = x[4+3*j]*0.1; - ss[5+3*j] = 0.01; - ss[6+3*j] = 0.01; + ss[5+3*j] = 0.1; + ss[6+3*j] = 0.1; lb[4+3*j] = Tmin; lb[5+3*j] = -INFINITY; lb[6+3*j] = -INFINITY; @@ -5443,7 +5443,7 @@ int fit_event2(event *ev, double *xopt, double *fmin, int *id, size_t n, double ub[2] = +1000.0; ub[3] = GTVALID; - /* Set the energy step size to 2% of the energy. */ + /* Set the energy step size to 10% of the energy. */ for (j = 0; j < n; j++) { ss[4+3*j] = xopt[4+3*j]*0.1; } -- cgit