Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / applied_forces / tests / densityfittingamplitudelookup.cpp
index 9a6804733b9f6ef4b04456b3c4bf3917adeb9dc5..531052885e601b47ad30d8e31a8c3c7239396d6f 100644 (file)
@@ -54,19 +54,20 @@ namespace gmx
 
 class DensityFittingAmplitudeLookupTest : public ::testing::Test
 {
-    public:
-        DensityFittingAmplitudeLookupTest()
-        {
-            atoms_.nr      = numberOfAtoms_;
-            atoms_.massT   = masses_.data();
-            atoms_.chargeA = charges_.data();
-        }
-    protected:
-        int               numberOfAtoms_ = 3;
-        std::vector<real> masses_        = {2, 3, 4};
-        std::vector<real> charges_       = {20, 30, 40};
-        t_mdatoms         atoms_         = {};
-        std::vector<int>  lookupIndices_ = { 1, 2 };
+public:
+    DensityFittingAmplitudeLookupTest()
+    {
+        atoms_.nr      = numberOfAtoms_;
+        atoms_.massT   = masses_.data();
+        atoms_.chargeA = charges_.data();
+    }
+
+protected:
+    int               numberOfAtoms_ = 3;
+    std::vector<real> masses_        = { 2, 3, 4 };
+    std::vector<real> charges_       = { 20, 30, 40 };
+    t_mdatoms         atoms_         = {};
+    std::vector<int>  lookupIndices_ = { 1, 2 };
 };
 
 TEST_F(DensityFittingAmplitudeLookupTest, Unity)