12#include <prdc/crystal/fieldHeader.h>
36 hasFileMaster_(false),
40 fieldIo_.associate(mesh_, fft_, lattice_,
41 hasGroup_, groupName_, group_, basis_);
55 fieldIo_.setFileMaster(fileMaster);
56 hasFileMaster_ =
true;
70 read(in,
"mesh", mesh_);
72 fft_.setup(mesh_.dimensions());
75 read(in,
"lattice", lattice_);
76 unitCell_.set(lattice_);
83 hasGroupName = readOptional(in,
"groupName", groupName_).isActive();
89 readGroup(groupName_, group_);
93 isInitialized_ =
true;
114 unitCell_, groupName_, nMonomer);
116 lattice_ = unitCell_.lattice();
123 if (label !=
"mesh" && label !=
"ngrid") {
124 std::string msg =
"\n";
125 msg +=
"Error reading field file:\n";
126 msg +=
"Expected mesh or ngrid, but found [";
134 if (mesh_.size() == 0) {
136 mesh_.setDimensions(nGrid);
137 fft_.setup(mesh_.dimensions());
141 if (groupName_ !=
"") {
142 readGroup(groupName_, group_);
144 basis_.makeBasis(mesh_, unitCell_, group_);
147 isInitialized_ =
true;
157 lattice_ = unitCell.lattice();
161 unitCell_ = unitCell;
163 if (!basis_.isInitialized()) {
181 unitCell_.set(lattice, parameters);
183 if (!basis_.isInitialized()) {
197 unitCell_.setParameters(parameters);
199 if (!basis_.isInitialized()) {
213 if (!basis().isInitialized()) {
214 basis_.makeBasis(mesh_, unitCell_, group_);
An IntVec<D, T> is a D-component vector of elements of integer type T.
Base template for UnitCell<D> classes, D=1, 2 or 3.
void readRGridFieldHeader(std::istream &in, int &nMonomer)
Read header of an r-grid field file to initialize this Domain.
void makeBasis()
Construct basis if not done already.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
void setUnitCell(UnitCell< D > const &unitCell)
Set unit cell.
A fixed capacity (static) contiguous array with a variable logical size.
int size() const
Return logical size of this array (i.e., number of elements).
A FileMaster manages input and output files for a simulation.
void setClassName(const char *className)
Set class name string.
#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.
void readFieldHeader(std::istream &in, int &ver1, int &ver2, UnitCell< D > &cell, std::string &groupName, int &nMonomer)
Read common part of field header (fortran PSCF format).
Fields and FFTs for periodic boundary conditions (CPU)
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.