Initialize t_inputrec properly
[alexxy/gromacs.git] / src / gromacs / pbcutil / pbc.h
index acda69c65e9e0469e8c2e1442f0d595e9a8ca2d4..8114df7055551e7f2f844edef977333d0be1ffc8 100644 (file)
@@ -43,6 +43,7 @@
 #include <string>
 
 #include "gromacs/math/vectypes.h"
+#include "gromacs/mdtypes/md_enums.h"
 #include "gromacs/utility/basedefinitions.h"
 #include "gromacs/utility/enumerationhelpers.h"
 #include "gromacs/utility/real.h"
@@ -56,17 +57,6 @@ template<typename>
 class ArrayRef;
 } // namespace gmx
 
-//! Enumeration that contains all supported periodic boundary setups.
-enum class PbcType : int
-{
-    Xyz   = 0, //!< Periodic boundaries in all dimensions.
-    No    = 1, //!< No periodic boundaries.
-    XY    = 2, //!< Only two dimensions are periodic.
-    Screw = 3, //!< Screw.
-    Unset = 4, //!< The type of PBC is not set or invalid.
-    Count = 5
-};
-
 //! Names for all values in PBC types enumeration
 extern const gmx::EnumerationArray<PbcType, std::string> c_pbcTypeNames;