8 #include <util/space/Dimension.h> 14 unsigned int Plan::GMask[3][2] = { {0x0001, 0x0002}, {0x0004, 0x0008}, {0x0010, 0x0020} };
15 unsigned int Plan::EMask[3][2] = { {0x0100, 0x0200}, {0x0400, 0x0800}, {0x1000, 0x2000} };
30 for (j=0; j < 2; ++j) {
31 if (
string[k] ==
'1') {
33 }
else if (
string[k] ==
'0') {
43 for (
int j=0; j < 2; ++j) {
44 if (
string[k] ==
'1') {
46 }
else if (
string[k] ==
'0') {
62 for (j = 0; j < 2; ++j) {
72 for (j=0; j < 2; ++j) {
73 if (plan.
ghost(i, j)) {
void setGhost(int i, int j)
Set ghost flag for direction i, j (set true).
const int Dimension
Dimensionality of space.
std::istream & operator>>(std::istream &in, AtomType &atomType)
istream extractor (>>) for an AtomType.
bool exchange(int i, int j) const
Get bool exchange flag for direction i, j.
bool ghost(int i, int j) const
Get ghost flag for direction i, j.
Parallel domain decomposition (DD) MD simulation.
void setExchange(int i, int j)
Set exchange flag for direction i, j (set true).
Utility classes for scientific computation.
void clearExchange(int i, int j)
Clear exchange flag for direction i, j (set false).
void clearGhost(int i, int j)
Clear ghost flag for direction i, j (set false).
std::ostream & operator<<(std::ostream &out, const AtomType &atomType)
ostream inserter (<<) for an AtomType.