aboutsummaryrefslogtreecommitdiff
path: root/Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H
diff options
context:
space:
mode:
authorGravatar Remi Lehe <remi.lehe@normalesup.org> 2019-04-19 06:16:03 -0700
committerGravatar Remi Lehe <remi.lehe@normalesup.org> 2019-04-23 12:43:53 -0700
commitf9e7f5168ceca79eb1c68905787d5985b5bbe427 (patch)
treed9d5939e2baab2e8154c8b5314c1b820ea735e80 /Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H
parent0e9c0209744cf032da4713a1041dd0ccbaa0b1c4 (diff)
downloadWarpX-f9e7f5168ceca79eb1c68905787d5985b5bbe427.tar.gz
WarpX-f9e7f5168ceca79eb1c68905787d5985b5bbe427.tar.zst
WarpX-f9e7f5168ceca79eb1c68905787d5985b5bbe427.zip
Do not import namespace in .H file
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H')
-rw-r--r--Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H11
1 files changed, 4 insertions, 7 deletions
diff --git a/Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H b/Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H
index 7e94bdec6..9fbdc7073 100644
--- a/Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H
+++ b/Source/FieldSolver/SpectralSolver/PsatdAlgorithm.H
@@ -4,20 +4,17 @@
#include <SpectralKSpace.H>
#include <SpectralFieldData.H>
-using namespace amrex;
-using namespace Gpu;
-
/* TODO: Write documentation
*/
class PsatdAlgorithm
{
- using SpectralCoefficients = FabArray<BaseFab<Real>>;
+ using SpectralCoefficients = amrex::FabArray< amrex::BaseFab <amrex::Real> >;
public:
PsatdAlgorithm(const SpectralKSpace& spectral_kspace,
- const DistributionMapping& dm,
- const int norder_x, const int norder_y,
- const int norder_z, const Real dt);
+ const amrex::DistributionMapping& dm,
+ const int norder_x, const int norder_y,
+ const int norder_z, const amrex::Real dt);
void pushSpectralFields( SpectralFieldData& f ) const;
private: