diff options
author | 2020-11-24 10:28:14 -0800 | |
---|---|---|
committer | 2020-11-24 10:28:14 -0800 | |
commit | bedec348b35ac28cf85cfe588e0ffd618fb2a1f9 (patch) | |
tree | 7c8f5b06d21c1c141a9ddd2f9ddf43b76821354b /Source/Diagnostics/FullDiagnostics.cpp | |
parent | ee7a62b8fe3aea78cdbd9fc42102885c26f4470f (diff) | |
download | WarpX-bedec348b35ac28cf85cfe588e0ffd618fb2a1f9.tar.gz WarpX-bedec348b35ac28cf85cfe588e0ffd618fb2a1f9.tar.zst WarpX-bedec348b35ac28cf85cfe588e0ffd618fb2a1f9.zip |
Clean up calls to FillBoundaryAux (#1522)
Diffstat (limited to 'Source/Diagnostics/FullDiagnostics.cpp')
-rw-r--r-- | Source/Diagnostics/FullDiagnostics.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Diagnostics/FullDiagnostics.cpp b/Source/Diagnostics/FullDiagnostics.cpp index 8e8565032..6a54e1f8d 100644 --- a/Source/Diagnostics/FullDiagnostics.cpp +++ b/Source/Diagnostics/FullDiagnostics.cpp @@ -436,10 +436,8 @@ FullDiagnostics::PrepareFieldDataForOutput () auto & warpx = WarpX::GetInstance(); warpx.FillBoundaryE(warpx.getngE(), warpx.getngExtra()); warpx.FillBoundaryB(warpx.getngE(), warpx.getngExtra()); -#ifndef WARPX_USE_PSATD - warpx.FillBoundaryAux(warpx.getngUpdateAux()); -#endif warpx.UpdateAuxilaryData(); + warpx.FillBoundaryAux(warpx.getngUpdateAux()); // Update the RealBox used for the geometry filter in particle diags for (int i = 0; i < m_output_species.size(); ++i) { |