diff options
author | 2019-12-19 12:01:30 +0100 | |
---|---|---|
committer | 2019-12-19 12:01:30 +0100 | |
commit | 95bf72520c3a78d93f22965fe4848f7cd443ed4c (patch) | |
tree | fb83394162ef20b11e97dad43720bf4f1fc7c636 /Source/WarpX.cpp | |
parent | f047e4beaab1e2a31bd4a0992fa7a63b0ba0cf8c (diff) | |
parent | 7d1a572483d5f1b314020b5282c92d48afa26f9d (diff) | |
download | WarpX-95bf72520c3a78d93f22965fe4848f7cd443ed4c.tar.gz WarpX-95bf72520c3a78d93f22965fe4848f7cd443ed4c.tar.zst WarpX-95bf72520c3a78d93f22965fe4848f7cd443ed4c.zip |
Merge branch 'dev' into add_harmonic_beam
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index d94e35f61..53728b54f 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -1116,9 +1116,9 @@ WarpX::Evolve (int numsteps) { } void -WarpX::ComputeDivB (MultiFab& divB, int dcomp, - const std::array<const MultiFab*, 3>& B, - const std::array<Real,3>& dx) +WarpX::ComputeDivB (amrex::MultiFab& divB, int dcomp, + const std::array<const amrex::MultiFab*, 3>& B, + const std::array<amrex::Real,3>& dx) { Real dxinv = 1./dx[0], dyinv = 1./dx[1], dzinv = 1./dx[2]; @@ -1150,9 +1150,9 @@ WarpX::ComputeDivB (MultiFab& divB, int dcomp, } void -WarpX::ComputeDivB (MultiFab& divB, int dcomp, - const std::array<const MultiFab*, 3>& B, - const std::array<Real,3>& dx, int ngrow) +WarpX::ComputeDivB (amrex::MultiFab& divB, int dcomp, + const std::array<const amrex::MultiFab*, 3>& B, + const std::array<amrex::Real,3>& dx, int ngrow) { Real dxinv = 1./dx[0], dyinv = 1./dx[1], dzinv = 1./dx[2]; @@ -1184,9 +1184,9 @@ WarpX::ComputeDivB (MultiFab& divB, int dcomp, } void -WarpX::ComputeDivE (MultiFab& divE, int dcomp, - const std::array<const MultiFab*, 3>& E, - const std::array<Real,3>& dx) +WarpX::ComputeDivE (amrex::MultiFab& divE, int dcomp, + const std::array<const amrex::MultiFab*, 3>& E, + const std::array<amrex::Real,3>& dx) { Real dxinv = 1./dx[0], dyinv = 1./dx[1], dzinv = 1./dx[2]; @@ -1218,9 +1218,9 @@ WarpX::ComputeDivE (MultiFab& divE, int dcomp, } void -WarpX::ComputeDivE (MultiFab& divE, int dcomp, - const std::array<const MultiFab*, 3>& E, - const std::array<Real,3>& dx, int ngrow) +WarpX::ComputeDivE (amrex::MultiFab& divE, int dcomp, + const std::array<const amrex::MultiFab*, 3>& E, + const std::array<amrex::Real,3>& dx, int ngrow) { Real dxinv = 1./dx[0], dyinv = 1./dx[1], dzinv = 1./dx[2]; |