small additional fix after rebase

This commit is contained in:
Gavin Ridley 2021-05-03 18:10:03 -04:00
parent a215e39182
commit 898165b720
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ MeshFilter::get_all_bins(const Particle& p, TallyEstimator estimator, FilterMatc
const
{
Position last_r = p.r_last_;
Position last_r = p.r_last();
Position r = p.r();
Position u = p.u();

View file

@ -11,7 +11,7 @@ void
MeshSurfaceFilter::get_all_bins(const Particle& p, TallyEstimator estimator,
FilterMatch& match) const
{
Position r0 = p.r_last_current_;
Position r0 = p.r_last_current();
Position r1 = p.r();
if (translated_) {
r0 -= translation();