Skip to content

Commit

Permalink
Merge branch 'master' into fix_tenacity_module
Browse files Browse the repository at this point in the history
  • Loading branch information
haddadanas authored Jun 21, 2024
2 parents e33ee06 + 269813c commit 57abee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion columnflow/columnar_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ def fill_hist(
for ax in correct_last_bin_axes:
right_egde_mask = ak.flatten(data[ax.name], axis=None) == ax.edges[-1]
if np.any(right_egde_mask):
data[ax.name] = data[ax.name].copy()
data[ax.name] = ak.copy(data[ax.name])
flat_np_view(data[ax.name])[right_egde_mask] -= ax.widths[-1] * 1e-5

# fill
Expand Down

0 comments on commit 57abee1

Please sign in to comment.