1#ifndef RPG_C_FIELD_CONTAINER_H
2#define RPG_C_FIELD_CONTAINER_H
11#include <util/containers/DArray.h>
12#include <prdc/cuda/RField.h>
119 {
return basis_[monomerId]; }
127 {
return basis_[monomerId]; }
147 {
return rgrid_[monomerId]; }
155 {
return rgrid_[monomerId]; }
161 {
return isAllocatedRGrid_; }
167 {
return isAllocatedBasis_; }
196 bool isAllocatedRGrid_;
201 bool isAllocatedBasis_;
205 #ifndef RPG_FIELD_CONTAINER_TPP
207 extern template class CFieldContainer<1>;
208 extern template class CFieldContainer<2>;
209 extern template class CFieldContainer<3>;
An IntVec<D, T> is a D-component vector of elements of integer type T.
Field of real double precision values on an FFT mesh.
A list of c fields stored in both basis and r-grid format.
void setNMonomer(int nMonomer)
Set stored value of nMonomer.
DArray< RField< D > > const & rgrid() const
Get array of all fields in r-grid format (const).
DArray< double > const & basis(int monomerId) const
Get the field for one monomer type in basis format (const)
void deallocateBasis()
De-allocate fields in basis format.
RField< D > & rgrid(int monomerId)
Get field for one monomer type in r-grid format (non-const)
DArray< DArray< double > > & basis()
Get array of all fields in basis format (non-const).
~CFieldContainer()
Destructor.
DArray< DArray< double > > const & basis() const
Get array of all fields in basis format (const)
RField< D > const & rgrid(int monomerId) const
Get field for one monomer type in r-grid format (const).
void allocateRGrid(IntVec< D > const &dimensions)
Allocate or re-allocate memory for fields in rgrid format.
DArray< double > & basis(int monomerId)
Get the field for one monomer type in basis format (non-const).
bool isAllocatedBasis() const
Has memory been allocated for fields in basis format?
void deallocateRGrid()
De-allocate fields in rgrid format.
void allocate(int nMonomer, int nBasis, IntVec< D > const &dimensions)
Allocate memory for both r-grid and basis field formats.
void allocateBasis(int nBasis)
Allocate or re-allocate memory for fields in basis format.
CFieldContainer()
Constructor.
DArray< RField< D > > & rgrid()
Get array of all fields in r-grid format (non-const).
bool isAllocatedRGrid() const
Has memory been allocated for fields in r-grid format?
Dynamically allocatable contiguous array template.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.