diff options
author | 2019-04-15 15:30:19 -0700 | |
---|---|---|
committer | 2019-04-15 15:30:19 -0700 | |
commit | f11745ce48d8189e68ac8343aa279b17eaf4248f (patch) | |
tree | f0db436ef7f9afbc76c874d43b4683fd69ae9834 /Source/Particles/PhysicalParticleContainer.cpp | |
parent | 040f48136ff987f06d462194d93676b96995cd52 (diff) | |
parent | ed78757698b7eb5bba4e2e5d0fccedb8620ca80e (diff) | |
download | WarpX-f11745ce48d8189e68ac8343aa279b17eaf4248f.tar.gz WarpX-f11745ce48d8189e68ac8343aa279b17eaf4248f.tar.zst WarpX-f11745ce48d8189e68ac8343aa279b17eaf4248f.zip |
Merge pull request #88 from ECP-WarpX/convert_to_array4
Switch over to using Array4 in PPC::Evolve, which didn't exist when w…
Diffstat (limited to 'Source/Particles/PhysicalParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhysicalParticleContainer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Particles/PhysicalParticleContainer.cpp b/Source/Particles/PhysicalParticleContainer.cpp index d98e79177..1031b488f 100644 --- a/Source/Particles/PhysicalParticleContainer.cpp +++ b/Source/Particles/PhysicalParticleContainer.cpp @@ -1048,10 +1048,6 @@ PhysicalParticleContainer::Evolve (int lev, #else int thread_num = 0; #endif - if (local_rho[thread_num] == nullptr) local_rho[thread_num].reset( new amrex::FArrayBox()); - if (local_jx[thread_num] == nullptr) local_jx[thread_num].reset( new amrex::FArrayBox()); - if (local_jy[thread_num] == nullptr) local_jy[thread_num].reset( new amrex::FArrayBox()); - if (local_jz[thread_num] == nullptr) local_jz[thread_num].reset( new amrex::FArrayBox()); FArrayBox filtered_Ex, filtered_Ey, filtered_Ez; FArrayBox filtered_Bx, filtered_By, filtered_Bz; |