Skip to content

Commit

Permalink
Correct bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiMacielPereira committed Jan 7, 2025
1 parent d6f1692 commit e11e25d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mvesuvio/analysis_reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ def _set_means_and_std(self):
intensities = np.zeros(widths.shape)

for i, label in enumerate(self._profiles_table.column("label")):
widths[i] = self._table_fit_results.column(f"{label} width")
intensities[i] = self._table_fit_results.column(f"{label} intensity")
widths[i] = self._table_fit_results.column(f"{label} w")
intensities[i] = self._table_fit_results.column(f"{label} i")
self._set_means_and_std_arrays(widths, intensities)

self._create_means_table()
Expand Down

0 comments on commit e11e25d

Please sign in to comment.