Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 92765b56 authored by usov_i's avatar usov_i
Browse files

Fix error calculation when merging data

Fix #46
parent 328b71e0
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ def merge_scans(scan_into, scan_from): ...@@ -131,7 +131,7 @@ def merge_scans(scan_into, scan_from):
scan_into[scan_motor] = pos_tmp scan_into[scan_motor] = pos_tmp
scan_into["counts"] = val_tmp / num_tmp scan_into["counts"] = val_tmp / num_tmp
scan_into["counts_err"] = np.sqrt(err_tmp) scan_into["counts_err"] = np.sqrt(err_tmp) / num_tmp
scan_from["export"] = False scan_from["export"] = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment