12#include <prdc/crystal/fieldHeader.h>
32 hasFileMaster_(false),
36 fieldIo_.associate(mesh_, fft_,
37 lattice_, hasGroup_, groupName_, group_, basis_);
53 fieldIo_.setFileMaster(fileMaster);
54 hasFileMaster_ =
true;
65 read(in,
"mesh", mesh_);
67 fft_.setup(mesh_.dimensions());
70 read(in,
"lattice", lattice_);
71 unitCell_.set(lattice_);
76 waveList().allocate(mesh(), unitCell());
80 bool hasGroupName =
false;
81 hasGroupName = readOptional(in,
"groupName", groupName_).isActive();
86 readGroup(groupName_, group_);
90 isInitialized_ =
true;
109 unitCell_, groupName_, nMonomer);
112 lattice_ = unitCell_.lattice();
119 if (label !=
"mesh" && label !=
"ngrid") {
120 std::string msg =
"\n";
121 msg +=
"Error reading field file:\n";
122 msg +=
"Expected mesh or ngrid, but found [";
131 if (mesh_.size() == 0) {
132 mesh_.setDimensions(nGrid);
133 fft_.setup(mesh_.dimensions());
137 if (!waveList_.isAllocated()) {
138 waveList_.allocate(mesh_, unitCell_);
142 if (groupName_ !=
"") {
143 readGroup(groupName_, group_);
145 basis_.makeBasis(mesh_, unitCell_, group_);
148 isInitialized_ =
true;
158 lattice_ = unitCell.lattice();
162 unitCell_ = unitCell;
165 waveList().clearUnitCellData();
167 if (hasGroup_ && !basis_.isInitialized()) {
184 unitCell_.set(lattice, parameters);
187 waveList().clearUnitCellData();
189 if (hasGroup_ && !basis_.isInitialized()) {
202 unitCell_.setParameters(parameters);
205 waveList().clearUnitCellData();
207 if (hasGroup_ && !basis_.isInitialized()) {
222 if (!basis().isInitialized()) {
223 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 makeBasis()
Construct basis if not done already.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
void setUnitCell(UnitCell< D > const &unitCell)
Set the unit cell, given a UnitCell<D> object.
void readRGridFieldHeader(std::istream &in, int &nMonomer)
Read initialization data from header of an r-grid field file.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
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).
PSCF package top-level namespace.
Utility classes for scientific computation.