Skip to content

Commit

Permalink
Minor tweak to use more specific ParIter
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsexton03 committed Jul 30, 2024
1 parent a91f4b0 commit fe575b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exec/ParticleFilterTest/DarkMatterParticleContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ DarkMatterParticleContainer::moveKickDrift (amrex::MultiFab& acceleration,
#ifdef _OPENMP
#pragma omp parallel if (Gpu::notInLaunchRegion())
#endif
for (ParIter pti(*this, lev); pti.isValid(); ++pti) {
for (MyParIter pti(*this, lev); pti.isValid(); ++pti) {

auto& particles = (this->ParticlesAt(lev,pti)).GetArrayOfStructs();

Expand Down

0 comments on commit fe575b5

Please sign in to comment.