1#ifndef PRDC_MASK_TMPL_H
2#define PRDC_MASK_TMPL_H
11#include <prdc/crystal/UnitCell.h>
12#include <pscf/math/IntVec.h>
13#include <util/containers/DArray.h>
14#include <util/param/ParamComposite.h>
60 template <
int D,
typename FieldIo,
typename RField>
293 FieldIo
const * fieldIoPtr_;
320 bool isAllocatedBasis_;
325 bool isAllocatedRGrid_;
345 template <
int D,
typename FieldIo,
typename RField>
354 template <
int D,
typename FieldIo,
typename RField>
362 template <
int D,
typename FieldIo,
typename RField>
364 {
return isAllocatedBasis_; }
367 template <
int D,
typename FieldIo,
typename RField>
369 {
return isAllocatedRGrid_; }
372 template <
int D,
typename FieldIo,
typename RField>
377 template <
int D,
typename FieldIo,
typename RField>
379 {
return isSymmetric_; }
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.
Container for a field to which the total density is constrained.
double phiTot() const
Return the volume fraction of unit cell occupied by material.
bool isSymmetric() const
Are field symmetric under all elements of the space group?
void setFieldIo(FieldIo const &fieldIo)
Create association with FieldIo (store pointer).
bool isAllocatedRGrid() const
Has memory been allocated in rgrid format?
RField const & rgrid() const
Get the field in r-grid format.
void setBasis(DArray< double > const &field)
Set field component values, in symmetrized Fourier format.
void setRGrid(RField const &field, bool isSymmetric=false)
Set field values in real-space (r-grid) format.
void readRGrid(std::istream &in, UnitCell< D > &unitCell, bool isSymmetric=false)
Reads field from an input stream in real-space (r-grid) format.
void allocateRGrid(IntVec< D > const &dimensions)
Allocate memory for the field in rgrid format.
void allocateBasis(int nBasis)
Allocate memory for the field in basis format.
virtual double rGridAverage() const =0
Calculate the average value of the rgrid_ member.
bool hasData() const
Has field data been set in either format?
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Read field from input stream in symmetrized Fourier format.
bool isAllocatedBasis() const
Has memory been allocated in basis format?
DArray< double > const & basis() const
Get the field in basis format.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Dynamically allocatable contiguous array template.
An object that can read multiple parameters from file.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
PSCF package top-level namespace.
Utility classes for scientific computation.