Skip to content
Snippets Groups Projects
Commit 4dea8efe authored by Gamelin Alexis's avatar Gamelin Alexis
Browse files

Add a forced flush() operation at each write

parent d51f03bc
No related branches found
No related tags found
No related merge requests found
......@@ -166,6 +166,7 @@ class Monitor(Element, metaclass=ABCMeta):
slice_tuple = tuple(slice_list)
self.file[self.group_name][key][slice_tuple] = self.__getattribute__(key)
self.file.flush()
self.write_count += 1
def to_buffer(self, object_to_save):
......@@ -460,6 +461,7 @@ class BeamMonitor(Monitor):
self.write_count*self.buffer_size:(self.write_count+1) *
self.buffer_size] = self.current
self.file.flush()
self.write_count += 1
\ No newline at end of file
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