From f409d342c5a314f4aa35382bbdd8daa3882172d1 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Wed, 12 Dec 2018 10:56:33 +0100 Subject: Improve DPD calibration --- python/dpdce.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python/dpdce.py') diff --git a/python/dpdce.py b/python/dpdce.py index 03bc907..1ceac46 100755 --- a/python/dpdce.py +++ b/python/dpdce.py @@ -163,10 +163,11 @@ def engine_worker(): N_ITER = 5 for i in range(N_ITER): agc_success, agc_summary = agc.run() - summary = ["calibration run {}:".format(i)] + agc_summary.split("\n") + summary += ["calibration run {}:".format(i)] + agc_summary.split("\n") with lock: results['stateprogress'] = int((i + 1) * 100/N_ITER) + results['summary'] = ["Calibration ongoing:"] + summary if not agc_success: break -- cgit v1.2.3