Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / programs / mdrun / tests / multisimtest.cpp
index b53756599b8a77727bcdf203a7a70764b9e5cb11..8295f42112085dccbffc8b7b8eb88301679997f0 100644 (file)
@@ -114,13 +114,16 @@ void MultiSimTest::organizeMdpFile(SimulationRunner* runner, const char* control
             "gen-temp = %f\n"
             // control variable specification
             "%s\n",
-            numSteps, baseTemperature + 0.0001 * rank_, basePressure * std::pow(1.01, rank_),
+            numSteps,
+            baseTemperature + 0.0001 * rank_,
+            basePressure * std::pow(1.01, rank_),
             /* Set things up so that the initial KE decreases with
                increasing replica number, so that the (identical)
                starting PE decreases on the first step more for the
                replicas with higher number, which will tend to force
                replica exchange to occur. */
-            std::max(baseTemperature - 10 * rank_, real(0)), controlVariable);
+            std::max(baseTemperature - 10 * rank_, real(0)),
+            controlVariable);
     runner->useStringAsMdpFile(mdpFileContents);
 }