Skip to content

Commit

Permalink
EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
RevathiJambunathan committed Aug 12, 2024
1 parent 97271d0 commit 0418eb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/WarpX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -927,15 +927,15 @@ WarpX::ReadParameters ()
utils::parser::queryWithParser(
pp_warpx, "n_field_gather_buffer", n_field_gather_buffer);
amrex::Vector<int> nfieldgatherbuffer_eachdir(AMREX_SPACEDIM,n_field_gather_buffer);
utils::parser::queryArrWithParser(
utils::parser::queryArrWithParser(
pp_warpx, "n_field_gather_buffer_each_dir", nfieldgatherbuffer_eachdir, 0, AMREX_SPACEDIM);
for (int i = 0; i < AMREX_SPACEDIM; ++i) {
n_field_gather_buffer_each_dir[i] = nfieldgatherbuffer_eachdir[i];
}
utils::parser::queryWithParser(
pp_warpx, "n_current_deposition_buffer", n_current_deposition_buffer);
amrex::Vector<int> ncurrentdepositionbuffer_eachdir(AMREX_SPACEDIM,n_current_deposition_buffer);
utils::parser::queryArrWithParser(
utils::parser::queryArrWithParser(
pp_warpx, "n_current_deposition_buffer_each_dir",
ncurrentdepositionbuffer_eachdir, 0, AMREX_SPACEDIM);
for (int i = 0; i < AMREX_SPACEDIM; ++i) {
Expand Down

0 comments on commit 0418eb1

Please sign in to comment.