1#ifndef PRDC_CPU_R_FIELD_DFT_TPP
2#define PRDC_CPU_R_FIELD_DFT_TPP
48 UTIL_THROW(
"Other Field must be allocated.");
71 if (
this == &other)
return *
this;
75 UTIL_THROW(
"Other RFieldDft must be allocated.");
80 allocate(other.meshDimensions_);
83 UTIL_CHECK(meshDimensions_ == other.meshDimensions_);
84 UTIL_CHECK(dftDimensions_ == other.dftDimensions_);
87 for (
int i = 0; i < capacity_; ++i) {
88 data_[i][0] = other.
data_[i][0];
89 data_[i][1] = other.
data_[i][1];
102 for (
int i = 0; i < D; ++i) {
104 meshDimensions_[i] = meshDimensions[i];
106 dftDimensions_[i] = meshDimensions[i];
107 size *= meshDimensions[i];
109 dftDimensions_[i] = (meshDimensions[i]/2 + 1);
110 size *= dftDimensions_[i];
123 for (
int i = 0; i < D; ++i) {
124 meshDimensions_[i] = 0;
125 dftDimensions_[i] = 0;
An IntVec<D, T> is a D-component vector of elements of integer type T.
Dynamic array with data aligned for use with FFTW library.
void allocate(int capacity)
Allocate the underlying C array.
virtual void deallocate()
Dellocate the underlying C array.
bool isAllocated() const
Return true if the FftwDArray has been allocated, false otherwise.
Fourier transform of a real field on an FFT mesh.
virtual void deallocate()
Deallocate underlying C array and clear mesh dimensions.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array and set mesh dimensions.
virtual ~RFieldDft()
Destructor.
RFieldDft< D > & operator=(RFieldDft< D > const &other)
Assignment operator.
RFieldDft()
Default constructor.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
PSCF package top-level namespace.
Utility classes for scientific computation.