1#ifndef PRDC_CPU_FFTW_D_ARRAY_TPP
2#define PRDC_CPU_FFTW_D_ARRAY_TPP
11#include "FftwDArray.h"
23 template <
typename Data>
31 template <
typename Data>
47 template <
typename Data>
51 UTIL_THROW(
"Attempt to re-allocate a FftwDArray");
54 UTIL_THROW(
"Attempt to allocate FftwDArray with capacity <= 0");
57 data_ = (Data*) fftw_malloc(
sizeof(Data)*capacity);
65 template <
typename Data>
void allocate(int capacity)
Allocate the underlying C array.
virtual ~FftwDArray()
Destructor.
FftwDArray()
Default constructor.
virtual void deallocate()
Dellocate the underlying C array.
Array container class template.
#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.