Merge branch 'origin/release-2020' into master
[alexxy/gromacs.git] / src / gromacs / nbnxm / grid.h
index 1e68c14dae2d16a9b0f4fb8a75a89773bc1af4be..806ee91f2bdb8826801f7d4816e6081197a7ee53 100644 (file)
@@ -125,14 +125,20 @@ struct BoundingBox
         //! Returns a pointer for SIMD storing of a Corner object
         float* ptr() { return &x; }
 
-        float x;       //!< x coordinate
-        float y;       //!< y coordinate
-        float z;       //!< z coordinate
-        float padding; //!< padding, unused, but should be set to avoid operations on unitialized data
+        //! x coordinate
+        float x;
+        //! y coordinate
+        float y;
+        //! z coordinate
+        float z;
+        //! padding, unused, but should be set to avoid operations on unitialized data
+        float padding;
     };
 
-    Corner lower; //!< lower, along x and y and z, corner
-    Corner upper; //!< upper, along x and y and z, corner
+    //! lower, along x and y and z, corner
+    Corner lower;
+    //! upper, along x and y and z, corner
+    Corner upper;
 };
 
 /*! \internal
@@ -140,8 +146,10 @@ struct BoundingBox
  */
 struct BoundingBox1D
 {
-    float lower; //!< lower bound
-    float upper; //!< upper bound
+    //! lower bound
+    float lower;
+    //! upper bound
+    float upper;
 };
 
 } // namespace Nbnxm
@@ -182,14 +190,19 @@ public:
         //! Constructs the cluster/cell geometry given the type of pairlist
         Geometry(PairlistType pairlistType);
 
-        bool isSimple;             //!< Is this grid simple (CPU) or hierarchical (GPU)
-        int  numAtomsICluster;     //!< Number of atoms per cluster
-        int  numAtomsJCluster;     //!< Number of atoms for list j-clusters
-        int  numAtomsPerCell;      //!< Number of atoms per cell
-        int  numAtomsICluster2Log; //!< 2log of na_c
+        //! Is this grid simple (CPU) or hierarchical (GPU)
+        bool isSimple;
+        //! Number of atoms per cluster
+        int numAtomsICluster;
+        //! Number of atoms for list j-clusters
+        int numAtomsJCluster;
+        //! Number of atoms per cell
+        int numAtomsPerCell;
+        //! 2log of na_c
+        int numAtomsICluster2Log;
     };
 
-    // The physical dimensions of a grid
+    //! The physical dimensions of a grid \internal
     struct Dimensions
     {
         //! The lower corner of the (local) grid