Codebase overview

The root directory of the GROMACS repository only contains CMakeLists.txt (the root file for the CMake build system), a few files supporting the build system, and a few standard informative files (README etc.). The INSTALL is generated for source packages from docs/install-guide/index.rst.

All other content is in the following top-level directories:

admin/
Contains various scripts for developer use, as well as configuration files and scripts for some of the tools used.
cmake/
Contains code fragments and find modules for CMake. Some content here is copied and/or adapted from newer versions of CMake than the minimum currently supported. Default suppression file for valgrind is also included here. See Build system overview for details of the build system.
docs/
Contains the build system logic and source code for all documentation, both user-facing and developer-facing. Some of the documentation is generated from the source code under src/; see Documentation organization. This directory also contains some developer scripts that use the Doxygen documentation for their operation.
scripts/
Contains the templates for GMXRC script, some other installed scripts, as well as installation rules for all these scripts.
share/
Contains data files that will be installed under share/. These include a template for writing C++ analysis tools, and data files used by GROMACS.
src/
Contains all source code. See Source code organization.
tests/
Contains build system logic for some high-level tests. Currently, only the regression test build system logic and cppcheck rules are in this directory, while other tests are under src/.

Source code organization

The following figure shows a high-level view of components of what gets built from the source code under src/ and how the code is organized. The build system is described in detail in Build system overview. With default options, the green and white components are built as part of the default target. If GMX_BUILD_MDRUN_ONLY is ON, then the blue and white components are built instead; libgromacs_mdrun is built from a subset of the code used for libgromacs. The gray parts are for testing, and are by default only built as part of the tests target, but if GMX_DEVELOPER_BUILD is ON, then these are included in the default build target. See Unit testing for details of the testing side.

digraph dev_high_level_components {
concentrate = yes
node [ shape=box, style=filled, width=2 ]

subgraph {
  rank = same
  externals [
    label="externals\nsrc/external/", group=common, style=rounded
  ]
  gtest [
    label="Google Test & Mock\nsrc/external/gmock-1.7.0/", group=test
    style="rounded,filled", fillcolor="0 0 0.9"
  ]
}
subgraph {
  rank = same
  libgromacs [
    label="libgromacs\nsrc/gromacs/", group=gmx, fillcolor="0.33 0.3 1"
  ]
  libgromacs_mdrun [
    label="libgromacs_mdrun\nsrc/gromacs/", group=mdrun, fillcolor="0.66 0.3 1"
  ]
}
testutils [
  label="testutils\nsrc/testutils/", group=test
  style="rounded,filled", fillcolor="0 0 0.9"
]
mdrun_objlib [
  label="mdrun object lib.\nsrc/programs/mdrun/", group=common, style=rouded
]
subgraph {
  rank = same
  gmx [
    label="gmx\nsrc/programs/", group=gmx, fillcolor="0.33 0.3 1"
  ]
  mdrun [
    label="mdrun\nsrc/programs/", group=mdrun, fillcolor="0.66 0.3 1"
  ]
  tests [
    label="test binaries\nsrc/.../tests/", group=test
    style="rounded,filled", fillcolor="0 0 0.9"
  ]
  template [
    label="analysis template\nshare/template/", group=common
    fillcolor="0.33 0.3 1"
  ]

  gmx -> template [ style=invis, constraint=no ]
  template -> mdrun [ style=invis, constraint=no ]
}

libgromacs -> externals
libgromacs_mdrun -> externals
mdrun_objlib -> libgromacs
gmx -> libgromacs
gmx -> mdrun_objlib
mdrun -> libgromacs_mdrun
mdrun -> mdrun_objlib
testutils -> externals
testutils -> gtest
testutils -> libgromacs
tests -> gtest
tests -> libgromacs
tests -> mdrun_objlib
tests -> testutils
template -> libgromacs

template -> mdrun_objlib [ style=invis ]
mdrun_objlib -> externals [ style=invis ]
}

All the source code (except for the analysis template) is under the src/ directory. Only a few files related to the build system are included at the root level. All actual code is in subdirectories:

src/gromacs/
The code under this directory is built into a single library, libgromacs. Installed headers are also located in this hierarchy. This is the main part of the code, and is organized into further subdirectories as modules. See below for details.
src/programs/
GROMACS executables are built from code under this directory. Although some build options can change this, there is typically only a single binary, gmx, built.
src//tests/
Various subdirectories under src/ contain a subdirectory named tests/. The code from each such directory is built into a test binary. Some such directories also provide shared test code as object libraries that is linked into multiple test binaries from different folders. See Unit testing for details.
src/testutils/
Contains shared utility code for writing Google Test tests. See Unit testing for details.
src/external/
Contains bundled source code for various libraries and components that GROMACS uses internally. All the code from these directories are built using our custom build rules into libgromacs, or in some cases into the test binaries. Some CMake options change which parts of this code are included in the build. See Build system overview for some explanation about how the code in this directory is used.
src/contrib/
Contains collection of less well maintained code that may or may not compile. It is not included in the build.
src/contrib/fftw/
As an exception to the above, this folder contains the build system code for downloading and building FFTW to be included into libgromacs.

When compiling, the include search path is set to src/. Some directories from under src/external/ may also be included, depending on the compilation options.

Organization under src/gromacs/

The libgromacs library is built from code under src/gromacs/. Again, the top-level directory contains build and installation rules for the library, and public API convenience headers. These convenience headers provide the main installed headers that other code can use. They do not contain any declarations, but only include a suitable set of headers from the subdirectories. They typically also contain high-level Doxygen documentation for the subdirectory with the same name: module.h corresponds to module/.

The code is organized into subdirectories. These subdirectories are denoted as modules throughout this documentation. Each module consists of a set of routines that do some well-defined task or a collection of tasks.

Installed headers are a subset of the headers under src/gromacs/. They are installed into a corresponding hierarchy under include/gromacs/ in the installation directory. Comments at the top of the header files contain a note about their visibility: public (installed), intra-library (can be used from inside the library), or intra-module/intra-file.

See Naming conventions for some common naming patterns for files that can help locating declarations.

Tests, and data required for them, are in a tests/ subdirectory under the module directory. See Unit testing for more details.

For historical reasons, there are directories src/gromacs/gmxana/, src/gromacs/gmxlib/, src/gromacs/mdlib/, and src/gromacs/gmxpreprocess/ that do not follow the above rules. The installed headers for these are in src/gromacs/legacyheaders/. The aim is to gradually get rid of these directories and move code into proper modules.

Documentation organization

All documentation (including this developer guide) is produced from source files under docs/, except for some command-line help that is generated from the source code (by executing the compiled gmx binary). The build system provides various custom targets that build the documentation; see Build system overview for details.

docs/fragments/
Contains reStructuredText fragments used through .. include:: mechanism from various places in the documentation.

User documentation

docs/install-guide/
Contains reStructuredText source files for building the install guide section of the user documentation, as well as the INSTALL file for the source package. The build rules are in docs/CMakeLists.txt.
docs/manual/
Contains LaTeX source files and build rules for the reference (PDF) manual.
docs/user-guide/
Contains reStructuredText source files for building the user guide section of the user documentation. The build rules are in docs/CMakeLists.txt.

Unix man pages

Man pages for programs are generated by running the gmx executable after compiling it, and then using Sphinx on the reStructuredText files that gmx writes out.

The build rules for the man pages are in docs/CMakeLists.txt.

Developer guide

docs/dev-manual/
Contains reStructuredText source files used to build the developer guide. The build rules are in docs/CMakeLists.txt.

The organization of the developer guide is explained on the front page of the guide.

Doxygen documentation

docs/doxygen/
Contains the build rules and some overview content for the Doxygen documentation. See Using Doxygen for details of how the Doxygen documentation is built and organized.

The Doxygen documentation is made of a few different parts. Use the list below as a guideline on where to look for a particular kind of content. Since the documentation has been written over a long period of time and the approach has evolved, not all the documentation yet follows these guidelines, but this is where we are aiming at.

documentation pages
These contain mainly overview content, from general-level introduction down into explanation of some particular areas of individual modules. These are generally the place to start familiarizing with the code or a new area of the code. They can be reached by links from the main page, and also through cross-links from places in the documentation where that information is relevant to understand the context.
module documentation
These contain mainly techical content, explaining the general implementation of a particular module and listing the classes, functions etc. in the module. They complement pages that describe the concepts. They can be reached from the Modules tab, and also from all individual classes, functions etc. that make up the module.
class documentation
These document the usage of an individual class, and in some cases that of closely related classes. Where necessary (and time allowing), a broader overview is given on a separate page and/or in the module documentation.
method documentation
These document the individual method. Typically, the class documentation or other overview content is the place to look for how different methods interact.
file and namespace documentation
These are generally only placeholders for links, and do not contain much else. The main content is the list of classes and other entities declared in that file.