diff options
author | 2017-09-15 12:44:23 -0700 | |
---|---|---|
committer | 2017-09-15 12:44:23 -0700 | |
commit | fa02272bdbd45d616c0225667f341e590e418fb0 (patch) | |
tree | 85726f7d7b240d1731d08d3f648656a0885a4107 /Source/WarpX.cpp | |
parent | e431ec2de4c0b14a79b804ec148b69e8ff2408b9 (diff) | |
download | WarpX-fa02272bdbd45d616c0225667f341e590e418fb0.tar.gz WarpX-fa02272bdbd45d616c0225667f341e590e418fb0.tar.zst WarpX-fa02272bdbd45d616c0225667f341e590e418fb0.zip |
don't need to grow this anymore with the filter.
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index 0e12e3e6b..3fd47d51d 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -302,10 +302,6 @@ WarpX::AllocLevelData (int lev, const BoxArray& ba, const DistributionMapping& d int ngE = (WarpX::nox % 2) ? WarpX::nox+1 : WarpX::nox; // Always even number int ngJ = ngE; int ngRho = ngE; - if (WarpX::use_filter) { - ngJ = ((WarpX::nox+1) % 2) ? WarpX::nox+2 : WarpX::nox+1; // Always even number - ngRho = ((WarpX::nox+1) % 2) ? WarpX::nox+2 : WarpX::nox+1; // Always even number - } // // The fine patch |