We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b074552 + 312796c commit 4e0733dCopy full SHA for 4e0733d
src/ess/reduce/time_of_flight/workflow.py
@@ -37,6 +37,12 @@ def load_tof_lookup_table(filename: TofLookupTableFilename) -> TofLookupTable:
37
"time_resolution": table.coords["time_resolution"],
38
}
39
40
+ # Some old tables have the error_threshold stored as an entry in the data group.
41
+ # The masking based on uncertainty is now done later, as part of the tof workflow,
42
+ # so we need to remove this entry if it exists.
43
+ if "error_threshold" in table:
44
+ del table["error_threshold"]
45
+
46
return TofLookupTable(**table)
47
48
0 commit comments