diff options
author | 2020-01-28 16:23:29 -0700 | |
---|---|---|
committer | 2020-01-28 16:23:29 -0700 | |
commit | 0da2c9efe9934fe0884eff460e76d7b4f142031c (patch) | |
tree | d401c7ce11d1ff1152a4c4d8ad0d12ece3056bb4 /Source/Particles/WarpXParticleContainer.cpp | |
parent | db69600833e3251a708bfd4664fb01dc5f84fb4b (diff) | |
parent | f2567ffc13acd6762cfa9069309ec1795587231b (diff) | |
download | WarpX-0da2c9efe9934fe0884eff460e76d7b4f142031c.tar.gz WarpX-0da2c9efe9934fe0884eff460e76d7b4f142031c.tar.zst WarpX-0da2c9efe9934fe0884eff460e76d7b4f142031c.zip |
Merge branch 'dev' of https://github.com/ECP-WarpX/WarpX into reduced_diags
Diffstat (limited to 'Source/Particles/WarpXParticleContainer.cpp')
-rw-r--r-- | Source/Particles/WarpXParticleContainer.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Source/Particles/WarpXParticleContainer.cpp b/Source/Particles/WarpXParticleContainer.cpp index 15a6cff9b..9fc69bc73 100644 --- a/Source/Particles/WarpXParticleContainer.cpp +++ b/Source/Particles/WarpXParticleContainer.cpp @@ -1,3 +1,12 @@ +/* Copyright 2019-2020 Andrew Myers, Axel Huebl, David Grote + * Jean-Luc Vay, Luca Fedeli, Maxence Thevenet + * Remi Lehe, Revathi Jambunathan, Weiqun Zhang + * Yinjian Zhao, levinem + * + * This file is part of WarpX. + * + * License: BSD-3-Clause-LBNL + */ #include <limits> #include <MultiParticleContainer.H> @@ -16,9 +25,6 @@ using namespace amrex; -int WarpXParticleContainer::do_not_push = 0; -int WarpXParticleContainer::do_not_deposit = 0; - WarpXParIter::WarpXParIter (ContainerType& pc, int level) : ParIter(pc, level, MFItInfo().SetDynamic(WarpX::do_dynamic_scheduling)) { @@ -113,6 +119,7 @@ WarpXParticleContainer::WarpXParticleContainer (AmrCore* amr_core, int ispecies) m_xp.resize(num_threads); m_yp.resize(num_threads); m_zp.resize(num_threads); + } void @@ -129,7 +136,6 @@ WarpXParticleContainer::ReadParameters () do_tiling = true; #endif pp.query("do_tiling", do_tiling); - pp.query("do_not_push", do_not_push); initialized = true; } |