Skip to content

Commit e958371

Browse files
committed
Quick bug fix in the load-in of the axis data
1 parent ad17b5f commit e958371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topasgraphsim/src/classes/dose_figure_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def add_plot_data(self, datanames):
138138

139139
self.data += [
140140
[
141-
np.array([x + caxdev for x in plotdata.axis[self.half]]),
141+
np.array([x + caxdev for x in plotdata.axis[self.half]]).tolist(),
142142
plotdata.direction,
143143
plotdata.dose[self.half] / plotdata.normpoint,
144144
np.array(

0 commit comments

Comments
 (0)