1#ifndef PRDC_CPU_C_FIELD_TPP
2#define PRDC_CPU_C_FIELD_TPP
48 FftwDArray<fftw_complex>::allocate(other.capacity_);
49 meshDimensions_ = other.meshDimensions_;
50 for (int i = 0; i < capacity_; ++i) {
51 data_[i][0] = other.data_[i][0];
52 data_[i][1] = other.data_[i][1];
66 if (
this == &other)
return *
this;
70 UTIL_THROW(
"Other CField must be allocated in assignment.");
74 allocate(other.meshDimensions_);
77 UTIL_CHECK(meshDimensions_ == other.meshDimensions_);
80 for (
int i = 0; i < capacity_; ++i) {
81 data_[i][0] = other.
data_[i][0];
82 data_[i][1] = other.
data_[i][1];
95 for (
int i = 0; i < D; ++i) {
97 meshDimensions_[i] = meshDimensions[i];
98 size *= meshDimensions[i];
110 for (
int i = 0; i < D; ++i) {
111 meshDimensions_[i] = 0;
An IntVec<D, T> is a D-component vector of elements of integer type T.
Field of complex double precision values on an FFT mesh.
CField()
Default constructor.
void allocate(const IntVec< D > &meshDimensions)
Allocate the underlying C array for an FFT grid.
virtual void deallocate()
Deallocate underlying C array and clear mesh dimensions.
CField & operator=(const CField &other)
Assignment operator.
virtual ~CField()
Destructor.
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.
Data * data_
Pointer to an array of Data elements.
int capacity_
Allocated size of the data_ array.
#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.