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

ProfileMonitor : Bug fix

Fig bug for ProfileMonitor if dimension is not in list
parent 4950216f
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ class Monitor(Element, metaclass=ABCMeta):
for key, value in dict_file.items():
self.g.require_dataset(key, value, dtype=float)
# create a dictionary which
# create a dictionary which handle slices
slice_dict = {}
for key, value in dict_file.items():
slice_dict[key] = []
......@@ -545,7 +545,7 @@ class ProfileMonitor(Monitor):
Methods
-------
track(object_to_save)
Save data
Save data.
"""
def __init__(self, bunch_number, dimensions="tau", n_bin=75, file_name=None,
......@@ -566,7 +566,7 @@ class ProfileMonitor(Monitor):
dict_buffer = {}
dict_file = {}
for index, dim in enumerate(dimensions):
for index, dim in enumerate(self.dimensions):
dict_buffer.update({dim : (self.n_bin[index], buffer_size)})
dict_buffer.update({dim + "_bin" : (self.n_bin[index] + 1, buffer_size)})
dict_file.update({dim : (self.n_bin[index], total_size)})
......
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