8 #include "LatticeSystem.h" 9 #include <util/misc/ioUtil.h> 32 Log::file() <<
"Error in istream reading LatticeSystem" << std::endl;
40 if (buffer.size() == 0) {
41 UTIL_THROW(
"Empty LatticeSystem string after read");
45 if (buffer ==
"Cubic" || buffer ==
"cubic") {
48 if (buffer ==
"Tetragonal" || buffer ==
"tetragonal") {
51 if (buffer ==
"Orthorhombic" || buffer ==
"orthorhombic") {
52 lattice = Orthorhombic;
54 if (buffer ==
"Monoclinic" || buffer ==
"monoclinic") {
57 if (buffer ==
"Triclinic" || buffer ==
"triclinic") {
60 if (buffer ==
"Rhombohedral" || buffer ==
"rhombohedral") {
61 lattice = Rhombohedral;
63 if (buffer ==
"Hexagonal" || buffer ==
"hexagonal") {
67 Log::file() <<
"Unknown LatticeSystem. Value =|" 68 << buffer <<
"|" << std::endl;
70 UTIL_THROW(
"Invalid LatticeSystem value input");
80 if (lattice == Cubic) {
83 if (lattice == Tetragonal) {
86 if (lattice == Orthorhombic) {
87 out <<
"orthorhombic";
89 if (lattice == Monoclinic) {
92 if (lattice == Triclinic) {
95 if (lattice == Rhombohedral) {
96 out <<
"rhombohedral";
98 if (lattice == Hexagonal) {
static MPI::Datatype type
MPI Datatype.
void checkRequiredIstream(std::istream &in)
Check status of a std::istream just before reading required variable.
File containing preprocessor macros for error handling.
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Utility classes for scientific computation.
static std::ostream & file()
Get log ostream by reference.
static bool hasType
Is the MPI type initialized?
LatticeSystem
Enumeration of the 7 possible Bravais lattice systems.
A user-defined exception.