aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/WarpXParticleContainer.cpp
diff options
context:
space:
mode:
authorGravatar Andrew Myers <atmyers2@gmail.com> 2020-01-29 12:23:59 -0800
committerGravatar Andrew Myers <atmyers2@gmail.com> 2020-01-29 12:23:59 -0800
commit2ef268b10a924644d10996daa069befea843879f (patch)
tree951679ad2808f212f533fc66d21baa2a0d5c1ee5 /Source/Particles/WarpXParticleContainer.cpp
parentd6dd759b466a350802e93786c7952cbf4bbeaf74 (diff)
downloadWarpX-2ef268b10a924644d10996daa069befea843879f.tar.gz
WarpX-2ef268b10a924644d10996daa069befea843879f.tar.zst
WarpX-2ef268b10a924644d10996daa069befea843879f.zip
Real -> ParticleReal
Diffstat (limited to 'Source/Particles/WarpXParticleContainer.cpp')
-rw-r--r--Source/Particles/WarpXParticleContainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Particles/WarpXParticleContainer.cpp b/Source/Particles/WarpXParticleContainer.cpp
index db32f2bf4..33fb98d0e 100644
--- a/Source/Particles/WarpXParticleContainer.cpp
+++ b/Source/Particles/WarpXParticleContainer.cpp
@@ -749,7 +749,7 @@ WarpXParticleContainer::PushX (int lev, amrex::Real dt)
// Loop over the particles and update their position
amrex::ParallelFor( pti.numParticles(),
[=] AMREX_GPU_DEVICE (long i) {
- Real x, y, z;
+ ParticleReal x, y, z;
#ifndef WARPX_DIM_RZ
get_position(i, x, y, z);
UpdatePosition(x, y, z, ux[i], uy[i], uz[i], dt);