diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-12 10:56:33 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-12 10:56:33 +0100 |
commit | f409d342c5a314f4aa35382bbdd8daa3882172d1 (patch) | |
tree | f50821c8e53652030dc6f3baba19b8dc2c320e3d /python/dpdce.py | |
parent | 47242ec7ccbfc60fd14276e102abe119f1766d95 (diff) | |
download | dabmod-f409d342c5a314f4aa35382bbdd8daa3882172d1.tar.gz dabmod-f409d342c5a314f4aa35382bbdd8daa3882172d1.tar.bz2 dabmod-f409d342c5a314f4aa35382bbdd8daa3882172d1.zip |
Improve DPD calibration
Diffstat (limited to 'python/dpdce.py')
-rwxr-xr-x | python/dpdce.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |