diff options
author | 2020-02-25 21:09:07 -0800 | |
---|---|---|
committer | 2020-02-25 21:09:07 -0800 | |
commit | 73cbbfe18c7f1b2d08824ff39fed59410c51f574 (patch) | |
tree | b072c07744f5a7bcd464d14c6a9317d96a3da31a /Source/Python/WarpXWrappers.cpp | |
parent | 2a56e2b7eae582abc1b7e2eecd83af7a72610f9b (diff) | |
download | WarpX-73cbbfe18c7f1b2d08824ff39fed59410c51f574.tar.gz WarpX-73cbbfe18c7f1b2d08824ff39fed59410c51f574.tar.zst WarpX-73cbbfe18c7f1b2d08824ff39fed59410c51f574.zip |
Includes: Clean Up (#743)
- Use `""` for WarpX-local includes
- Order: WarpX `""`, AMReX `<>`, other third party includes `<>`
- Add dir prefixes for WarpX
Add order to includes by including from `Source/` onward and keeping
directory prefixes of non-local includes for clarity.
Diffstat (limited to 'Source/Python/WarpXWrappers.cpp')
-rw-r--r-- | Source/Python/WarpXWrappers.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Python/WarpXWrappers.cpp b/Source/Python/WarpXWrappers.cpp index 2bddd3b31..201af45c0 100644 --- a/Source/Python/WarpXWrappers.cpp +++ b/Source/Python/WarpXWrappers.cpp @@ -6,15 +6,16 @@ * * License: BSD-3-Clause-LBNL */ -#include <WarpXWrappers.h> -#include <WarpXParticleContainer.H> -#include <WarpX.H> -#include <WarpXUtil.H> -#include <WarpX_py.H> +#include "WarpXWrappers.h" +#include "Particles/WarpXParticleContainer.H" +#include "WarpX.H" +#include "Utils/WarpXUtil.H" +#include "WarpX_py.H" #include <AMReX.H> #include <AMReX_BLProfiler.H> + namespace { amrex::Real** getMultiFabPointers(const amrex::MultiFab& mf, int *num_boxes, int *ncomps, int *ngrow, int **shapes) |