diff options
author | 2020-02-25 21:09:07 -0800 | |
---|---|---|
committer | 2020-02-25 21:09:07 -0800 | |
commit | 73cbbfe18c7f1b2d08824ff39fed59410c51f574 (patch) | |
tree | b072c07744f5a7bcd464d14c6a9317d96a3da31a /Source/FieldSolver/SpectralSolver/SpectralSolver.H | |
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/FieldSolver/SpectralSolver/SpectralSolver.H')
-rw-r--r-- | Source/FieldSolver/SpectralSolver/SpectralSolver.H | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralSolver.H b/Source/FieldSolver/SpectralSolver/SpectralSolver.H index 2f6428fc6..6685e489c 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralSolver.H +++ b/Source/FieldSolver/SpectralSolver/SpectralSolver.H @@ -7,9 +7,11 @@ #ifndef WARPX_SPECTRAL_SOLVER_H_ #define WARPX_SPECTRAL_SOLVER_H_ -#include <SpectralBaseAlgorithm.H> -#include <SpectralFieldData.H> +#include "SpectralAlgorithms/SpectralBaseAlgorithm.H" +#include "SpectralFieldData.H" + +#ifdef WARPX_USE_PSATD /** * \brief Top-level class for the electromagnetic spectral solver * @@ -64,5 +66,5 @@ class SpectralSolver // SpectralBaseAlgorithm is a base class ; this pointer is meant // to point an instance of a *sub-class* defining a specific algorithm }; - +#endif // WARPX_USE_PSATD #endif // WARPX_SPECTRAL_SOLVER_H_ |