Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / trajectoryanalysis / analysissettings_impl.h
index edc2b3c5b3fa59fa8ed62c64be78535b9d20bc58..68378ec95b240a174ec70a6a6df0a77c065cdae3 100644 (file)
@@ -60,30 +60,34 @@ class ICommandLineOptionsModuleSettings;
  */
 class TrajectoryAnalysisSettings::Impl
 {
-    public:
-        //! Initializes the default values for the settings object.
-        Impl()
-            : timeUnit(TimeUnit_Default), flags(0), frflags(0),
-              bRmPBC(true), bPBC(true), optionsModuleSettings_(nullptr)
-        {
-        }
+public:
+    //! Initializes the default values for the settings object.
+    Impl() :
+        timeUnit(TimeUnit_Default),
+        flags(0),
+        frflags(0),
+        bRmPBC(true),
+        bPBC(true),
+        optionsModuleSettings_(nullptr)
+    {
+    }
 
-        //! Global time unit setting for the analysis module.
-        TimeUnit                 timeUnit;
-        //! Global plotting settings for the analysis module.
-        AnalysisDataPlotSettings plotSettings;
-        //! Flags for the analysis module.
-        unsigned long            flags;
-        //! Frame reading flags for the analysis module.
-        int                      frflags;
+    //! Global time unit setting for the analysis module.
+    TimeUnit timeUnit;
+    //! Global plotting settings for the analysis module.
+    AnalysisDataPlotSettings plotSettings;
+    //! Flags for the analysis module.
+    unsigned long flags;
+    //! Frame reading flags for the analysis module.
+    int frflags;
 
-        //! Whether to make molecules whole for each frame.
-        bool                 bRmPBC;
-        //! Whether to pass PBC information to the analysis module.
-        bool                 bPBC;
+    //! Whether to make molecules whole for each frame.
+    bool bRmPBC;
+    //! Whether to pass PBC information to the analysis module.
+    bool bPBC;
 
-        //! Lower-level settings object wrapped by these settings.
-        ICommandLineOptionsModuleSettings  *optionsModuleSettings_;
+    //! Lower-level settings object wrapped by these settings.
+    ICommandLineOptionsModuleSettings* optionsModuleSettings_;
 };
 
 } // namespace gmx