diff options
author | 2020-02-03 09:26:07 -0800 | |
---|---|---|
committer | 2020-02-03 09:26:07 -0800 | |
commit | 81992738e864bac70ff7c034bfd25749ee0fba6a (patch) | |
tree | 9dc6c3c51e5d75ca3a9d464e11bd6451e9bd5371 /Source/Particles/Pusher/UpdatePositionPhoton.H | |
parent | 7af4917c442401e3f074350be7399b1d4998a8bd (diff) | |
parent | 15f002a11c867ca20f6a053eb3ccac62394f8f74 (diff) | |
download | WarpX-81992738e864bac70ff7c034bfd25749ee0fba6a.tar.gz WarpX-81992738e864bac70ff7c034bfd25749ee0fba6a.tar.zst WarpX-81992738e864bac70ff7c034bfd25749ee0fba6a.zip |
Merge pull request #663 from atmyers/soa_to_aos
Remove copies to and from temporary arrays in favor of using the particle struct directy.
Diffstat (limited to '')
-rw-r--r-- | Source/Particles/Pusher/UpdatePositionPhoton.H | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Particles/Pusher/UpdatePositionPhoton.H b/Source/Particles/Pusher/UpdatePositionPhoton.H index 3a28e87a1..44c0afda9 100644 --- a/Source/Particles/Pusher/UpdatePositionPhoton.H +++ b/Source/Particles/Pusher/UpdatePositionPhoton.H @@ -32,7 +32,6 @@ void UpdatePositionPhoton( y += uy * c_over_umod * dt; #endif z += uz * c_over_umod * dt; - } #endif // WARPX_PARTICLES_PUSHER_UPDATEPOSITION_H_ |