1#ifndef PRDC_CPU_R_FIELD_TPP
2#define PRDC_CPU_R_FIELD_TPP
48 allocate(other.meshDimensions_);
49 for (int i = 0; i < capacity_; ++i) {
50 data_[i] = other.data_[i];
69 if (
this == &other)
return *
this;
77 allocate(other.meshDimensions_);
80 UTIL_CHECK(meshDimensions_ == other.meshDimensions_);
83 for (
int i = 0; i < capacity_; ++i) {
97 for (
int i = 0; i < D; ++i) {
99 meshDimensions_[i] = meshDimensions[i];
100 size *= meshDimensions[i];
112 for (
int i = 0; i < D; ++i) {
113 meshDimensions_[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.
Field of real double precision values on an FFT mesh.
RField()
Default constructor.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
RField & operator=(const RField &other)
Assignment operator.
virtual void deallocate()
Deallocate memory and return to empty state.
virtual ~RField()
Destructor.
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.