Simpatico  v1.10
LatticeSystem.cpp
1 /*
2 * Util Package - C++ Utilities for Scientific Computation
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "LatticeSystem.h" // class header
9 #include <util/misc/ioUtil.h>
10 #include <util/global.h>
11 
12 namespace Util
13 {
14 
15  #ifdef UTIL_MPI
16 
19  MPI::Datatype MpiTraits<Util::LatticeSystem>::type = MPI::INT;
21  #endif
22 
23  /*
24  * Extract a LatticeSystem from an istream as a string.
25  */
26  std::istream& operator >> (std::istream& in, LatticeSystem& lattice)
27  {
28  // Precondition (check state of input stream)
29  try {
31  } catch (Exception e) {
32  Log::file() << "Error in istream reading LatticeSystem" << std::endl;
33  throw e;
34  }
35 
36  // Read string representation
37  std::string buffer;
38  skipws(in);
39  in >> buffer;
40  if (buffer.size() == 0) {
41  UTIL_THROW("Empty LatticeSystem string after read");
42  }
43 
44  // Match string representation and set value
45  if (buffer == "Cubic" || buffer == "cubic") {
46  lattice = Cubic;
47  } else
48  if (buffer == "Tetragonal" || buffer == "tetragonal") {
49  lattice = Tetragonal;
50  } else
51  if (buffer == "Orthorhombic" || buffer == "orthorhombic") {
52  lattice = Orthorhombic;
53  } else
54  if (buffer == "Monoclinic" || buffer == "monoclinic") {
55  lattice = Monoclinic;
56  } else
57  if (buffer == "Triclinic" || buffer == "triclinic") {
58  lattice = Triclinic;
59  } else
60  if (buffer == "Rhombohedral" || buffer == "rhombohedral") {
61  lattice = Rhombohedral;
62  } else
63  if (buffer == "Hexagonal" || buffer == "hexagonal") {
64  lattice = Hexagonal;
65  } else {
66  #ifndef UTIL_MPI
67  Log::file() << "Unknown LatticeSystem. Value =|"
68  << buffer << "|" << std::endl;
69  #endif
70  UTIL_THROW("Invalid LatticeSystem value input");
71  }
72  return in;
73  }
74 
75  /*
76  * Insert a LatticeSystem to an ostream as a string.
77  */
78  std::ostream& operator<<(std::ostream& out, LatticeSystem lattice)
79  {
80  if (lattice == Cubic) {
81  out << "cubic";
82  } else
83  if (lattice == Tetragonal) {
84  out << "tetragonal";
85  } else
86  if (lattice == Orthorhombic) {
87  out << "orthorhombic";
88  } else
89  if (lattice == Monoclinic) {
90  out << "monoclinic";
91  } else
92  if (lattice == Triclinic) {
93  out << "triclinic";
94  } else
95  if (lattice == Rhombohedral) {
96  out << "rhombohedral";
97  } else
98  if (lattice == Hexagonal) {
99  out << "hexagonal";
100  } else {
101  UTIL_THROW("This should never happen");
102  }
103  return out;
104  }
105 
106 }
static MPI::Datatype type
MPI Datatype.
Definition: LatticeSystem.h:70
void checkRequiredIstream(std::istream &in)
Check status of a std::istream just before reading required variable.
Definition: ioUtil.cpp:124
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.
Definition: Pair.h:57
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition: Pair.h:44
Utility classes for scientific computation.
Definition: accumulators.mod:1
static std::ostream & file()
Get log ostream by reference.
Definition: Log.cpp:57
static bool hasType
Is the MPI type initialized?
Definition: LatticeSystem.h:71
LatticeSystem
Enumeration of the 7 possible Bravais lattice systems.
Definition: LatticeSystem.h:29
A user-defined exception.
Definition: Exception.h:24