Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / trajectoryanalysis / analysissettings.h
index 7c116e8e4a0426cf2116374b2dfef80c8a4d4275..5d40d2ac836da5712afd3304a804606aad83b814 100644 (file)
@@ -1,48 +1,53 @@
 /*
+ * This file is part of the GROMACS molecular simulation package.
  *
- *                This source code is part of
+ * Copyright (c) 2010,2011,2012,2014, by the GROMACS development team, led by
+ * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
+ * and including many others, as listed in the AUTHORS file in the
+ * top-level source directory and at http://www.gromacs.org.
  *
- *                 G   R   O   M   A   C   S
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * of the License, or (at your option) any later version.
  *
- *          GROningen MAchine for Chemical Simulations
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2009, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
-
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
  * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
- *
- * For more info, check our website at http://www.gromacs.org
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 /*! \file
  * \brief
  * Declares gmx::TrajectoryAnalysisSettings and gmx::TopologyInformation.
  *
- * \author Teemu Murtola <teemu.murtola@cbr.su.se>
+ * \author Teemu Murtola <teemu.murtola@gmail.com>
  * \inpublicapi
  * \ingroup module_trajectoryanalysis
  */
 #ifndef GMX_TRAJECTORYANALYSIS_ANALYSISSETTINGS_H
 #define GMX_TRAJECTORYANALYSIS_ANALYSISSETTINGS_H
 
-#include "../legacyheaders/typedefs.h"
+#include "gromacs/math/vectypes.h"
+#include "gromacs/options/timeunitmanager.h"
+#include "gromacs/utility/common.h"
 
-#include "../options/timeunitmanager.h"
-#include "../utility/common.h"
+struct t_topology;
 
 namespace gmx
 {
@@ -56,13 +61,19 @@ class TrajectoryAnalysisRunnerCommon;
  *
  * This class is used by trajectory analysis modules to inform the caller
  * about the requirements they have on the input (e.g., whether a topology is
- * required, or whether PBC removal makes sense). It is also used to pass
+ * required, or whether PBC removal makes sense).  It is also used to pass
  * similar information back to the analysis module after parsing user input.
  *
  * Having this functionality as a separate class makes the
  * TrajectoryAnalysisModule interface much cleaner, and also reduces the need to
  * change existing code when new options are added.
  *
+ * Methods in this class do not throw, except for the constructor, which may
+ * throw an std::bad_alloc.
+ *
+ * \todo
+ * Remove plain flags from the public interface.
+ *
  * \inpublicapi
  * \ingroup module_trajectoryanalysis
  */
@@ -104,13 +115,6 @@ class TrajectoryAnalysisSettings
              * \see setRmPBC()
              */
             efNoUserRmPBC    = 1<<5,
-            /*! \brief
-             * Requests dumps of parsed and compiled selection trees.
-             *
-             * This flag is used by internal debugging tools to request
-             * the selection trees dumping to stderr.
-             */
-            efDebugSelection = 1<<16,
         };
 
         //! Initializes default settings.
@@ -133,7 +137,7 @@ class TrajectoryAnalysisSettings
          *
          * Returns the value set with setPBC() and/or overridden by the user.
          * The user-provided value can be accessed in
-         * TrajectoryAnalysisModule::initOptionsDone(), and can be overridden
+         * TrajectoryAnalysisModule::optionsFinished(), and can be overridden
          * with a call to setPBC().
          */
         bool hasPBC() const;
@@ -217,7 +221,7 @@ class TrajectoryAnalysisSettings
     private:
         class Impl;
 
-        PrivateImplPointer<Impl> _impl;
+        PrivateImplPointer<Impl> impl_;
 
         friend class TrajectoryAnalysisRunnerCommon;
 };
@@ -225,6 +229,14 @@ class TrajectoryAnalysisSettings
 /*! \brief
  * Topology information passed to a trajectory analysis module.
  *
+ * This class is used to pass topology information to trajectory analysis
+ * modules and to manage memory for them.  Having a single wrapper object
+ * instead of passing each item separately makes TrajectoryAnalysisModule
+ * interface simpler, and also reduces the need to change existing code if
+ * additional information is added.
+ *
+ * Methods in this class do not throw if not explicitly stated.
+ *
  * \inpublicapi
  * \ingroup module_trajectoryanalysis
  */
@@ -232,13 +244,13 @@ class TopologyInformation
 {
     public:
         //! Returns true if a topology file was loaded.
-        bool hasTopology() const { return _top != NULL; }
+        bool hasTopology() const { return top_ != NULL; }
         //! Returns true if a full topology file was loaded.
-        bool hasFullTopology() const { return _bTop; }
+        bool hasFullTopology() const { return bTop_; }
         //! Returns the loaded topology, or NULL if not loaded.
-        t_topology *topology() const { return _top; }
+        t_topology *topology() const { return top_; }
         //! Returns the ePBC field from the topology.
-        int ePBC() const { return _ePBC; }
+        int ePBC() const { return ePBC_; }
         /*! \brief
          * Gets the configuration from the topology.
          *
@@ -246,6 +258,8 @@ class TopologyInformation
          *      (can be NULL, in which case it is not used).
          * \param[out] box   Box size from the topology file
          *      (can be NULL, in which case it is not used).
+         * \throws  APIError if topology coordinates are not available and
+         *      \p x is not NULL.
          *
          * If TrajectoryAnalysisSettings::efUseTopX has not been specified,
          * \p x should be NULL.
@@ -259,18 +273,21 @@ class TopologyInformation
         ~TopologyInformation();
 
         //! The topology structure, or NULL if no topology loaded.
-        t_topology          *_top;
+        t_topology          *top_;
         //! true if full tpx file was loaded, false otherwise.
-        bool                 _bTop;
+        bool                 bTop_;
         //! Coordinates from the topology (can be NULL).
-        rvec                *_xtop;
+        rvec                *xtop_;
         //! The box loaded from the topology file.
-        matrix               _boxtop;
+        matrix               boxtop_;
         //! The ePBC field loaded from the topology file.
-        int                  _ePBC;
+        int                  ePBC_;
 
         GMX_DISALLOW_COPY_AND_ASSIGN(TopologyInformation);
 
+        /*! \brief
+         * Needed to initialize the data.
+         */
         friend class TrajectoryAnalysisRunnerCommon;
 };