1#ifndef PRDC_MASK_GEN_FILM_BASE_TPP
2#define PRDC_MASK_GEN_FILM_BASE_TPP
11#include "MaskGenFilmBase.h"
12#include "prdc/crystal/SpaceGroup.h"
13#include "util/param/ScalarParam.h"
31 interfaceThickness_(-1.0),
32 excludedThickness_(-1.0),
50 read(in,
"normalVecId", normalVecId_);
51 read(in,
"interfaceThickness", interfaceThickness_);
52 read(in,
"excludedThickness", excludedThickness_);
59 if (normalVecId_ > D || normalVecId_ < 0) {
60 UTIL_THROW(
"bad value for normalVecId, must be in [0,D)");
62 if (interfaceThickness_ > excludedThickness_) {
63 UTIL_THROW(
"excludedThickness must be larger than interfaceThickness");
65 if ((excludedThickness_ <= 0) || (interfaceThickness_ <= 0)) {
66 UTIL_THROW(
"excludedThickness and interfaceThickness must be >0");
86 checkLatticeVectors();
99 if (normalVecCurrent_ == systemLatticeVector(normalVecId_)) {
113 std::string groupName = systemSpaceGroup();
118 readGroup(groupName, group);
121 int nv = normalVecId();
122 std::string msg =
"Space group contains forbidden symmetry operations";
123 for (
int i = 0; i < group.
size(); i++) {
124 for (
int j = 0; j < D; j++) {
125 int r = group[i].R(nv,j);
127 if ((r != 1) && (r != -1)) {
136 if (group[i].t(nv) != 0) {
Abstract base class for objects that generate fields for ImposedFields.
bool updateNeeded() const
Check whether system has changed such that the field needs updating.
MaskGenFilmBase()
Constructor.
~MaskGenFilmBase()
Destructor.
void checkCompatibility()
Check that the system is compatible with this field.
void readParameters(std::istream &in)
Read parameter file block and initialize.
void checkSpaceGroup() const
Check that space group is compatible with the mask.
Crystallographic space group.
int size() const
Return number of elements in group (i.e., the order of the group).
bool isActive() const
Is this parameter active?
Template for a Parameter object associated with a scalar variable.
#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.
PSCF package top-level namespace.
Utility classes for scientific computation.