diff options
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H')
-rw-r--r-- | Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H index 2c4946190..ed5b98183 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H +++ b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/SpectralBaseAlgorithm.H @@ -30,7 +30,10 @@ class SpectralBaseAlgorithm protected: // Meant to be used in the subclasses - using SpectralCoefficients = amrex::FabArray< amrex::BaseFab <amrex::Real> >; + using SpectralRealCoefficients = \ + amrex::FabArray< amrex::BaseFab <amrex::Real> >; + using SpectralComplexCoefficients = \ + amrex::FabArray< amrex::BaseFab <Complex> >; // Constructor SpectralBaseAlgorithm(const SpectralKSpace& spectral_kspace, |