From 52e005b3aa5d32709b45c20a5b8bfa141cbaa924 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Tue, 27 Apr 2021 11:54:37 -0500 Subject: [PATCH] Using accessor method in MeshFilter::get_all_bins. --- src/tallies/filter_mesh.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tallies/filter_mesh.cpp b/src/tallies/filter_mesh.cpp index 8cb33b3dff..1595de70c9 100644 --- a/src/tallies/filter_mesh.cpp +++ b/src/tallies/filter_mesh.cpp @@ -46,8 +46,8 @@ const // apply translation if present if (translated_) { - last_r -= translation_; - r -= translation_; + last_r -= translation(); + r -= translation(); } if (estimator != TallyEstimator::TRACKLENGTH) {