Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Wright committed Oct 15, 2024
1 parent f7399c0 commit 9b0669b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ImageD11/sinograms/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def get_monitor(self, name="fpico6"):
lo, hi = [int(v) for v in slc[1:-1].split(":")]
mon = hin[snum]["measurement"][name][lo:hi]
else:
mon = hin[snum]["measurement"][name][:]
mon = hin[scan]["measurement"][name][:]
monitor.append(mon)
self.monitor = np.concatenate(monitor).reshape(self.shape)
return self.monitor
Expand Down

0 comments on commit 9b0669b

Please sign in to comment.