Skip to content

Commit

Permalink
Fixed batch size problem in unwrapper when there's multiple volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
francois-drielsma committed Nov 9, 2023
1 parent d418735 commit 92495b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/post_processing/pmt/flash_matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ def process(self, data_dict, result_dict):
ii.flash_total_pE = float(flash.TotalPE())
if hasattr(match, 'hypothesis'):
ii.flash_hypothesis = float(np.array(match.hypothesis,
dtype=np.float64).sum())
dtype=np.float32).sum())

return {}, {}

0 comments on commit 92495b5

Please sign in to comment.