diff options
author | 2019-10-27 15:15:54 -0700 | |
---|---|---|
committer | 2019-10-27 15:15:54 -0700 | |
commit | 7d5d704359d94761362bce077d536f8f9985b4c8 (patch) | |
tree | c0c62ff1c54302b4e065f4eef42a20ae6fa35618 /Source/WarpX.cpp | |
parent | 30abf69638c200cd4fdfb9305a9b02075c0df0b0 (diff) | |
download | WarpX-7d5d704359d94761362bce077d536f8f9985b4c8.tar.gz WarpX-7d5d704359d94761362bce077d536f8f9985b4c8.tar.zst WarpX-7d5d704359d94761362bce077d536f8f9985b4c8.zip |
fix arguments passed in initialization
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index 6a36ebb3e..c97c43cd9 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -699,7 +699,7 @@ WarpX::AllocLevelData (int lev, const BoxArray& ba, const DistributionMapping& d guard_cells.Init( do_subcycling, - use_fdtd_nci_corr, + WarpX::use_fdtd_nci_corr, do_nodal, do_moving_window, fft_hybrid_mpi_decomposition, @@ -707,7 +707,7 @@ WarpX::AllocLevelData (int lev, const BoxArray& ba, const DistributionMapping& d moving_window_dir, WarpX::nox, nox_fft, noy_fft, noz_fft, - WarpX::use_fdtd_nci_corr, + NCIGodfreyFilter::m_stencil_width, maxwell_fdtd_solver_id, maxLevel()); |