Improve CUDA codegen flags
authorMark Abraham <mark.j.abraham@gmail.com>
Fri, 12 Feb 2021 13:02:37 +0000 (13:02 +0000)
committerPaul Bauer <paul.bauer.q@gmail.com>
Fri, 12 Feb 2021 13:02:37 +0000 (13:02 +0000)
- onnly generate PTX for an early and the latest arch (3.5 and 8.0)
- add binary 8.0 and 8.6 targets

34 files changed:
api/gmxapi/CMakeLists.txt
api/nblib/basicdefinitions.h
cmake/gmxManageNvccConfig.cmake
cmake/gmxTestCompilerProblems.cmake
docs/reference-manual/plots/GMX_logos/gmx_logo_black.svg
docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.eps [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.png [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.svg [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_blue.svg
docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.eps [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.png [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.svg [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp.svg
docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.eps [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.png [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.svg [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_white.svg
docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.png [new file with mode: 0644]
docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.svg [new file with mode: 0644]
docs/release-notes/2021/2021.1.rst
docs/release-notes/2021/major/miscellaneous.rst
src/external/CMakeLists.txt
src/gromacs/domdec/partition.cpp
src/gromacs/gmxana/gmx_covar.cpp
src/gromacs/gmxpreprocess/genhydro.cpp
src/gromacs/gmxpreprocess/tests/pdb2gmx.cpp
src/gromacs/gmxpreprocess/tests/refdata/ForAmber99sb_ildnWithTip4p_Pdb2gmxTest_ProducesMatchingTopology_0.xml [new file with mode: 0644]
src/gromacs/gmxpreprocess/tests/tip4p.pdb [new file with mode: 0644]
src/gromacs/mdlib/stat.h
src/gromacs/nbnxm/gpu_types_common.h
src/gromacs/nbnxm/nbnxm_gpu_data_mgmt.cpp
src/gromacs/pbcutil/rmpbc.cpp
src/testutils/conftest.cpp
src/testutils/include/testutils/conftest.h

index 1fcf9b69ec88d1e96c6723e59890ffddbf91f8e6..865abe29253db45832529ed5c4e5378f7b7255a2 100644 (file)
@@ -64,17 +64,12 @@ set_target_properties(gmxapi PROPERTIES
 
 if (GMX_LIB_MPI)
     # GROMACS is built against an MPI library.
 
 if (GMX_LIB_MPI)
     # GROMACS is built against an MPI library.
-    # Clarification should be possible with resolution of #3672.
     set(_gmx_mpi_type "library")
     set(_gmx_mpi_type "library")
-    # Ref https://cmake.org/cmake/help/v3.13/module/FindMPI.html#variables-for-using-mpi
-    find_package(MPI COMPONENTS CXX)
-    if (MPI_CXX_FOUND)
-target_link_libraries(gmxapi PRIVATE MPI::MPI_CXX)
-        # If clients also need to link this target, we need to provide help in gmxapi-config.cmake
-        set(_gmxapi_find_dependencies "find_dependency(MPI COMPONENTS CXX)")
-    else()
-        message(FATAL_ERROR "Building gmxapi for MPI-enabled GROMACS, but no MPI toolchain found.")
-    endif ()
+    # TODO: Normative solution with #3672.
+    # Do not target_link_options(gmxapi PRIVATE ${MPI_LINKER_FLAGS})
+    # because the root CMakeLists.txt sets CMAKE_SHARED_LINKER_FLAGS.
+    target_compile_options(gmxapi PUBLIC ${MPI_COMPILE_FLAGS})
+    target_link_libraries(gmxapi PUBLIC ${MPI_CXX_LIBRARIES})
 elseif(GMX_THREAD_MPI)
     # GROMACS is built with its internal thread-MPI implementation.
     set(_gmx_mpi_type "tmpi")
 elseif(GMX_THREAD_MPI)
     # GROMACS is built with its internal thread-MPI implementation.
     set(_gmx_mpi_type "tmpi")
index 41dabd32709734011cd3d048b15dec2e447ce897..ebb4d3f43dcaebaf0d222da17fc6ddf0479197b7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2020, by the GROMACS development team, led by
+ * Copyright (c) 2020,2021, 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.
  * 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.
@@ -88,6 +88,11 @@ constexpr const int N_IVEC  = (N_BOX_Z * N_BOX_Y * N_BOX_X);
 //! Needed for generating Bolzmann velocity distribution (kJ/(mol K))
 constexpr const real BOLTZ = (detail::RGAS / detail::KILO); /*  */
 
 //! Needed for generating Bolzmann velocity distribution (kJ/(mol K))
 constexpr const real BOLTZ = (detail::RGAS / detail::KILO); /*  */
 
+#ifndef M_PI
+//! Required work-around for platforms that don't implement POSIX-style cmath header
+#    define M_PI 3.14159265358979323846
+#endif
+
 //! Charge multiplication factor for Coulomb interactions
 constexpr const real ONE_4PI_EPS0 = (1.0 / (4.0 * M_PI * detail::EPSILON0));
 
 //! Charge multiplication factor for Coulomb interactions
 constexpr const real ONE_4PI_EPS0 = (1.0 / (4.0 * M_PI * detail::EPSILON0));
 
index 12e54cb40efca94399964c7cff008d92dca0dd38..b5f5663f4c2757ee481d133ef453bdca745072ad 100644 (file)
@@ -2,7 +2,7 @@
 # This file is part of the GROMACS molecular simulation package.
 #
 # Copyright (c) 2012,2013,2014,2015,2016 by the GROMACS development team.
 # This file is part of the GROMACS molecular simulation package.
 #
 # Copyright (c) 2012,2013,2014,2015,2016 by the GROMACS development team.
-# Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
+# Copyright (c) 2017,2018,2019,2020,2021, 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.
 # 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.
@@ -101,11 +101,11 @@ if (GMX_CUDA_TARGET_SM OR GMX_CUDA_TARGET_COMPUTE)
 else()
     # Set the CUDA GPU architectures to compile for:
     # - with CUDA >=9.0         CC 7.0 is supported and CC 2.0 is no longer supported
 else()
     # Set the CUDA GPU architectures to compile for:
     # - with CUDA >=9.0         CC 7.0 is supported and CC 2.0 is no longer supported
-    #     => compile sm_30, sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70 SASS, and compute_70 PTX
+    #     => compile sm_30, sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70 SASS, and compute_35, compute_70 PTX
     # - with CUDA >=10.0        CC 7.5 is supported
     # - with CUDA >=10.0        CC 7.5 is supported
-    #     => compile sm_30, sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70, sm_75 SASS, and compute_75 PTX
+    #     => compile sm_30, sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70, sm_75 SASS, and compute_35, compute_75 PTX
     # - with CUDA >=11.0        CC 8.0 is supported
     # - with CUDA >=11.0        CC 8.0 is supported
-    #     => compile sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70, sm_75, sm_80 SASS, and compute_80 PTX
+    #     => compile sm_35, sm_37, sm_50, sm_52, sm_60, sm_61, sm_70, sm_75, sm_80 SASS, and compute_35, compute_80 PTX
 
     # First add flags that trigger SASS (binary) code generation for physical arch
     if(CUDA_VERSION VERSION_LESS "11.0")
 
     # First add flags that trigger SASS (binary) code generation for physical arch
     if(CUDA_VERSION VERSION_LESS "11.0")
@@ -118,22 +118,28 @@ else()
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_60,code=sm_60")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_61,code=sm_61")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_70,code=sm_70")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_60,code=sm_60")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_61,code=sm_61")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_70,code=sm_70")
+    if(NOT CUDA_VERSION VERSION_LESS "10.0")
+        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_75,code=sm_75")
+    endif()
     if(NOT CUDA_VERSION VERSION_LESS "11.0")
     if(NOT CUDA_VERSION VERSION_LESS "11.0")
+        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_80,code=sm_80")
         # Requesting sm or compute 35, 37, or 50 triggers deprecation messages with
         # nvcc 11.0, which we need to suppress for use in CI
         list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-Wno-deprecated-gpu-targets")
     endif()
         # Requesting sm or compute 35, 37, or 50 triggers deprecation messages with
         # nvcc 11.0, which we need to suppress for use in CI
         list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-Wno-deprecated-gpu-targets")
     endif()
+    if(NOT CUDA_VERSION VERSION_LESS "11.1")
+        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_86,code=sm_86")
+    endif()
 
 
-    # Next add flags that trigger PTX code generation for the newest supported virtual arch
-    # that's useful to JIT to future architectures
+    # Next add flags that trigger PTX code generation for the
+    # newest supported virtual arch that's useful to JIT to future architectures
+    # as well as an older one suitable for JIT-ing to any rare intermediate arch
+    # (like that of Jetson / Drive PX devices)
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_35,code=compute_35")
     list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_35,code=compute_35")
-    list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_50,code=compute_50")
-    list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_52,code=compute_52")
-    list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_60,code=compute_60")
-    list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_61,code=compute_61")
-    list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_70,code=compute_70")
-    if(NOT CUDA_VERSION VERSION_LESS "10.0")
-        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_75,code=compute_75")
+    if(CUDA_VERSION VERSION_LESS "11.0")
+        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_32,code=compute_32")
+    else()
+        list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_53,code=compute_53")
     endif()
     if(NOT CUDA_VERSION VERSION_LESS "11.0")
         list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_80,code=compute_80")
     endif()
     if(NOT CUDA_VERSION VERSION_LESS "11.0")
         list (APPEND GMX_CUDA_NVCC_GENCODE_FLAGS "-gencode;arch=compute_80,code=compute_80")
index edb8c4714257849e3608ac7a39691016169275c9..620f1767eda7c32b832e6a60faaa169539923fba 100644 (file)
@@ -47,27 +47,27 @@ macro(gmx_test_compiler_problems)
         message(WARNING "The versions of the C and C++ compilers do not match (${CMAKE_C_COMPILER_VERSION} and ${CMAKE_CXX_COMPILER_VERSION}, respectively). Mixing different C/C++ compilers can cause problems.")
     endif()
 
         message(WARNING "The versions of the C and C++ compilers do not match (${CMAKE_C_COMPILER_VERSION} and ${CMAKE_CXX_COMPILER_VERSION}, respectively). Mixing different C/C++ compilers can cause problems.")
     endif()
 
-    # Error if compiler doesn't support required C++14 features.
+    # Error if compiler doesn't support required C++17 features.
     # cmake feature detection is currently inconsistent: gitlab.kitware.com/cmake/cmake/issues/18869
     # cmake feature detection is currently inconsistent: gitlab.kitware.com/cmake/cmake/issues/18869
-    # When we use C++17 we might want to switch to using feature test macros.
+    # We might want to switch to using feature test macros some time.
     if(CMAKE_COMPILER_IS_GNUCXX)
     if(CMAKE_COMPILER_IS_GNUCXX)
-        if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5)
-            set(cxx_required_version "GCC version 5")
+        if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7)
+            set(cxx_required_version "GCC version 7")
         endif()
     elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
         if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.15)
             set(cxx_required_version "Visual Studio 2017")
         endif()
     elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
         endif()
     elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
         if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.15)
             set(cxx_required_version "Visual Studio 2017")
         endif()
     elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
-        if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.6) # For feature complete C++14 only 3.4 is needed.
-            set(cxx_required_version "Clang 3.6")        # But prior version have bugs (e.g. debug symbol support)
+        if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5)
+            set(cxx_required_version "Clang 5")
         endif()
     else()
         endif()
     else()
-        message(WARNING "You are using an unsupported compiler. Please make sure it fully supports C++14.")
+        message(WARNING "You are using an unsupported compiler. Please make sure it fully supports C++17.")
     endif()
     if (cxx_required_version)
         message(FATAL_ERROR "${cxx_required_version} or later required. "
     endif()
     if (cxx_required_version)
         message(FATAL_ERROR "${cxx_required_version} or later required. "
-                            "Earlier versions don't have full C++14 support.")
+                            "Earlier versions don't have full C++17 support.")
     endif()
 
     if (CMAKE_CXX_COMPILER_ID MATCHES "Intel")
     endif()
 
     if (CMAKE_CXX_COMPILER_ID MATCHES "Intel")
index 703166eb70af22bd27d21426545f87cd057b0586..728403c7ea67a6857eef53e181118e2094baba8d 100644 (file)
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
-   sodipodi:docname="Gromacs Logo [Blue].svg"
+   sodipodi:docname="gmx_logo_black.svg"
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
    id="defs927">
         
     
    id="defs927">
         
     
@@ -58,8 +58,8 @@
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
-   inkscape:window-width="1853"
-   inkscape:window-height="1145"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
    id="namedview925"
    showgrid="false"
    units="mm"
    id="namedview925"
    showgrid="false"
    units="mm"
@@ -69,7 +69,7 @@
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
-   inkscape:current-layer="g1133"
+   inkscape:current-layer="text915"
    viewbox-width="6349" />
     
 
    viewbox-width="6349" />
     
 
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
-           style="fill:#000000;fill-opacity:1"><text
-   x="-328.33817"
-   y="3852.1226"
+           style="fill:#000000;fill-opacity:1"><g
+   aria-label="GROMACS"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#000000;fill-opacity:1;stroke-width:1.5625"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#000000;fill-opacity:1;stroke-width:1.5625"
-   id="text907"><tspan
+   id="text907"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
-     id="tspan962"
-     dx="0 0.34 -6.75 -2.0699999 2.4099996 -21.060011">GROMACS</tspan></text>
+     id="path931" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path933" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path935" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path937" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path939" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path941" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path943" /></g>
 
 
 
 
-<text
-   x="-255.0177"
-   y="3008.4934"
+<g
+   aria-label="FAST.  FLEXIBLE.  FREE."
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#000000;fill-opacity:1;stroke-width:1.5625"
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#000000;fill-opacity:1;stroke-width:1.5625"
-   id="text915"><tspan
-     id="tspan840"
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
-     dx="-4.2299995">FAST.  FLEXIBLE.  FREE.</tspan><tspan
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1;stroke-width:1.5625"
-     x="-81.250793"
-     y="3008.4934"
-     id="tspan911" /></text>
+   id="text915"><path
+     d="m -193.51284,2779.0623 v 95.9472 h 143.920902 v 28.9307 H -193.51284 v 104.5532 h -34.97314 v -257.9956 h 183.288573 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path946" /><path
+     d="M 163.17662,3008.4934 133.69664,2933.054 H 16.142929 l -29.663086,75.4394 H -49.77504 L 55.510605,2750.4978 h 39.733887 l 103.637698,257.9956 z m -88.256835,-231.6284 -1.64795,5.1269 q -4.577636,15.1978 -13.549804,39.0015 l -32.958985,84.7778 h 96.496584 l -33.142092,-85.144 q -5.126953,-12.6343 -10.253906,-28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path948" /><path
+     d="m 432.89096,2937.2654 q 0,35.7055 -28.01514,55.2978 -27.83203,19.5923 -78.55224,19.5923 -94.29932,0 -109.31397,-65.5517 l 33.87451,-6.7749 q 5.85938,23.2544 24.90235,34.2407 19.04297,10.8032 51.81885,10.8032 33.87451,0 52.18505,-11.5356 18.49366,-11.7188 18.49366,-34.2408 0,-12.6342 -5.85938,-20.5078 -5.67627,-7.8735 -16.11328,-13.0005 -10.43701,-5.1269 -24.90234,-8.6059 -14.46533,-3.479 -32.04346,-7.5073 -30.57861,-6.7749 -46.50879,-13.5499 -15.74707,-6.7749 -24.90234,-15.0146 -9.15528,-8.4229 -14.09912,-19.5923 -4.76075,-11.1694 -4.76075,-25.6348 0,-33.142 25.26856,-51.0864 25.45166,-17.9443 72.69287,-17.9443 43.94531,0 67.19971,13.5498 23.25439,13.3667 32.59277,45.7764 l -34.42383,6.0424 q -5.67627,-20.5078 -21.60644,-29.663 -15.93018,-9.3384 -44.12842,-9.3384 -30.94483,0 -47.24121,10.2539 -16.29639,10.2539 -16.29639,30.5786 0,11.9019 6.22559,19.7754 6.40869,7.6904 18.31054,13.1836 11.90186,5.31 47.42432,13.1836 11.90186,2.7466 23.62061,5.6762 11.90185,2.7466 22.70507,6.7749 10.80323,3.8453 20.14161,9.1553 9.52148,5.3101 16.47949,13.0005 6.95801,7.6904 10.80322,18.1274 4.02832,10.4371 4.02832,24.5362 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path950" /><path
+     d="m 582.30505,2779.0623 v 229.4311 h -34.79004 v -229.4311 h -88.62304 v -28.5645 H 670.9281 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path952" /><path
+     d="m 672.20984,3008.4934 v -40.1001 h 35.70557 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path954" /><path
+     d="m 1015.6957,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.97317 v -257.9956 h 183.28857 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path956" /><path
+     d="m 1209.9706,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path958" /><path
+     d="m 1418.7108,3008.4934 v -257.9956 h 195.7398 v 28.5645 H 1453.684 v 82.7636 h 149.7802 v 28.1983 H 1453.684 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path960" /><path
+     d="m 1842.0507,3008.4934 -77.4537,-112.793 -79.1015,112.793 h -38.6353 l 98.1446,-134.0332 -90.6372,-123.9624 h 38.6352 l 71.7774,101.2573 69.7631,-101.2573 h 38.6353 l -88.2568,122.6807 95.7641,135.3149 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path962" /><path
+     d="m 1923.5326,3008.4934 v -257.9956 h 34.9731 v 257.9956 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path964" /><path
+     d="m 2223.2762,2935.8005 q 0,34.4239 -25.0854,53.6499 -25.0855,19.043 -69.7632,19.043 h -104.7363 v -257.9956 h 93.75 q 90.8203,0 90.8203,62.6221 0,22.8882 -12.8174,38.4521 -12.8174,15.564 -36.2549,20.874 30.7617,3.6622 47.4243,20.691 16.6626,16.8457 16.6626,42.6635 z m -50.1709,-118.4692 q 0,-20.874 -14.2822,-29.8462 -14.2822,-8.9722 -41.3818,-8.9722 h -58.7769 v 81.6651 h 58.7769 q 28.0151,0 41.748,-10.437 13.916,-10.6202 13.916,-32.4097 z m 14.8316,115.7227 q 0,-45.5933 -64.0869,-45.5933 h -65.1856 v 93.0176 h 67.9322 q 32.0434,0 46.6919,-11.9019 14.6484,-11.9018 14.6484,-35.5224 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path966" /><path
+     d="m 2274.1796,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path968" /><path
+     d="m 2482.9198,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path970" /><path
+     d="m 2736.8871,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path972" /><path
+     d="m 3080.3729,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.9731 v -257.9956 h 183.2886 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path974" /><path
+     d="m 3457.0209,3008.4934 -67.0166,-107.1167 h -80.3833 v 107.1167 h -34.9732 v -257.9956 h 121.399 q 43.5791,0 67.1997,19.5923 23.8037,19.4092 23.8037,54.1992 0,28.7476 -16.8457,48.3399 -16.6626,19.5922 -46.1426,24.7192 l 73.2422,111.145 z m -5.127,-183.8379 q 0,-22.522 -15.3808,-34.2407 -15.1978,-11.9019 -43.9454,-11.9019 h -82.9467 v 95.2149 h 84.4116 q 27.6489,0 42.6636,-12.8174 15.1977,-13.0005 15.1977,-36.2549 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path976" /><path
+     d="m 3545.6439,3008.4934 v -257.9956 h 195.7398 v 28.5645 h -160.7666 v 82.7636 h 149.7802 v 28.1983 h -149.7802 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path978" /><path
+     d="m 3796.1322,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path980" /><path
+     d="m 4050.0995,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#000000;fill-opacity:1"
+     id="path982" /></g>
 
 
 </g></g></g></g><path
 
 
 </g></g></g></g><path
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.eps b/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.eps
new file mode 100644 (file)
index 0000000..865f265
--- /dev/null
@@ -0,0 +1,264 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: cairo 1.15.10 (http://cairographics.org)
+%%CreationDate: Fri Feb  5 13:53:43 2021
+%%Pages: 1
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 2
+%%BoundingBox: 0 0 4701 1048
+%%EndComments
+%%BeginProlog
+50 dict begin
+/q { gsave } bind def
+/Q { grestore } bind def
+/cm { 6 array astore concat } bind def
+/w { setlinewidth } bind def
+/J { setlinecap } bind def
+/j { setlinejoin } bind def
+/M { setmiterlimit } bind def
+/d { setdash } bind def
+/m { moveto } bind def
+/l { lineto } bind def
+/c { curveto } bind def
+/h { closepath } bind def
+/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
+      0 exch rlineto 0 rlineto closepath } bind def
+/S { stroke } bind def
+/f { fill } bind def
+/f* { eofill } bind def
+/n { newpath } bind def
+/W { clip } bind def
+/W* { eoclip } bind def
+/BT { } bind def
+/ET { } bind def
+/BDC { mark 3 1 roll /BDC pdfmark } bind def
+/EMC { mark /EMC pdfmark } bind def
+/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
+/Tj { show currentpoint cairo_store_point } bind def
+/TJ {
+  {
+    dup
+    type /stringtype eq
+    { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
+  } forall
+  currentpoint cairo_store_point
+} bind def
+/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
+    cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
+/Tf { pop /cairo_font exch def /cairo_font_matrix where
+      { pop cairo_selectfont } if } bind def
+/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
+      /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
+      /cairo_font where { pop cairo_selectfont } if } bind def
+/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
+      cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
+/g { setgray } bind def
+/rg { setrgbcolor } bind def
+/d1 { setcachedevice } bind def
+/cairo_data_source {
+  CairoDataIndex CairoData length lt
+    { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
+    { () } ifelse
+} def
+/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
+/cairo_image { image cairo_flush_ascii85_file } def
+/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
+%%EndProlog
+%%BeginSetup
+%%EndSetup
+%%Page: 1 1
+%%BeginPageSetup
+%%PageBoundingBox: 0 0 4701 1048
+%%EndPageSetup
+q 0 0 4701 1048 rectclip
+1 0 0 -1 0 1048 cm q
+0 g
+3465.055 9.125 m 3450.293 11.273 3433.652 13.211 3425.105 18.48 c 3416.434
+ 24.734 3418.387 31.914 3420.402 33.629 c 3421.812 35.012 3425.969 37.199
+ 3426.445 40.328 c 3426.117 46.234 3401.551 43.805 3388.031 48.086 c 3382.422
+ 50.008 3378.117 54 3377.883 58.012 c 3378.293 64.09 3382.098 65.129 3386.18
+ 67.285 c 3396.148 72.391 3406.527 75.836 3414.777 81.195 c 3418.77 83.43
+ 3422.633 85.973 3428.414 88.879 c 3455.734 102.402 3488.824 113.863 3498.219
+ 118.574 c 3608.875 174.316 3723.594 230.062 3830.684 274.066 c 3889.926
+ 336.961 3958.648 397.816 4010.109 459.332 c 3990.027 501.383 3971.188 533.914
+ 3947.23 575.191 c 3928.84 605.875 3915.73 625.902 3901.93 647.316 c 3877.262
+ 686.25 3849.855 715.234 3828.82 754.746 c 3823.762 763.102 3821.367 771.406
+ 3821.105 779.723 c 3822.227 800.453 3863.594 827.047 3867.348 828.039 c
+ 3879.543 830.902 3891.223 822.957 3901.262 815.238 c 3928.676 786.719 3952.43
+ 748.609 3987.098 715.453 c 4005.527 698.102 4022.125 681.504 4045.543 660.27
+ c 4073.699 633.812 4093.73 611.801 4116.941 586.766 c 4131.504 573.105 
+4141.703 574.238 4143.199 573.918 c 4205.379 592.969 4255.547 620.648 4292.754
+ 654.422 c 4390.289 752.816 4460.066 850.652 4549.992 939.227 c 4564.273
+ 953.91 4577.004 962.734 4588.293 974.25 c 4604.551 995.16 l 4607.539 998.793
+ 4616.824 1007.531 4619.492 1000.617 c 4634.734 1011.055 4641.051 1022.699
+ 4649.906 1032.961 c 4658.535 1043.348 4662.375 1047.816 4667.172 1047.41
+ c 4671.855 1046.309 4673.719 1036.797 4673.305 1030.699 c 4670.805 1011.918
+ 4668.758 1006.359 4670.02 1005.105 c 4672.082 1004.211 4678.762 1020.734
+ 4698.988 1015.562 c 4703.586 1011.824 4695.965 988.203 4685.254 930.434
+ c 4646.41 759.664 4592.359 588.344 4514.637 438.555 c 4506.766 422.719 
+4497.777 409.551 4486.781 401.172 c 4462.207 378.012 4436.414 361.98 4410.695
+ 345.504 c 4397.195 336.023 4382.473 327.078 4370.395 316.977 c 4358.844
+ 306.605 4358.27 287.988 4362.891 272.504 c 4366.121 259.898 4373.078 242
+ 4374.422 236.422 c 4377.902 216.129 4376.48 213.852 4376.277 196.027 c 
+4375.895 188.941 4374.93 185.273 4377.199 179.766 c 4380.484 176.336 4385.195
+ 175.391 4390.355 176.965 c 4397.316 180.469 4400.668 179.809 4401.387 177.945
+ c 4395.5 156.195 4359.383 140.551 4340.355 145.312 c 4327.785 143.086 4311.93
+ 144.918 4300.512 147.887 c 4279.191 154.371 4263.398 160.848 4246.551 169.742
+ c 4232.109 179.008 4220.188 187.75 4199.887 185.805 c 4183.695 184.004 
+4175.203 178.746 4167.438 170.934 c 4123.793 131.426 4094.254 79.008 4049.418
+ 49.449 c 3845.309 0.281 3661.098 -10.223 3465.055 9.125 c h
+3670.645 53.055 m 3795.164 37.508 3923.379 34.953 4036.156 70.844 c 4069.793
+ 107.27 4092.004 146.195 4119.984 186.371 c 4132.449 209.375 4140.402 224.684
+ 4130.656 247.082 c 4097.156 299.371 4060.645 362.266 4029.332 421.742 c
+ 4031.16 448.129 3894.465 273.773 3855.832 251.336 c 3738.211 184.465 3727.863
+ 198.32 3551.062 92.375 c 3540.762 85.066 3531.023 73.16 3585.27 65.582 
+c 3613.375 60.922 3641.91 56.641 3670.645 53.055 c h
+4347.402 152.98 m 4352.137 152.438 4360.316 152.887 4370.301 159.762 c 
+4366.344 164.121 4367.684 168.887 4368.871 173.762 c 4357.945 169.086 4346.594
+ 179.789 4329.84 182.688 c 4344.395 177.453 4350.684 168.379 4343.879 153.648
+ c 4344.633 153.449 4345.824 153.16 4347.402 152.98 c h
+4315.352 163.656 m 4320.762 164.152 4318.867 163.891 4322.645 166.102 c
+ 4317.66 175.434 4312.566 180.43 4303.488 179.809 c 4295.91 179.27 4293.297
+ 175.594 4288.156 170.004 c 4294.855 168.363 l 4301.602 182.883 4316.418
+ 176.355 4316.746 168.688 c 4316.184 164.754 4315.352 163.656 4315.352 163.656
+ c h
+4254.27 193.879 m 4266.402 192.234 4282.297 211.16 4278.59 224.801 c 4301.738
+ 238.797 4312.414 219.336 4325.062 208.711 c 4351.191 189.797 4358.68 190.875
+ 4368.047 191.164 c 4369.887 212.176 4367.77 234.273 4355.426 265.41 c 4338.766
+ 349.984 4303.066 385.18 4266.434 423.711 c 4192.148 503.379 4115.055 577.391
+ 4027.879 644.027 c 4009.336 656.922 3994.922 664.566 3977.91 658.414 c 
+3976.383 632.145 3983.688 608.27 3993.594 580.594 c 4013.66 533.492 4034.09
+ 489.188 4051.266 439.543 c 4095.852 333.625 4134.996 290.211 4175.363 246.379
+ c 4196.582 227.762 4203.176 220.391 4210.148 219.617 c 4218.496 229.328
+ 4245.633 233.375 4248.102 229.441 c 4242.516 227.711 4241.859 225.223 4241.52
+ 220.629 c 4241.84 202.195 4247.461 194.801 4254.27 193.879 c h
+4379.727 379.082 m 4401.531 385.883 4443.422 412.762 4485.98 430.16 c 4580.234
+ 584.207 4608.699 787.82 4613.094 896.82 c 4612.996 931.465 4608.836 925.938
+ 4597.359 919.992 c 4471.098 836.961 4397.582 704.348 4301.871 615.004 c
+ 4242.805 580.336 4178.586 568.133 4162.141 550.992 c 4258.262 468.375 4331.793
+ 399.969 4379.727 379.082 c h
+3993.055 542.641 m 3996.859 542.328 3991.555 555.164 3989.352 560.371 c
+ 3976.516 588.23 3970.473 620.066 3962.164 649.41 c 3956.664 666.066 3948.27
+ 672.152 3940.02 671.133 c 3930.594 669.273 3915.633 656.711 3922.422 643.066
+ c 3942.488 612.68 3958.805 576.738 3985.762 548.105 c 3989.508 544.309 
+3991.785 542.746 3993.055 542.641 c h
+4022.73 660.77 m 4032.062 659.609 3984.211 702.137 3972.34 707.523 c 3956.879
+ 693.508 3991.352 676.922 4002.906 671.516 c 4014.262 664.203 4020.352 661.066
+ 4022.73 660.77 c h
+3893.945 680.547 m 3898.848 694.219 3911.172 699.617 3919.098 704.059 c
+ 3914.328 710.293 3911.035 714.387 3905.727 719 c 3896.082 713.773 3887.434
+ 710.395 3881.59 699.195 c 3885.82 691.184 3888.852 686.738 3893.945 680.547
+ c h
+3866.734 721.637 m 3871.781 728.887 3880.223 737.324 3888.219 740.934 c
+ 3885.238 745.434 3882.02 750.316 3877.516 754.051 c 3868.508 750.629 3859.199
+ 741.805 3855.41 736.234 c 3858.926 729.598 3863.621 723.719 3866.734 721.637
+ c h
+3938.516 719.242 m 3944.262 730.316 3950.859 732.301 3955.133 734.891 c
+ 3952.719 738.219 3950.957 741.941 3943.617 747.062 c 3939.691 746.27 3930.574
+ 738.715 3927.707 731.863 c 3932.227 725.055 3934.148 723.871 3938.516 719.242
+ c h
+3907.461 755.758 m 3911.207 763.113 3916.117 768.57 3923.555 771.203 c 
+3920.574 777.344 3918.219 779.379 3913.789 782.43 c 3911.066 780.727 3904.5
+ 777.25 3897.555 767.922 c 3901.664 761.984 3903.648 760.07 3907.461 755.758
+ c h
+3833.98 774.105 m 3843.816 791.246 3861.914 800.875 3877.996 814.586 c 
+3875.957 816.117 3875.727 820.855 3872.051 821.375 c 3857.012 813.703 3840.457
+ 802.004 3828.742 782.973 c 3830.887 778.852 3831.027 777.703 3833.98 774.105
+ c h
+3833.98 774.105 m f*
+4354.719 158.613 m 4354.777 157.656 4355.234 154.953 4356.859 155.426 c
+ 4358.621 156.633 4359.754 158.504 4360.25 161.543 c 4360.426 163.062 4360.441
+ 164.324 4358.234 162.617 c 4357.086 161.57 4356.676 161.367 4354.719 158.613
+ c h
+4354.719 158.613 m f*
+256.359 747.457 m 283.582 747.457 309.977 743.551 335.539 735.738 c 361.105
+ 727.691 380.871 717.512 394.836 705.203 c 394.836 635.965 l 272.691 635.965
+ l 272.691 558.559 l 490.703 558.559 l 490.703 742.484 l 464.191 769.707
+ 429.633 791.012 387.023 806.398 c 344.652 821.785 300.152 829.477 253.52
+ 829.477 c 172.09 829.477 109.48 806.988 65.688 762.012 c 21.895 716.801
+ 0 652.77 0 569.922 c 0 487.547 22.016 424.461 66.043 380.668 c 110.07 336.641
+ 173.391 314.629 256.004 314.629 c 373.414 314.629 448.098 358.062 480.055
+ 444.938 c 383.473 474.055 l 373.059 448.727 356.727 429.551 334.477 416.531
+ c 312.223 403.512 286.066 397.004 256.004 397.004 c 206.77 397.004 169.367
+ 411.914 143.805 441.742 c 118.238 471.566 105.457 514.293 105.457 569.922
+ c 105.457 626.496 118.594 670.289 144.867 701.297 c 171.379 732.07 208.543
+ 747.457 256.359 747.457 c h
+256.359 747.457 m f*
+928.059 822.375 m 811.949 632.414 l 689.098 632.414 l 689.098 822.375 l
+ 584.352 822.375 l 584.352 322.082 l 834.32 322.082 l 893.973 322.082 940.012
+ 334.984 972.441 360.785 c 1004.871 386.352 1021.086 423.16 1021.086 471.211
+ c 1021.086 506.246 1011.145 536.547 991.262 562.109 c 971.375 587.438 944.512
+ 604.125 910.66 612.176 c 1045.941 822.375 l h
+915.633 475.473 m 915.633 427.422 884.859 403.395 823.312 403.395 c 689.098
+ 403.395 l 689.098 551.102 l 826.152 551.102 l 855.508 551.102 877.758 544.477
+ 892.906 531.219 c 908.055 517.965 915.633 499.383 915.633 475.473 c h
+915.633 475.473 m f*
+1591.062 569.922 m 1591.062 622 1580.766 667.801 1560.172 707.332 c 1539.578
+ 746.863 1510.105 777.164 1471.758 798.23 c 1433.41 819.062 1388.672 829.477
+ 1337.543 829.477 c 1258.953 829.477 1197.289 806.398 1152.551 760.238 c
+ 1108.051 713.844 1085.801 650.402 1085.801 569.922 c 1085.801 489.676 1108.051
+ 427.066 1152.551 382.09 c 1197.055 337.113 1258.953 314.629 1338.254 314.629
+ c 1417.551 314.629 1479.453 337.352 1523.953 382.801 c 1568.691 428.25 
+1591.062 490.621 1591.062 569.922 c h
+1484.188 569.922 m 1484.188 515.949 1471.402 473.699 1445.84 443.16 c 1420.273
+ 412.391 1384.414 397.004 1338.254 397.004 c 1291.383 397.004 1255.168 412.27
+ 1229.602 442.809 c 1204.039 473.105 1191.254 515.477 1191.254 569.922 c
+ 1191.254 624.84 1204.273 668.156 1230.312 699.875 c 1256.586 731.359 1292.332
+ 747.102 1337.543 747.102 c 1384.414 747.102 1420.512 731.715 1445.84 700.941
+ c 1471.402 670.168 1484.188 626.496 1484.188 569.922 c h
+1484.188 569.922 m f*
+2083.711 822.375 m 2083.711 519.148 l 2083.711 512.281 2083.711 505.418
+ 2083.711 498.551 c 2083.949 491.688 2085.133 462.219 2087.262 410.141 c
+ 2070.457 473.816 2058.027 518.199 2049.98 543.293 c 1959.793 822.375 l 
+1885.23 822.375 l 1795.043 543.293 l 1757.051 410.141 l 1759.891 465.059
+ 1761.309 501.395 1761.309 519.148 c 1761.309 822.375 l 1668.281 822.375
+ l 1668.281 322.082 l 1808.535 322.082 l 1898.012 601.879 l 1905.824 628.863
+ l 1922.867 695.973 l 1945.234 615.727 l 2037.199 322.082 l 2176.742 322.082
+ l 2176.742 822.375 l h
+2083.711 822.375 m f*
+2630.258 822.375 m 2585.875 694.551 l 2395.203 694.551 l 2350.816 822.375
+ l 2246.074 822.375 l 2428.578 322.082 l 2552.141 322.082 l 2733.938 822.375
+ l h
+2490.359 399.133 m 2488.23 406.945 l 2485.863 415.465 2483.023 425.172 
+2479.707 436.062 c 2476.395 446.949 2456.035 506.836 2418.637 615.727 c 
+2562.438 615.727 l 2513.086 471.922 l 2497.816 423.633 l h
+2490.359 399.133 m f*
+3019.41 747.102 m 3082.613 747.102 3126.523 715.383 3151.141 651.941 c 
+3242.395 686.383 l 3222.746 734.672 3193.867 770.652 3155.758 794.324 c 
+3117.883 817.758 3072.434 829.477 3019.41 829.477 c 2938.93 829.477 2876.672
+ 806.754 2832.645 761.305 c 2788.852 715.617 2766.957 651.824 2766.957 569.922
+ c 2766.957 487.781 2788.141 424.699 2830.516 380.668 c 2872.887 336.641
+ 2934.312 314.629 3014.793 314.629 c 3073.5 314.629 3121.316 326.461 3158.242
+ 350.133 c 3195.168 373.57 3221.09 408.129 3236.004 453.812 c 3143.684 479.023
+ l 3135.871 453.934 3120.488 434.047 3097.527 419.371 c 3074.801 404.461
+ 3047.934 397.004 3016.926 397.004 c 2969.582 397.004 2933.602 411.68 2908.984
+ 441.031 c 2884.602 470.383 2872.41 513.348 2872.41 569.922 c 2872.41 627.441
+ 2884.957 671.352 2910.051 701.652 c 2935.379 731.953 2971.832 747.102 3019.41
+ 747.102 c h
+3019.41 747.102 m f*
+3719.25 678.219 m 3719.25 727.219 3701.023 764.734 3664.57 790.773 c 3628.352
+ 816.574 3575.094 829.477 3504.789 829.477 c 3440.641 829.477 3390.34 818.113
+ 3353.887 795.391 c 3317.43 772.664 3293.996 738.223 3283.582 692.066 c 
+3384.777 675.375 l 3391.641 701.891 3405.016 721.18 3424.898 733.254 c 3444.781
+ 745.09 3472.359 751.008 3507.629 751.008 c 3580.773 751.008 3617.348 728.754
+ 3617.348 684.254 c 3617.348 670.051 3613.086 658.332 3604.562 649.102 c
+ 3596.277 639.871 3584.441 632.176 3569.059 626.023 c 3553.906 619.867 3524.672
+ 612.41 3481.355 603.652 c 3443.953 594.895 3417.918 587.91 3403.238 582.703
+ c 3388.562 577.258 3375.309 570.988 3363.473 563.887 c 3351.637 556.547
+ 3341.578 547.789 3333.293 537.609 c 3325.008 527.43 3318.496 515.477 3313.762
+ 501.75 c 3309.266 488.02 3307.016 472.277 3307.016 454.523 c 3307.016 409.312
+ 3323.941 374.754 3357.793 350.844 c 3391.879 326.699 3441.352 314.629 3506.211
+ 314.629 c 3568.227 314.629 3614.742 324.332 3645.75 343.742 c 3676.996 
+363.152 3697.117 395.227 3706.113 439.965 c 3604.562 453.812 l 3599.355 
+432.273 3588.703 416.059 3572.609 405.168 c 3556.746 394.281 3533.906 388.836
+ 3504.078 388.836 c 3440.641 388.836 3408.922 408.719 3408.922 448.488 c
+ 3408.922 461.508 3412.234 472.16 3418.863 480.445 c 3425.727 488.73 3435.789
+ 495.832 3449.043 501.75 c 3462.301 507.43 3489.168 514.648 3529.645 523.406
+ c 3577.695 533.586 3612.02 543.055 3632.613 551.812 c 3653.445 560.336 
+3669.895 570.395 3681.969 581.992 c 3694.043 593.355 3703.273 607.086 3709.664
+ 623.184 c 3716.055 639.043 3719.25 657.387 3719.25 678.219 c h
+3719.25 678.219 m f*
+Q Q
+showpage
+%%Trailer
+end
+%%EOF
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.png b/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.png
new file mode 100644 (file)
index 0000000..5cf575a
Binary files /dev/null and b/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.png differ
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.svg b/docs/reference-manual/plots/GMX_logos/gmx_logo_black_no_slogan.svg
new file mode 100644 (file)
index 0000000..d63ca11
--- /dev/null
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="100%"
+   height="100%"
+   viewBox="0 0 6349 1603"
+   version="1.1"
+   xml:space="preserve"
+   style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
+   id="svg923"
+   sodipodi:docname="gmx_logo_blue_no_slogan.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"><metadata
+   id="metadata929"><rdf:RDF><cc:Work
+       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+   id="defs927">
+        
+    
+            
+            
+            
+        
+                
+            
+                
+
+
+            
+
+
+
+
+
+<inkscape:path-effect
+   is_visible="true"
+   id="path-effect1061"
+   effect="spiro" /><clipPath
+   id="_clip1-3"><rect
+     x="0"
+     y="0"
+     width="291.98801"
+     height="550.58301"
+     id="rect892-6" /></clipPath></defs><sodipodi:namedview
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1"
+   objecttolerance="10"
+   gridtolerance="10"
+   guidetolerance="10"
+   inkscape:pageopacity="0"
+   inkscape:pageshadow="2"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
+   id="namedview925"
+   showgrid="false"
+   units="mm"
+   inkscape:zoom="0.1767767"
+   inkscape:cx="3630.5994"
+   inkscape:cy="590.32396"
+   inkscape:window-x="67"
+   inkscape:window-y="27"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="g1133"
+   viewbox-width="6349" />
+    
+
+<g
+   id="g1835"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo3.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"
+   transform="translate(107.48023,33.941125)"><g
+     transform="matrix(3.7513483,-0.46066696,0.46066696,3.7513483,4198.3338,3197.8407)"
+     id="layer1"
+     style="fill:none;fill-opacity:1;stroke:none"><g
+       style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round;stroke-miterlimit:2"
+       id="g903-7"
+       transform="matrix(0.82454635,-0.51053871,0.49150293,0.84357369,250.14362,56.767957)"><g
+         style="fill:none;fill-opacity:1;stroke:none"
+         id="g901-5"
+         transform="translate(-145.994,-275.291)"><clipPath
+           id="clipPath1706"><rect
+             id="rect1704"
+             height="550.58301"
+             width="291.98801"
+             y="0"
+             x="0" /></clipPath><g
+           style="fill:none;fill-opacity:1;stroke:none"
+           id="g899-3"
+           clip-path="url(#_clip1-3)"><g
+             style="fill:none;fill-opacity:1;stroke:none"
+             id="g897-5"
+             transform="matrix(1,0,0,-1,0,555.789)" /></g></g></g></g><g
+     id="g1146"
+     transform="translate(-208,-112)"><g
+       transform="translate(-24.46945,-27.842525)"
+       id="g1133"><g
+         id="g862"
+         transform="translate(401.67524,-2396.4028)"
+         style="fill:#000000;fill-opacity:1"
+         inkscape:export-xdpi="300"
+         inkscape:export-ydpi="300"><g
+           transform="matrix(1.0382229,0,0,1.0382229,-256.39873,-329.7037)"
+           id="g1066"
+           style="fill:#000000;fill-opacity:1"><path
+             inkscape:connector-curvature="0"
+             style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24566934;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+             d="m 4472.724,2839.028 c -18.9578,2.7624 -40.3248,5.2475 -51.3026,12.0164 -11.1396,8.0334 -8.6273,17.2529 -6.0392,19.4534 1.809,1.7786 7.1445,4.5875 7.7607,8.6026 -0.4228,7.5868 -31.9734,4.4681 -49.3367,9.9666 -7.2041,2.4668 -12.7316,7.5949 -13.03,12.7457 0.5245,7.8067 5.4123,9.1408 10.6558,11.9072 12.7997,6.5604 26.1289,10.9848 36.7265,17.8638 5.1267,2.8708 10.0857,6.1364 17.5131,9.8687 35.0857,17.3692 77.5793,32.0888 89.6427,38.1355 142.1092,71.5868 289.4364,143.1806 426.9703,199.6938 76.0785,80.7698 164.3367,158.9248 230.4266,237.9267 -25.7919,53.9994 -49.985,95.7775 -80.7537,148.7919 -23.6163,39.4046 -40.4556,65.1229 -58.1793,92.6255 -31.679,49.9972 -66.8743,87.2218 -93.8903,137.9627 -6.4954,10.7344 -9.5722,21.3976 -9.9044,32.0771 1.4363,26.6251 54.5642,60.7762 59.3845,62.0488 15.6641,3.6803 30.6604,-6.5234 43.5538,-16.4369 35.2082,-36.6242 65.7142,-85.5701 110.2334,-128.1511 23.6708,-22.2813 44.9846,-43.5978 75.0608,-70.8665 36.1568,-33.9801 61.8854,-62.2483 91.6934,-94.3994 18.7019,-17.5404 31.7963,-16.0871 33.719,-16.4985 79.854,24.4679 144.2844,60.0159 192.0664,103.3863 125.2565,126.3629 214.8693,252.0078 330.3562,365.7604 18.3417,18.8579 34.6897,30.1905 49.189,44.9806 l 20.8798,26.8525 c 3.8362,4.6637 15.7584,15.8848 19.1887,7.0084 19.5715,13.4021 27.6858,28.3576 39.057,41.5375 11.0806,13.3361 16.0149,19.075 22.175,18.5548 6.0156,-1.414 8.406,-13.6293 7.8728,-21.4595 -3.2094,-24.1228 -5.8358,-31.2602 -4.2192,-32.8675 2.6505,-1.1501 11.231,20.0703 37.2069,13.4264 5.9021,-4.801 -3.8849,-35.1376 -17.6422,-109.3249 -49.8812,-219.313 -119.2973,-439.3267 -219.1139,-631.6945 -10.1075,-20.3354 -21.6503,-37.2484 -35.7724,-48.0076 -31.5595,-29.743 -64.6838,-50.3313 -97.71,-71.4928 -17.3384,-12.1743 -36.2474,-23.6602 -51.7595,-36.6363 -14.8342,-13.3173 -15.5681,-37.2282 -9.6343,-57.1109 4.1461,-16.1885 13.0799,-39.1769 14.8082,-46.3379 4.4695,-26.0616 2.6444,-28.9902 2.3838,-51.8805 -0.4952,-9.0998 -1.734,-13.8082 1.1824,-20.8818 4.2196,-4.4031 10.2684,-5.6178 16.8947,-3.5958 8.9415,4.4959 13.2466,3.6501 14.1668,1.2553 -7.5576,-27.932 -53.942,-48.0228 -78.3797,-41.9076 -16.1437,-2.8597 -36.5044,-0.5062 -51.168,3.3062 -27.38,8.3304 -47.6638,16.6447 -69.2986,28.0698 -18.5469,11.8969 -33.859,23.1233 -59.9307,20.6264 -20.7896,-2.3142 -31.6988,-9.0623 -41.6715,-19.0965 -56.0504,-50.7396 -93.9825,-118.0556 -151.5659,-156.0158 -262.1276,-63.1428 -498.6955,-76.6351 -750.4662,-51.7887 z m 264.0305,56.417 c 159.9113,-19.9667 324.5729,-23.2472 469.4073,22.8454 43.1939,46.7812 71.7193,96.7697 107.654,148.3676 16.0067,29.5418 26.2196,49.2028 13.7029,77.9678 -43.0219,67.1498 -89.9084,147.925 -130.1207,224.3075 2.3444,33.8873 -173.2045,-190.0312 -222.8195,-218.8444 -151.0521,-85.8808 -164.3419,-68.086 -391.3982,-204.1467 -13.2274,-9.3868 -25.7352,-24.6771 43.9285,-34.4096 36.0945,-5.9832 72.7431,-11.4799 109.6457,-16.0876 z m 869.1232,128.3286 c 6.0803,-0.6956 16.5846,-0.1211 29.4077,8.7091 -5.0815,5.5993 -3.3648,11.7192 -1.8377,17.9811 -14.0341,-6.0056 -28.6087,7.7408 -50.1267,11.4647 18.6917,-6.7253 26.7702,-18.3786 18.0302,-37.2941 0.9662,-0.2556 2.4998,-0.629 4.5265,-0.8608 z m -41.1628,13.7131 c 6.9488,0.6361 4.5155,0.3006 9.3643,3.1379 -6.3991,11.9879 -12.9412,18.4014 -24.6018,17.6064 -9.7285,-0.6954 -13.0845,-5.4165 -19.6897,-12.5944 l 8.6041,-2.1074 c 8.666,18.6462 27.6935,10.266 28.1142,0.4182 -0.721,-5.051 -1.7911,-6.4607 -1.7911,-6.4607 z m -78.4439,38.8134 c 15.5839,-2.1115 35.9956,22.192 31.2327,39.708 29.7288,17.9783 43.4401,-7.0169 59.6827,-20.6609 33.5569,-24.2906 43.1726,-22.9036 55.2037,-22.5371 2.3616,26.9868 -0.3589,55.3656 -16.2096,95.3546 -21.3966,108.611 -67.2419,153.814 -114.2861,203.297 -95.4006,102.3124 -194.4115,197.3584 -306.3666,282.9392 -23.814,16.5585 -42.3253,26.3784 -64.1697,18.4767 -1.9597,-33.7382 7.4207,-64.4014 20.1406,-99.9422 25.769,-60.4901 52.0083,-117.3891 74.0673,-181.1438 57.2573,-136.022 107.5282,-191.7775 159.3703,-248.0693 27.2496,-23.9096 35.7193,-33.3759 44.6733,-34.3692 10.7218,12.4703 45.5714,17.6662 48.7409,12.6162 -7.1769,-2.2219 -8.0167,-5.4195 -8.452,-11.316 0.4076,-23.6723 7.6303,-33.1687 16.3725,-34.3532 z m 161.1188,237.8463 c 28.0024,8.7342 81.7988,43.2495 136.4539,65.5957 121.0474,197.8343 157.6045,459.3213 163.2438,599.3057 -0.1232,44.4924 -5.4683,37.3925 -20.2029,29.7605 -162.1516,-106.6331 -256.5636,-276.941 -379.4814,-391.6809 -75.8563,-44.5235 -158.3274,-60.1941 -179.4496,-82.2076 123.4449,-106.0988 217.8761,-193.9501 279.4362,-220.7734 z m -496.583,210.049 c 4.885,-0.4003 -1.9247,16.0829 -4.7542,22.7708 -16.4841,35.7763 -24.246,76.6615 -34.9148,114.3483 -7.0672,21.3877 -17.8468,29.2058 -28.4427,27.8974 -12.1031,-2.3877 -31.3177,-18.522 -22.597,-36.0457 25.7669,-39.0258 46.7247,-85.1813 81.3436,-121.9547 4.8078,-4.8737 7.7367,-6.8826 9.3651,-7.0161 z m 38.113,151.7084 c 11.9834,-1.4948 -49.4683,53.1241 -64.7175,60.0388 -19.8565,-17.9957 24.4173,-39.2974 39.2585,-46.2391 14.5789,-9.3925 22.4044,-13.4187 25.459,-13.7997 z m -165.3916,25.3968 c 6.2934,17.5559 22.1194,24.4918 32.2983,30.1967 -6.1257,8.0037 -10.354,13.264 -17.1683,19.1868 -12.387,-6.7117 -23.4968,-11.0497 -30.9995,-25.4367 5.4321,-10.2873 9.3252,-15.998 15.8695,-23.9468 z m -34.948,52.7684 c 6.4811,9.3107 17.3246,20.1472 27.5938,24.7844 -3.8276,5.7796 -7.9643,12.0472 -13.7468,16.844 -11.5716,-4.3951 -23.5249,-15.7268 -28.3888,-22.8783 4.5122,-8.5268 10.5423,-16.0767 14.5418,-18.7501 z m 92.1855,-3.0753 c 7.3777,14.2244 15.8534,16.7713 21.3392,20.0977 -3.0992,4.2721 -5.3618,9.0567 -14.7873,15.6298 -5.0433,-1.0176 -16.7497,-10.7206 -20.4317,-19.5184 5.8006,-8.7454 8.2719,-10.266 13.8798,-16.2091 z m -39.8805,46.894 c 4.8069,9.4466 11.117,16.4588 20.6656,19.8361 -3.8242,7.8868 -6.8513,10.4991 -12.5394,14.4171 -3.4977,-2.1856 -11.9327,-6.6504 -20.8518,-18.6286 5.2785,-7.6273 7.8258,-10.0848 12.7256,-15.6246 z m -94.3688,23.5625 c 12.6327,22.0171 35.8732,34.3814 56.5276,51.9881 -2.6202,1.9653 -2.9157,8.0504 -7.6367,8.7204 -19.313,-9.8515 -40.5709,-24.8798 -55.6173,-49.3193 2.7544,-5.2895 2.9364,-6.7685 6.7264,-11.3892 z"
+             id="rect1188" /><path
+             inkscape:connector-curvature="0"
+             style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
+             id="path1103-2" /></g><g
+           id="g1073"
+           transform="matrix(1.0342128,0,0,1.0342128,67.017812,-48.592069)"
+           style="fill:#000000;fill-opacity:1"><g
+   aria-label="GROMACS"
+   style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#000000;fill-opacity:1;stroke-width:1.5625"
+   id="text907"
+   transform="translate(0,-225.43394)"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1021"
+     inkscape:connector-curvature="0" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1023"
+     inkscape:connector-curvature="0" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1025"
+     inkscape:connector-curvature="0" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1027"
+     inkscape:connector-curvature="0" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1029"
+     inkscape:connector-curvature="0" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1031"
+     inkscape:connector-curvature="0" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#000000;fill-opacity:1"
+     id="path1033"
+     inkscape:connector-curvature="0" /></g>
+
+
+
+
+
+</g></g></g></g><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1022"
+     inkscape:connector-curvature="0" /><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1024"
+     inkscape:connector-curvature="0" /></g>
+<flowRoot
+   xml:space="preserve"
+   id="flowRoot27"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:96px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion29"><rect
+       id="rect31"
+       width="2827.7173"
+       height="480.60019"
+       x="435.89319"
+       y="-1055.199" /></flowRegion><flowPara
+     id="flowPara33" /></flowRoot><flowRoot
+   xml:space="preserve"
+   id="flowRoot1713"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion1715"><rect
+       id="rect1717"
+       width="829.83124"
+       height="284.51358"
+       x="1311.9237"
+       y="1882.0675" /></flowRegion><flowPara
+     id="flowPara1719" /></flowRoot></svg>
\ No newline at end of file
index cb70bdc2eb667487a84bdcd9ee6aac5349115933..b1634f687ca2ace9e65cca23755ce091f521d315 100644 (file)
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
-   sodipodi:docname="Gromacs Logo [Blue].svg"
+   sodipodi:docname="gmx_logo_blue.svg"
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
    id="defs927">
         
     
    id="defs927">
         
     
@@ -58,8 +58,8 @@
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
-   inkscape:window-width="1853"
-   inkscape:window-height="1145"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
    id="namedview925"
    showgrid="false"
    units="mm"
    id="namedview925"
    showgrid="false"
    units="mm"
@@ -69,7 +69,7 @@
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
-   inkscape:current-layer="g1133"
+   inkscape:current-layer="g1073"
    viewbox-width="6349" />
     
 
    viewbox-width="6349" />
     
 
              style="fill:#4e6f98;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
              style="fill:#4e6f98;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
-           id="g1073"><text
-   x="-328.33817"
-   y="3852.1226"
+           id="g1073"><g
+   aria-label="GROMACS"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
-   id="text907"><tspan
+   id="text907"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
-     id="tspan962"
-     dx="0 0.34 -6.75 -2.0699999 2.4099996 -21.060011">GROMACS</tspan></text>
+     id="path1021" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1023" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1025" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1027" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1029" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1031" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold'"
+     id="path1033" /></g>
 
 
 
 
-<text
-   x="-255.0177"
-   y="3008.4934"
+<g
+   aria-label="FAST.  FLEXIBLE.  FREE."
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
-   id="text915"><tspan
-     id="tspan840"
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
-     dx="-4.2299995">FAST.  FLEXIBLE.  FREE.</tspan><tspan
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
-     x="-81.250793"
-     y="3008.4934"
-     id="tspan911" /></text>
+   id="text915"><path
+     d="m -193.51284,2779.0623 v 95.9472 h 143.920902 v 28.9307 H -193.51284 v 104.5532 h -34.97314 v -257.9956 h 183.288573 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1036" /><path
+     d="M 163.17662,3008.4934 133.69664,2933.054 H 16.142929 l -29.663086,75.4394 H -49.77504 L 55.510605,2750.4978 h 39.733887 l 103.637698,257.9956 z m -88.256835,-231.6284 -1.64795,5.1269 q -4.577636,15.1978 -13.549804,39.0015 l -32.958985,84.7778 h 96.496584 l -33.142092,-85.144 q -5.126953,-12.6343 -10.253906,-28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1038" /><path
+     d="m 432.89096,2937.2654 q 0,35.7055 -28.01514,55.2978 -27.83203,19.5923 -78.55224,19.5923 -94.29932,0 -109.31397,-65.5517 l 33.87451,-6.7749 q 5.85938,23.2544 24.90235,34.2407 19.04297,10.8032 51.81885,10.8032 33.87451,0 52.18505,-11.5356 18.49366,-11.7188 18.49366,-34.2408 0,-12.6342 -5.85938,-20.5078 -5.67627,-7.8735 -16.11328,-13.0005 -10.43701,-5.1269 -24.90234,-8.6059 -14.46533,-3.479 -32.04346,-7.5073 -30.57861,-6.7749 -46.50879,-13.5499 -15.74707,-6.7749 -24.90234,-15.0146 -9.15528,-8.4229 -14.09912,-19.5923 -4.76075,-11.1694 -4.76075,-25.6348 0,-33.142 25.26856,-51.0864 25.45166,-17.9443 72.69287,-17.9443 43.94531,0 67.19971,13.5498 23.25439,13.3667 32.59277,45.7764 l -34.42383,6.0424 q -5.67627,-20.5078 -21.60644,-29.663 -15.93018,-9.3384 -44.12842,-9.3384 -30.94483,0 -47.24121,10.2539 -16.29639,10.2539 -16.29639,30.5786 0,11.9019 6.22559,19.7754 6.40869,7.6904 18.31054,13.1836 11.90186,5.31 47.42432,13.1836 11.90186,2.7466 23.62061,5.6762 11.90185,2.7466 22.70507,6.7749 10.80323,3.8453 20.14161,9.1553 9.52148,5.3101 16.47949,13.0005 6.95801,7.6904 10.80322,18.1274 4.02832,10.4371 4.02832,24.5362 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1040" /><path
+     d="m 582.30505,2779.0623 v 229.4311 h -34.79004 v -229.4311 h -88.62304 v -28.5645 H 670.9281 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1042" /><path
+     d="m 672.20984,3008.4934 v -40.1001 h 35.70557 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1044" /><path
+     d="m 1015.6957,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.97317 v -257.9956 h 183.28857 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1046" /><path
+     d="m 1209.9706,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1048" /><path
+     d="m 1418.7108,3008.4934 v -257.9956 h 195.7398 v 28.5645 H 1453.684 v 82.7636 h 149.7802 v 28.1983 H 1453.684 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1050" /><path
+     d="m 1842.0507,3008.4934 -77.4537,-112.793 -79.1015,112.793 h -38.6353 l 98.1446,-134.0332 -90.6372,-123.9624 h 38.6352 l 71.7774,101.2573 69.7631,-101.2573 h 38.6353 l -88.2568,122.6807 95.7641,135.3149 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1052" /><path
+     d="m 1923.5326,3008.4934 v -257.9956 h 34.9731 v 257.9956 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1054" /><path
+     d="m 2223.2762,2935.8005 q 0,34.4239 -25.0854,53.6499 -25.0855,19.043 -69.7632,19.043 h -104.7363 v -257.9956 h 93.75 q 90.8203,0 90.8203,62.6221 0,22.8882 -12.8174,38.4521 -12.8174,15.564 -36.2549,20.874 30.7617,3.6622 47.4243,20.691 16.6626,16.8457 16.6626,42.6635 z m -50.1709,-118.4692 q 0,-20.874 -14.2822,-29.8462 -14.2822,-8.9722 -41.3818,-8.9722 h -58.7769 v 81.6651 h 58.7769 q 28.0151,0 41.748,-10.437 13.916,-10.6202 13.916,-32.4097 z m 14.8316,115.7227 q 0,-45.5933 -64.0869,-45.5933 h -65.1856 v 93.0176 h 67.9322 q 32.0434,0 46.6919,-11.9019 14.6484,-11.9018 14.6484,-35.5224 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1056" /><path
+     d="m 2274.1796,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1058" /><path
+     d="m 2482.9198,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1060" /><path
+     d="m 2736.8871,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1062" /><path
+     d="m 3080.3729,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.9731 v -257.9956 h 183.2886 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1064" /><path
+     d="m 3457.0209,3008.4934 -67.0166,-107.1167 h -80.3833 v 107.1167 h -34.9732 v -257.9956 h 121.399 q 43.5791,0 67.1997,19.5923 23.8037,19.4092 23.8037,54.1992 0,28.7476 -16.8457,48.3399 -16.6626,19.5922 -46.1426,24.7192 l 73.2422,111.145 z m -5.127,-183.8379 q 0,-22.522 -15.3808,-34.2407 -15.1978,-11.9019 -43.9454,-11.9019 h -82.9467 v 95.2149 h 84.4116 q 27.6489,0 42.6636,-12.8174 15.1977,-13.0005 15.1977,-36.2549 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1066" /><path
+     d="m 3545.6439,3008.4934 v -257.9956 h 195.7398 v 28.5645 h -160.7666 v 82.7636 h 149.7802 v 28.1983 h -149.7802 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1068" /><path
+     d="m 3796.1322,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1070" /><path
+     d="m 4050.0995,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#4e6f98;fill-opacity:1"
+     id="path1072" /></g>
 
 
 </g></g></g></g><path
 
 
 </g></g></g></g><path
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.eps b/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.eps
new file mode 100644 (file)
index 0000000..a7c6ac7
--- /dev/null
@@ -0,0 +1,264 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: cairo 1.15.10 (http://cairographics.org)
+%%CreationDate: Fri Feb  5 13:49:58 2021
+%%Pages: 1
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 2
+%%BoundingBox: 0 0 4701 1048
+%%EndComments
+%%BeginProlog
+50 dict begin
+/q { gsave } bind def
+/Q { grestore } bind def
+/cm { 6 array astore concat } bind def
+/w { setlinewidth } bind def
+/J { setlinecap } bind def
+/j { setlinejoin } bind def
+/M { setmiterlimit } bind def
+/d { setdash } bind def
+/m { moveto } bind def
+/l { lineto } bind def
+/c { curveto } bind def
+/h { closepath } bind def
+/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
+      0 exch rlineto 0 rlineto closepath } bind def
+/S { stroke } bind def
+/f { fill } bind def
+/f* { eofill } bind def
+/n { newpath } bind def
+/W { clip } bind def
+/W* { eoclip } bind def
+/BT { } bind def
+/ET { } bind def
+/BDC { mark 3 1 roll /BDC pdfmark } bind def
+/EMC { mark /EMC pdfmark } bind def
+/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
+/Tj { show currentpoint cairo_store_point } bind def
+/TJ {
+  {
+    dup
+    type /stringtype eq
+    { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
+  } forall
+  currentpoint cairo_store_point
+} bind def
+/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
+    cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
+/Tf { pop /cairo_font exch def /cairo_font_matrix where
+      { pop cairo_selectfont } if } bind def
+/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
+      /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
+      /cairo_font where { pop cairo_selectfont } if } bind def
+/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
+      cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
+/g { setgray } bind def
+/rg { setrgbcolor } bind def
+/d1 { setcachedevice } bind def
+/cairo_data_source {
+  CairoDataIndex CairoData length lt
+    { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
+    { () } ifelse
+} def
+/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
+/cairo_image { image cairo_flush_ascii85_file } def
+/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
+%%EndProlog
+%%BeginSetup
+%%EndSetup
+%%Page: 1 1
+%%BeginPageSetup
+%%PageBoundingBox: 0 0 4701 1048
+%%EndPageSetup
+q 0 0 4701 1048 rectclip
+1 0 0 -1 0 1048 cm q
+0.305882 0.435294 0.596078 rg
+3465.055 9.125 m 3450.293 11.273 3433.652 13.211 3425.105 18.48 c 3416.434
+ 24.734 3418.387 31.914 3420.402 33.629 c 3421.812 35.012 3425.969 37.199
+ 3426.445 40.328 c 3426.117 46.234 3401.551 43.805 3388.031 48.086 c 3382.422
+ 50.008 3378.117 54 3377.883 58.012 c 3378.293 64.09 3382.098 65.129 3386.18
+ 67.285 c 3396.148 72.391 3406.527 75.836 3414.777 81.195 c 3418.77 83.43
+ 3422.633 85.973 3428.414 88.879 c 3455.734 102.402 3488.824 113.863 3498.219
+ 118.574 c 3608.875 174.316 3723.594 230.062 3830.684 274.066 c 3889.926
+ 336.961 3958.648 397.816 4010.109 459.332 c 3990.027 501.383 3971.188 533.914
+ 3947.23 575.191 c 3928.84 605.875 3915.73 625.902 3901.93 647.316 c 3877.262
+ 686.25 3849.855 715.234 3828.82 754.746 c 3823.762 763.102 3821.367 771.406
+ 3821.105 779.723 c 3822.227 800.453 3863.594 827.047 3867.348 828.039 c
+ 3879.543 830.902 3891.223 822.957 3901.262 815.238 c 3928.676 786.719 3952.43
+ 748.609 3987.098 715.453 c 4005.527 698.102 4022.125 681.504 4045.543 660.27
+ c 4073.699 633.812 4093.73 611.801 4116.941 586.766 c 4131.504 573.105 
+4141.703 574.238 4143.199 573.918 c 4205.379 592.969 4255.547 620.648 4292.754
+ 654.422 c 4390.289 752.816 4460.066 850.652 4549.992 939.227 c 4564.273
+ 953.91 4577.004 962.734 4588.293 974.25 c 4604.551 995.16 l 4607.539 998.793
+ 4616.824 1007.531 4619.492 1000.617 c 4634.734 1011.055 4641.051 1022.699
+ 4649.906 1032.961 c 4658.535 1043.348 4662.375 1047.816 4667.172 1047.41
+ c 4671.855 1046.309 4673.719 1036.797 4673.305 1030.699 c 4670.805 1011.918
+ 4668.758 1006.359 4670.02 1005.105 c 4672.082 1004.211 4678.762 1020.734
+ 4698.988 1015.562 c 4703.586 1011.824 4695.965 988.203 4685.254 930.434
+ c 4646.41 759.664 4592.359 588.344 4514.637 438.555 c 4506.766 422.719 
+4497.777 409.551 4486.781 401.172 c 4462.207 378.012 4436.414 361.98 4410.695
+ 345.504 c 4397.195 336.023 4382.473 327.078 4370.395 316.977 c 4358.844
+ 306.605 4358.27 287.988 4362.891 272.504 c 4366.121 259.898 4373.078 242
+ 4374.422 236.422 c 4377.902 216.129 4376.48 213.852 4376.277 196.027 c 
+4375.895 188.941 4374.93 185.273 4377.199 179.766 c 4380.484 176.336 4385.195
+ 175.391 4390.355 176.965 c 4397.316 180.469 4400.668 179.809 4401.387 177.945
+ c 4395.5 156.195 4359.383 140.551 4340.355 145.312 c 4327.785 143.086 4311.93
+ 144.918 4300.512 147.887 c 4279.191 154.371 4263.398 160.848 4246.551 169.742
+ c 4232.109 179.008 4220.188 187.75 4199.887 185.805 c 4183.695 184.004 
+4175.203 178.746 4167.438 170.934 c 4123.793 131.426 4094.254 79.008 4049.418
+ 49.449 c 3845.309 0.281 3661.098 -10.223 3465.055 9.125 c h
+3670.645 53.055 m 3795.164 37.508 3923.379 34.953 4036.156 70.844 c 4069.793
+ 107.27 4092.004 146.195 4119.984 186.371 c 4132.449 209.375 4140.402 224.684
+ 4130.656 247.082 c 4097.156 299.371 4060.645 362.266 4029.332 421.742 c
+ 4031.16 448.129 3894.465 273.773 3855.832 251.336 c 3738.211 184.465 3727.863
+ 198.32 3551.062 92.375 c 3540.762 85.066 3531.023 73.16 3585.27 65.582 
+c 3613.375 60.922 3641.91 56.641 3670.645 53.055 c h
+4347.402 152.98 m 4352.137 152.438 4360.316 152.887 4370.301 159.762 c 
+4366.344 164.121 4367.684 168.887 4368.871 173.762 c 4357.945 169.086 4346.594
+ 179.789 4329.84 182.688 c 4344.395 177.453 4350.684 168.379 4343.879 153.648
+ c 4344.633 153.449 4345.824 153.16 4347.402 152.98 c h
+4315.352 163.656 m 4320.762 164.152 4318.867 163.891 4322.645 166.102 c
+ 4317.66 175.434 4312.566 180.43 4303.488 179.809 c 4295.91 179.27 4293.297
+ 175.594 4288.156 170.004 c 4294.855 168.363 l 4301.602 182.883 4316.418
+ 176.355 4316.746 168.688 c 4316.184 164.754 4315.352 163.656 4315.352 163.656
+ c h
+4254.27 193.879 m 4266.402 192.234 4282.297 211.16 4278.59 224.801 c 4301.738
+ 238.797 4312.414 219.336 4325.062 208.711 c 4351.191 189.797 4358.68 190.875
+ 4368.047 191.164 c 4369.887 212.176 4367.77 234.273 4355.426 265.41 c 4338.766
+ 349.984 4303.066 385.18 4266.434 423.711 c 4192.148 503.379 4115.055 577.391
+ 4027.879 644.027 c 4009.336 656.922 3994.922 664.566 3977.91 658.414 c 
+3976.383 632.145 3983.688 608.27 3993.594 580.594 c 4013.66 533.492 4034.09
+ 489.188 4051.266 439.543 c 4095.852 333.625 4134.996 290.211 4175.363 246.379
+ c 4196.582 227.762 4203.176 220.391 4210.148 219.617 c 4218.496 229.328
+ 4245.633 233.375 4248.102 229.441 c 4242.516 227.711 4241.859 225.223 4241.52
+ 220.629 c 4241.84 202.195 4247.461 194.801 4254.27 193.879 c h
+4379.727 379.082 m 4401.531 385.883 4443.422 412.762 4485.98 430.16 c 4580.234
+ 584.207 4608.699 787.82 4613.094 896.82 c 4612.996 931.465 4608.836 925.938
+ 4597.359 919.992 c 4471.098 836.961 4397.582 704.348 4301.871 615.004 c
+ 4242.805 580.336 4178.586 568.133 4162.141 550.992 c 4258.262 468.375 4331.793
+ 399.969 4379.727 379.082 c h
+3993.055 542.641 m 3996.859 542.328 3991.555 555.164 3989.352 560.371 c
+ 3976.516 588.23 3970.473 620.066 3962.164 649.41 c 3956.664 666.066 3948.27
+ 672.152 3940.02 671.133 c 3930.594 669.273 3915.633 656.711 3922.422 643.066
+ c 3942.488 612.68 3958.805 576.738 3985.762 548.105 c 3989.508 544.309 
+3991.785 542.746 3993.055 542.641 c h
+4022.73 660.77 m 4032.062 659.609 3984.211 702.137 3972.34 707.523 c 3956.879
+ 693.508 3991.352 676.922 4002.906 671.516 c 4014.262 664.203 4020.352 661.066
+ 4022.73 660.77 c h
+3893.945 680.547 m 3898.848 694.219 3911.172 699.617 3919.098 704.059 c
+ 3914.328 710.293 3911.035 714.387 3905.727 719 c 3896.082 713.773 3887.434
+ 710.395 3881.59 699.195 c 3885.82 691.184 3888.852 686.738 3893.945 680.547
+ c h
+3866.734 721.637 m 3871.781 728.887 3880.223 737.324 3888.219 740.934 c
+ 3885.238 745.434 3882.02 750.316 3877.516 754.051 c 3868.508 750.629 3859.199
+ 741.805 3855.41 736.234 c 3858.926 729.598 3863.621 723.719 3866.734 721.637
+ c h
+3938.516 719.242 m 3944.262 730.316 3950.859 732.301 3955.133 734.891 c
+ 3952.719 738.219 3950.957 741.941 3943.617 747.062 c 3939.691 746.27 3930.574
+ 738.715 3927.707 731.863 c 3932.227 725.055 3934.148 723.871 3938.516 719.242
+ c h
+3907.461 755.758 m 3911.207 763.113 3916.117 768.57 3923.555 771.203 c 
+3920.574 777.344 3918.219 779.379 3913.789 782.43 c 3911.066 780.727 3904.5
+ 777.25 3897.555 767.922 c 3901.664 761.984 3903.648 760.07 3907.461 755.758
+ c h
+3833.98 774.105 m 3843.816 791.246 3861.914 800.875 3877.996 814.586 c 
+3875.957 816.117 3875.727 820.855 3872.051 821.375 c 3857.012 813.703 3840.457
+ 802.004 3828.742 782.973 c 3830.887 778.852 3831.027 777.703 3833.98 774.105
+ c h
+3833.98 774.105 m f*
+4354.719 158.613 m 4354.777 157.656 4355.234 154.953 4356.859 155.426 c
+ 4358.621 156.633 4359.754 158.504 4360.25 161.543 c 4360.426 163.062 4360.441
+ 164.324 4358.234 162.617 c 4357.086 161.57 4356.676 161.367 4354.719 158.613
+ c h
+4354.719 158.613 m f*
+256.359 747.457 m 283.582 747.457 309.977 743.551 335.539 735.738 c 361.105
+ 727.691 380.871 717.512 394.836 705.203 c 394.836 635.965 l 272.691 635.965
+ l 272.691 558.559 l 490.703 558.559 l 490.703 742.484 l 464.191 769.707
+ 429.633 791.012 387.023 806.398 c 344.652 821.785 300.152 829.477 253.52
+ 829.477 c 172.09 829.477 109.48 806.988 65.688 762.012 c 21.895 716.801
+ 0 652.77 0 569.922 c 0 487.547 22.016 424.461 66.043 380.668 c 110.07 336.641
+ 173.391 314.629 256.004 314.629 c 373.414 314.629 448.098 358.062 480.055
+ 444.938 c 383.473 474.055 l 373.059 448.727 356.727 429.551 334.477 416.531
+ c 312.223 403.512 286.066 397.004 256.004 397.004 c 206.77 397.004 169.367
+ 411.914 143.805 441.742 c 118.238 471.566 105.457 514.293 105.457 569.922
+ c 105.457 626.496 118.594 670.289 144.867 701.297 c 171.379 732.07 208.543
+ 747.457 256.359 747.457 c h
+256.359 747.457 m f*
+928.059 822.375 m 811.949 632.414 l 689.098 632.414 l 689.098 822.375 l
+ 584.352 822.375 l 584.352 322.082 l 834.32 322.082 l 893.973 322.082 940.012
+ 334.984 972.441 360.785 c 1004.871 386.352 1021.086 423.16 1021.086 471.211
+ c 1021.086 506.246 1011.145 536.547 991.262 562.109 c 971.375 587.438 944.512
+ 604.125 910.66 612.176 c 1045.941 822.375 l h
+915.633 475.473 m 915.633 427.422 884.859 403.395 823.312 403.395 c 689.098
+ 403.395 l 689.098 551.102 l 826.152 551.102 l 855.508 551.102 877.758 544.477
+ 892.906 531.219 c 908.055 517.965 915.633 499.383 915.633 475.473 c h
+915.633 475.473 m f*
+1591.062 569.922 m 1591.062 622 1580.766 667.801 1560.172 707.332 c 1539.578
+ 746.863 1510.105 777.164 1471.758 798.23 c 1433.41 819.062 1388.672 829.477
+ 1337.543 829.477 c 1258.953 829.477 1197.289 806.398 1152.551 760.238 c
+ 1108.051 713.844 1085.801 650.402 1085.801 569.922 c 1085.801 489.676 1108.051
+ 427.066 1152.551 382.09 c 1197.055 337.113 1258.953 314.629 1338.254 314.629
+ c 1417.551 314.629 1479.453 337.352 1523.953 382.801 c 1568.691 428.25 
+1591.062 490.621 1591.062 569.922 c h
+1484.188 569.922 m 1484.188 515.949 1471.402 473.699 1445.84 443.16 c 1420.273
+ 412.391 1384.414 397.004 1338.254 397.004 c 1291.383 397.004 1255.168 412.27
+ 1229.602 442.809 c 1204.039 473.105 1191.254 515.477 1191.254 569.922 c
+ 1191.254 624.84 1204.273 668.156 1230.312 699.875 c 1256.586 731.359 1292.332
+ 747.102 1337.543 747.102 c 1384.414 747.102 1420.512 731.715 1445.84 700.941
+ c 1471.402 670.168 1484.188 626.496 1484.188 569.922 c h
+1484.188 569.922 m f*
+2083.711 822.375 m 2083.711 519.148 l 2083.711 512.281 2083.711 505.418
+ 2083.711 498.551 c 2083.949 491.688 2085.133 462.219 2087.262 410.141 c
+ 2070.457 473.816 2058.027 518.199 2049.98 543.293 c 1959.793 822.375 l 
+1885.23 822.375 l 1795.043 543.293 l 1757.051 410.141 l 1759.891 465.059
+ 1761.309 501.395 1761.309 519.148 c 1761.309 822.375 l 1668.281 822.375
+ l 1668.281 322.082 l 1808.535 322.082 l 1898.012 601.879 l 1905.824 628.863
+ l 1922.867 695.973 l 1945.234 615.727 l 2037.199 322.082 l 2176.742 322.082
+ l 2176.742 822.375 l h
+2083.711 822.375 m f*
+2630.258 822.375 m 2585.875 694.551 l 2395.203 694.551 l 2350.816 822.375
+ l 2246.074 822.375 l 2428.578 322.082 l 2552.141 322.082 l 2733.938 822.375
+ l h
+2490.359 399.133 m 2488.23 406.945 l 2485.863 415.465 2483.023 425.172 
+2479.707 436.062 c 2476.395 446.949 2456.035 506.836 2418.637 615.727 c 
+2562.438 615.727 l 2513.086 471.922 l 2497.816 423.633 l h
+2490.359 399.133 m f*
+3019.41 747.102 m 3082.613 747.102 3126.523 715.383 3151.141 651.941 c 
+3242.395 686.383 l 3222.746 734.672 3193.867 770.652 3155.758 794.324 c 
+3117.883 817.758 3072.434 829.477 3019.41 829.477 c 2938.93 829.477 2876.672
+ 806.754 2832.645 761.305 c 2788.852 715.617 2766.957 651.824 2766.957 569.922
+ c 2766.957 487.781 2788.141 424.699 2830.516 380.668 c 2872.887 336.641
+ 2934.312 314.629 3014.793 314.629 c 3073.5 314.629 3121.316 326.461 3158.242
+ 350.133 c 3195.168 373.57 3221.09 408.129 3236.004 453.812 c 3143.684 479.023
+ l 3135.871 453.934 3120.488 434.047 3097.527 419.371 c 3074.801 404.461
+ 3047.934 397.004 3016.926 397.004 c 2969.582 397.004 2933.602 411.68 2908.984
+ 441.031 c 2884.602 470.383 2872.41 513.348 2872.41 569.922 c 2872.41 627.441
+ 2884.957 671.352 2910.051 701.652 c 2935.379 731.953 2971.832 747.102 3019.41
+ 747.102 c h
+3019.41 747.102 m f*
+3719.25 678.219 m 3719.25 727.219 3701.023 764.734 3664.57 790.773 c 3628.352
+ 816.574 3575.094 829.477 3504.789 829.477 c 3440.641 829.477 3390.34 818.113
+ 3353.887 795.391 c 3317.43 772.664 3293.996 738.223 3283.582 692.066 c 
+3384.777 675.375 l 3391.641 701.891 3405.016 721.18 3424.898 733.254 c 3444.781
+ 745.09 3472.359 751.008 3507.629 751.008 c 3580.773 751.008 3617.348 728.754
+ 3617.348 684.254 c 3617.348 670.051 3613.086 658.332 3604.562 649.102 c
+ 3596.277 639.871 3584.441 632.176 3569.059 626.023 c 3553.906 619.867 3524.672
+ 612.41 3481.355 603.652 c 3443.953 594.895 3417.918 587.91 3403.238 582.703
+ c 3388.562 577.258 3375.309 570.988 3363.473 563.887 c 3351.637 556.547
+ 3341.578 547.789 3333.293 537.609 c 3325.008 527.43 3318.496 515.477 3313.762
+ 501.75 c 3309.266 488.02 3307.016 472.277 3307.016 454.523 c 3307.016 409.312
+ 3323.941 374.754 3357.793 350.844 c 3391.879 326.699 3441.352 314.629 3506.211
+ 314.629 c 3568.227 314.629 3614.742 324.332 3645.75 343.742 c 3676.996 
+363.152 3697.117 395.227 3706.113 439.965 c 3604.562 453.812 l 3599.355 
+432.273 3588.703 416.059 3572.609 405.168 c 3556.746 394.281 3533.906 388.836
+ 3504.078 388.836 c 3440.641 388.836 3408.922 408.719 3408.922 448.488 c
+ 3408.922 461.508 3412.234 472.16 3418.863 480.445 c 3425.727 488.73 3435.789
+ 495.832 3449.043 501.75 c 3462.301 507.43 3489.168 514.648 3529.645 523.406
+ c 3577.695 533.586 3612.02 543.055 3632.613 551.812 c 3653.445 560.336 
+3669.895 570.395 3681.969 581.992 c 3694.043 593.355 3703.273 607.086 3709.664
+ 623.184 c 3716.055 639.043 3719.25 657.387 3719.25 678.219 c h
+3719.25 678.219 m f*
+Q Q
+showpage
+%%Trailer
+end
+%%EOF
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.png b/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.png
new file mode 100644 (file)
index 0000000..ce8758c
Binary files /dev/null and b/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.png differ
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.svg b/docs/reference-manual/plots/GMX_logos/gmx_logo_blue_no_slogan.svg
new file mode 100644 (file)
index 0000000..96d075c
--- /dev/null
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="100%"
+   height="100%"
+   viewBox="0 0 6349 1603"
+   version="1.1"
+   xml:space="preserve"
+   style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
+   id="svg923"
+   sodipodi:docname="gmx_logo_blue_no_slogan.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"><metadata
+   id="metadata929"><rdf:RDF><cc:Work
+       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+   id="defs927">
+        
+    
+            
+            
+            
+        
+                
+            
+                
+
+
+            
+
+
+
+
+
+<inkscape:path-effect
+   is_visible="true"
+   id="path-effect1061"
+   effect="spiro" /><clipPath
+   id="_clip1-3"><rect
+     x="0"
+     y="0"
+     width="291.98801"
+     height="550.58301"
+     id="rect892-6" /></clipPath></defs><sodipodi:namedview
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1"
+   objecttolerance="10"
+   gridtolerance="10"
+   guidetolerance="10"
+   inkscape:pageopacity="0"
+   inkscape:pageshadow="2"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
+   id="namedview925"
+   showgrid="false"
+   units="mm"
+   inkscape:zoom="0.1767767"
+   inkscape:cx="3630.5994"
+   inkscape:cy="590.32396"
+   inkscape:window-x="67"
+   inkscape:window-y="27"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="g1133"
+   viewbox-width="6349" />
+    
+
+<g
+   id="g1835"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo3.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"
+   transform="translate(107.48023,33.941125)"><g
+     transform="matrix(3.7513483,-0.46066696,0.46066696,3.7513483,4198.3338,3197.8407)"
+     id="layer1"
+     style="fill:none;fill-opacity:1;stroke:none"><g
+       style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round;stroke-miterlimit:2"
+       id="g903-7"
+       transform="matrix(0.82454635,-0.51053871,0.49150293,0.84357369,250.14362,56.767957)"><g
+         style="fill:none;fill-opacity:1;stroke:none"
+         id="g901-5"
+         transform="translate(-145.994,-275.291)"><clipPath
+           id="clipPath1706"><rect
+             id="rect1704"
+             height="550.58301"
+             width="291.98801"
+             y="0"
+             x="0" /></clipPath><g
+           style="fill:none;fill-opacity:1;stroke:none"
+           id="g899-3"
+           clip-path="url(#_clip1-3)"><g
+             style="fill:none;fill-opacity:1;stroke:none"
+             id="g897-5"
+             transform="matrix(1,0,0,-1,0,555.789)" /></g></g></g></g><g
+     id="g1146"
+     transform="translate(-208,-112)"><g
+       transform="translate(-24.46945,-27.842525)"
+       id="g1133"><g
+         id="g862"
+         transform="translate(401.67524,-2396.4028)"
+         style="fill:#4e6f98;fill-opacity:1"
+         inkscape:export-xdpi="300"
+         inkscape:export-ydpi="300"><g
+           transform="matrix(1.0382229,0,0,1.0382229,-256.39873,-329.7037)"
+           id="g1066"
+           style="fill:#4e6f98;fill-opacity:1"><path
+             inkscape:connector-curvature="0"
+             style="opacity:1;fill:#4e6f98;fill-opacity:1;stroke:none;stroke-width:0.24566934;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+             d="m 4472.724,2839.028 c -18.9578,2.7624 -40.3248,5.2475 -51.3026,12.0164 -11.1396,8.0334 -8.6273,17.2529 -6.0392,19.4534 1.809,1.7786 7.1445,4.5875 7.7607,8.6026 -0.4228,7.5868 -31.9734,4.4681 -49.3367,9.9666 -7.2041,2.4668 -12.7316,7.5949 -13.03,12.7457 0.5245,7.8067 5.4123,9.1408 10.6558,11.9072 12.7997,6.5604 26.1289,10.9848 36.7265,17.8638 5.1267,2.8708 10.0857,6.1364 17.5131,9.8687 35.0857,17.3692 77.5793,32.0888 89.6427,38.1355 142.1092,71.5868 289.4364,143.1806 426.9703,199.6938 76.0785,80.7698 164.3367,158.9248 230.4266,237.9267 -25.7919,53.9994 -49.985,95.7775 -80.7537,148.7919 -23.6163,39.4046 -40.4556,65.1229 -58.1793,92.6255 -31.679,49.9972 -66.8743,87.2218 -93.8903,137.9627 -6.4954,10.7344 -9.5722,21.3976 -9.9044,32.0771 1.4363,26.6251 54.5642,60.7762 59.3845,62.0488 15.6641,3.6803 30.6604,-6.5234 43.5538,-16.4369 35.2082,-36.6242 65.7142,-85.5701 110.2334,-128.1511 23.6708,-22.2813 44.9846,-43.5978 75.0608,-70.8665 36.1568,-33.9801 61.8854,-62.2483 91.6934,-94.3994 18.7019,-17.5404 31.7963,-16.0871 33.719,-16.4985 79.854,24.4679 144.2844,60.0159 192.0664,103.3863 125.2565,126.3629 214.8693,252.0078 330.3562,365.7604 18.3417,18.8579 34.6897,30.1905 49.189,44.9806 l 20.8798,26.8525 c 3.8362,4.6637 15.7584,15.8848 19.1887,7.0084 19.5715,13.4021 27.6858,28.3576 39.057,41.5375 11.0806,13.3361 16.0149,19.075 22.175,18.5548 6.0156,-1.414 8.406,-13.6293 7.8728,-21.4595 -3.2094,-24.1228 -5.8358,-31.2602 -4.2192,-32.8675 2.6505,-1.1501 11.231,20.0703 37.2069,13.4264 5.9021,-4.801 -3.8849,-35.1376 -17.6422,-109.3249 -49.8812,-219.313 -119.2973,-439.3267 -219.1139,-631.6945 -10.1075,-20.3354 -21.6503,-37.2484 -35.7724,-48.0076 -31.5595,-29.743 -64.6838,-50.3313 -97.71,-71.4928 -17.3384,-12.1743 -36.2474,-23.6602 -51.7595,-36.6363 -14.8342,-13.3173 -15.5681,-37.2282 -9.6343,-57.1109 4.1461,-16.1885 13.0799,-39.1769 14.8082,-46.3379 4.4695,-26.0616 2.6444,-28.9902 2.3838,-51.8805 -0.4952,-9.0998 -1.734,-13.8082 1.1824,-20.8818 4.2196,-4.4031 10.2684,-5.6178 16.8947,-3.5958 8.9415,4.4959 13.2466,3.6501 14.1668,1.2553 -7.5576,-27.932 -53.942,-48.0228 -78.3797,-41.9076 -16.1437,-2.8597 -36.5044,-0.5062 -51.168,3.3062 -27.38,8.3304 -47.6638,16.6447 -69.2986,28.0698 -18.5469,11.8969 -33.859,23.1233 -59.9307,20.6264 -20.7896,-2.3142 -31.6988,-9.0623 -41.6715,-19.0965 -56.0504,-50.7396 -93.9825,-118.0556 -151.5659,-156.0158 -262.1276,-63.1428 -498.6955,-76.6351 -750.4662,-51.7887 z m 264.0305,56.417 c 159.9113,-19.9667 324.5729,-23.2472 469.4073,22.8454 43.1939,46.7812 71.7193,96.7697 107.654,148.3676 16.0067,29.5418 26.2196,49.2028 13.7029,77.9678 -43.0219,67.1498 -89.9084,147.925 -130.1207,224.3075 2.3444,33.8873 -173.2045,-190.0312 -222.8195,-218.8444 -151.0521,-85.8808 -164.3419,-68.086 -391.3982,-204.1467 -13.2274,-9.3868 -25.7352,-24.6771 43.9285,-34.4096 36.0945,-5.9832 72.7431,-11.4799 109.6457,-16.0876 z m 869.1232,128.3286 c 6.0803,-0.6956 16.5846,-0.1211 29.4077,8.7091 -5.0815,5.5993 -3.3648,11.7192 -1.8377,17.9811 -14.0341,-6.0056 -28.6087,7.7408 -50.1267,11.4647 18.6917,-6.7253 26.7702,-18.3786 18.0302,-37.2941 0.9662,-0.2556 2.4998,-0.629 4.5265,-0.8608 z m -41.1628,13.7131 c 6.9488,0.6361 4.5155,0.3006 9.3643,3.1379 -6.3991,11.9879 -12.9412,18.4014 -24.6018,17.6064 -9.7285,-0.6954 -13.0845,-5.4165 -19.6897,-12.5944 l 8.6041,-2.1074 c 8.666,18.6462 27.6935,10.266 28.1142,0.4182 -0.721,-5.051 -1.7911,-6.4607 -1.7911,-6.4607 z m -78.4439,38.8134 c 15.5839,-2.1115 35.9956,22.192 31.2327,39.708 29.7288,17.9783 43.4401,-7.0169 59.6827,-20.6609 33.5569,-24.2906 43.1726,-22.9036 55.2037,-22.5371 2.3616,26.9868 -0.3589,55.3656 -16.2096,95.3546 -21.3966,108.611 -67.2419,153.814 -114.2861,203.297 -95.4006,102.3124 -194.4115,197.3584 -306.3666,282.9392 -23.814,16.5585 -42.3253,26.3784 -64.1697,18.4767 -1.9597,-33.7382 7.4207,-64.4014 20.1406,-99.9422 25.769,-60.4901 52.0083,-117.3891 74.0673,-181.1438 57.2573,-136.022 107.5282,-191.7775 159.3703,-248.0693 27.2496,-23.9096 35.7193,-33.3759 44.6733,-34.3692 10.7218,12.4703 45.5714,17.6662 48.7409,12.6162 -7.1769,-2.2219 -8.0167,-5.4195 -8.452,-11.316 0.4076,-23.6723 7.6303,-33.1687 16.3725,-34.3532 z m 161.1188,237.8463 c 28.0024,8.7342 81.7988,43.2495 136.4539,65.5957 121.0474,197.8343 157.6045,459.3213 163.2438,599.3057 -0.1232,44.4924 -5.4683,37.3925 -20.2029,29.7605 -162.1516,-106.6331 -256.5636,-276.941 -379.4814,-391.6809 -75.8563,-44.5235 -158.3274,-60.1941 -179.4496,-82.2076 123.4449,-106.0988 217.8761,-193.9501 279.4362,-220.7734 z m -496.583,210.049 c 4.885,-0.4003 -1.9247,16.0829 -4.7542,22.7708 -16.4841,35.7763 -24.246,76.6615 -34.9148,114.3483 -7.0672,21.3877 -17.8468,29.2058 -28.4427,27.8974 -12.1031,-2.3877 -31.3177,-18.522 -22.597,-36.0457 25.7669,-39.0258 46.7247,-85.1813 81.3436,-121.9547 4.8078,-4.8737 7.7367,-6.8826 9.3651,-7.0161 z m 38.113,151.7084 c 11.9834,-1.4948 -49.4683,53.1241 -64.7175,60.0388 -19.8565,-17.9957 24.4173,-39.2974 39.2585,-46.2391 14.5789,-9.3925 22.4044,-13.4187 25.459,-13.7997 z m -165.3916,25.3968 c 6.2934,17.5559 22.1194,24.4918 32.2983,30.1967 -6.1257,8.0037 -10.354,13.264 -17.1683,19.1868 -12.387,-6.7117 -23.4968,-11.0497 -30.9995,-25.4367 5.4321,-10.2873 9.3252,-15.998 15.8695,-23.9468 z m -34.948,52.7684 c 6.4811,9.3107 17.3246,20.1472 27.5938,24.7844 -3.8276,5.7796 -7.9643,12.0472 -13.7468,16.844 -11.5716,-4.3951 -23.5249,-15.7268 -28.3888,-22.8783 4.5122,-8.5268 10.5423,-16.0767 14.5418,-18.7501 z m 92.1855,-3.0753 c 7.3777,14.2244 15.8534,16.7713 21.3392,20.0977 -3.0992,4.2721 -5.3618,9.0567 -14.7873,15.6298 -5.0433,-1.0176 -16.7497,-10.7206 -20.4317,-19.5184 5.8006,-8.7454 8.2719,-10.266 13.8798,-16.2091 z m -39.8805,46.894 c 4.8069,9.4466 11.117,16.4588 20.6656,19.8361 -3.8242,7.8868 -6.8513,10.4991 -12.5394,14.4171 -3.4977,-2.1856 -11.9327,-6.6504 -20.8518,-18.6286 5.2785,-7.6273 7.8258,-10.0848 12.7256,-15.6246 z m -94.3688,23.5625 c 12.6327,22.0171 35.8732,34.3814 56.5276,51.9881 -2.6202,1.9653 -2.9157,8.0504 -7.6367,8.7204 -19.313,-9.8515 -40.5709,-24.8798 -55.6173,-49.3193 2.7544,-5.2895 2.9364,-6.7685 6.7264,-11.3892 z"
+             id="rect1188" /><path
+             inkscape:connector-curvature="0"
+             style="fill:#4e6f98;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
+             id="path1103-2" /></g><g
+           id="g1073"
+           transform="matrix(1.0342128,0,0,1.0342128,67.017812,-48.592069)"
+           style="fill:#4e6f98;fill-opacity:1"><g
+   aria-label="GROMACS"
+   style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#4e6f98;fill-opacity:1;stroke-width:1.5625"
+   id="text907"
+   transform="translate(0,-225.43394)"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1021"
+     inkscape:connector-curvature="0" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1023"
+     inkscape:connector-curvature="0" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1025"
+     inkscape:connector-curvature="0" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1027"
+     inkscape:connector-curvature="0" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1029"
+     inkscape:connector-curvature="0" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1031"
+     inkscape:connector-curvature="0" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#4e6f98;fill-opacity:1"
+     id="path1033"
+     inkscape:connector-curvature="0" /></g>
+
+
+
+
+
+</g></g></g></g><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1022"
+     inkscape:connector-curvature="0" /><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1024"
+     inkscape:connector-curvature="0" /></g>
+<flowRoot
+   xml:space="preserve"
+   id="flowRoot27"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:96px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion29"><rect
+       id="rect31"
+       width="2827.7173"
+       height="480.60019"
+       x="435.89319"
+       y="-1055.199" /></flowRegion><flowPara
+     id="flowPara33" /></flowRoot><flowRoot
+   xml:space="preserve"
+   id="flowRoot1713"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion1715"><rect
+       id="rect1717"
+       width="829.83124"
+       height="284.51358"
+       x="1311.9237"
+       y="1882.0675" /></flowRegion><flowPara
+     id="flowPara1719" /></flowRoot></svg>
\ No newline at end of file
index 88bfff62ae312ef8c1cd90cdfabb7e8271987c8a..5c1e60d5d233356341ceee73c51b6feaae6644ba 100644 (file)
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
-   sodipodi:docname="Gromacs Logo [Blue].svg"
+   sodipodi:docname="gmx_logo_waterstamp.svg"
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
    id="defs927">
         
     
    id="defs927">
         
     
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
-   inkscape:window-width="1853"
-   inkscape:window-height="1145"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
    id="namedview925"
    showgrid="false"
    units="mm"
    inkscape:zoom="0.1767767"
    id="namedview925"
    showgrid="false"
    units="mm"
    inkscape:zoom="0.1767767"
-   inkscape:cx="3203.3303"
+   inkscape:cx="2216.2093"
    inkscape:cy="513.69543"
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
    inkscape:cy="513.69543"
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
-   inkscape:current-layer="g1133"
+   inkscape:current-layer="text915"
    viewbox-width="6349" />
     
 
    viewbox-width="6349" />
     
 
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
-           style="fill:#ececec;fill-opacity:1"><text
-   x="-328.33817"
-   y="3852.1226"
+           style="fill:#ececec;fill-opacity:1"><g
+   aria-label="GROMACS"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ececec;fill-opacity:1;stroke-width:1.5625"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ececec;fill-opacity:1;stroke-width:1.5625"
-   id="text907"><tspan
+   id="text907"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
-     id="tspan962"
-     dx="0 0.34 -6.75 -2.0699999 2.4099996 -21.060011">GROMACS</tspan></text>
+     id="path1943" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1945" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1947" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1949" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1951" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1953" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1955" /></g>
 
 
 
 
-<text
-   x="-255.0177"
-   y="3008.4934"
+<g
+   aria-label="FAST.  FLEXIBLE.  FREE."
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#ececec;fill-opacity:1;stroke-width:1.5625"
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#ececec;fill-opacity:1;stroke-width:1.5625"
-   id="text915"><tspan
-     id="tspan840"
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
-     dx="-4.2299995">FAST.  FLEXIBLE.  FREE.</tspan><tspan
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1;stroke-width:1.5625"
-     x="-81.250793"
-     y="3008.4934"
-     id="tspan911" /></text>
+   id="text915"><path
+     d="m -193.51284,2779.0623 v 95.9472 h 143.920902 v 28.9307 H -193.51284 v 104.5532 h -34.97314 v -257.9956 h 183.288573 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1958" /><path
+     d="M 163.17662,3008.4934 133.69664,2933.054 H 16.142929 l -29.663086,75.4394 H -49.77504 L 55.510605,2750.4978 h 39.733887 l 103.637698,257.9956 z m -88.256835,-231.6284 -1.64795,5.1269 q -4.577636,15.1978 -13.549804,39.0015 l -32.958985,84.7778 h 96.496584 l -33.142092,-85.144 q -5.126953,-12.6343 -10.253906,-28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1960" /><path
+     d="m 432.89096,2937.2654 q 0,35.7055 -28.01514,55.2978 -27.83203,19.5923 -78.55224,19.5923 -94.29932,0 -109.31397,-65.5517 l 33.87451,-6.7749 q 5.85938,23.2544 24.90235,34.2407 19.04297,10.8032 51.81885,10.8032 33.87451,0 52.18505,-11.5356 18.49366,-11.7188 18.49366,-34.2408 0,-12.6342 -5.85938,-20.5078 -5.67627,-7.8735 -16.11328,-13.0005 -10.43701,-5.1269 -24.90234,-8.6059 -14.46533,-3.479 -32.04346,-7.5073 -30.57861,-6.7749 -46.50879,-13.5499 -15.74707,-6.7749 -24.90234,-15.0146 -9.15528,-8.4229 -14.09912,-19.5923 -4.76075,-11.1694 -4.76075,-25.6348 0,-33.142 25.26856,-51.0864 25.45166,-17.9443 72.69287,-17.9443 43.94531,0 67.19971,13.5498 23.25439,13.3667 32.59277,45.7764 l -34.42383,6.0424 q -5.67627,-20.5078 -21.60644,-29.663 -15.93018,-9.3384 -44.12842,-9.3384 -30.94483,0 -47.24121,10.2539 -16.29639,10.2539 -16.29639,30.5786 0,11.9019 6.22559,19.7754 6.40869,7.6904 18.31054,13.1836 11.90186,5.31 47.42432,13.1836 11.90186,2.7466 23.62061,5.6762 11.90185,2.7466 22.70507,6.7749 10.80323,3.8453 20.14161,9.1553 9.52148,5.3101 16.47949,13.0005 6.95801,7.6904 10.80322,18.1274 4.02832,10.4371 4.02832,24.5362 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1962" /><path
+     d="m 582.30505,2779.0623 v 229.4311 h -34.79004 v -229.4311 h -88.62304 v -28.5645 H 670.9281 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1964" /><path
+     d="m 672.20984,3008.4934 v -40.1001 h 35.70557 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1966" /><path
+     d="m 1015.6957,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.97317 v -257.9956 h 183.28857 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1968" /><path
+     d="m 1209.9706,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1970" /><path
+     d="m 1418.7108,3008.4934 v -257.9956 h 195.7398 v 28.5645 H 1453.684 v 82.7636 h 149.7802 v 28.1983 H 1453.684 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1972" /><path
+     d="m 1842.0507,3008.4934 -77.4537,-112.793 -79.1015,112.793 h -38.6353 l 98.1446,-134.0332 -90.6372,-123.9624 h 38.6352 l 71.7774,101.2573 69.7631,-101.2573 h 38.6353 l -88.2568,122.6807 95.7641,135.3149 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1974" /><path
+     d="m 1923.5326,3008.4934 v -257.9956 h 34.9731 v 257.9956 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1976" /><path
+     d="m 2223.2762,2935.8005 q 0,34.4239 -25.0854,53.6499 -25.0855,19.043 -69.7632,19.043 h -104.7363 v -257.9956 h 93.75 q 90.8203,0 90.8203,62.6221 0,22.8882 -12.8174,38.4521 -12.8174,15.564 -36.2549,20.874 30.7617,3.6622 47.4243,20.691 16.6626,16.8457 16.6626,42.6635 z m -50.1709,-118.4692 q 0,-20.874 -14.2822,-29.8462 -14.2822,-8.9722 -41.3818,-8.9722 h -58.7769 v 81.6651 h 58.7769 q 28.0151,0 41.748,-10.437 13.916,-10.6202 13.916,-32.4097 z m 14.8316,115.7227 q 0,-45.5933 -64.0869,-45.5933 h -65.1856 v 93.0176 h 67.9322 q 32.0434,0 46.6919,-11.9019 14.6484,-11.9018 14.6484,-35.5224 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1978" /><path
+     d="m 2274.1796,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1980" /><path
+     d="m 2482.9198,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1982" /><path
+     d="m 2736.8871,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1984" /><path
+     d="m 3080.3729,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.9731 v -257.9956 h 183.2886 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1986" /><path
+     d="m 3457.0209,3008.4934 -67.0166,-107.1167 h -80.3833 v 107.1167 h -34.9732 v -257.9956 h 121.399 q 43.5791,0 67.1997,19.5923 23.8037,19.4092 23.8037,54.1992 0,28.7476 -16.8457,48.3399 -16.6626,19.5922 -46.1426,24.7192 l 73.2422,111.145 z m -5.127,-183.8379 q 0,-22.522 -15.3808,-34.2407 -15.1978,-11.9019 -43.9454,-11.9019 h -82.9467 v 95.2149 h 84.4116 q 27.6489,0 42.6636,-12.8174 15.1977,-13.0005 15.1977,-36.2549 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1988" /><path
+     d="m 3545.6439,3008.4934 v -257.9956 h 195.7398 v 28.5645 h -160.7666 v 82.7636 h 149.7802 v 28.1983 h -149.7802 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1990" /><path
+     d="m 3796.1322,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1992" /><path
+     d="m 4050.0995,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ececec;fill-opacity:1"
+     id="path1994" /></g>
 
 
 </g></g></g></g><path
 
 
 </g></g></g></g><path
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.eps b/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.eps
new file mode 100644 (file)
index 0000000..e63c520
--- /dev/null
@@ -0,0 +1,264 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: cairo 1.15.10 (http://cairographics.org)
+%%CreationDate: Fri Feb  5 13:58:11 2021
+%%Pages: 1
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 2
+%%BoundingBox: 0 0 4701 1048
+%%EndComments
+%%BeginProlog
+50 dict begin
+/q { gsave } bind def
+/Q { grestore } bind def
+/cm { 6 array astore concat } bind def
+/w { setlinewidth } bind def
+/J { setlinecap } bind def
+/j { setlinejoin } bind def
+/M { setmiterlimit } bind def
+/d { setdash } bind def
+/m { moveto } bind def
+/l { lineto } bind def
+/c { curveto } bind def
+/h { closepath } bind def
+/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
+      0 exch rlineto 0 rlineto closepath } bind def
+/S { stroke } bind def
+/f { fill } bind def
+/f* { eofill } bind def
+/n { newpath } bind def
+/W { clip } bind def
+/W* { eoclip } bind def
+/BT { } bind def
+/ET { } bind def
+/BDC { mark 3 1 roll /BDC pdfmark } bind def
+/EMC { mark /EMC pdfmark } bind def
+/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
+/Tj { show currentpoint cairo_store_point } bind def
+/TJ {
+  {
+    dup
+    type /stringtype eq
+    { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
+  } forall
+  currentpoint cairo_store_point
+} bind def
+/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
+    cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
+/Tf { pop /cairo_font exch def /cairo_font_matrix where
+      { pop cairo_selectfont } if } bind def
+/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
+      /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
+      /cairo_font where { pop cairo_selectfont } if } bind def
+/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
+      cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
+/g { setgray } bind def
+/rg { setrgbcolor } bind def
+/d1 { setcachedevice } bind def
+/cairo_data_source {
+  CairoDataIndex CairoData length lt
+    { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
+    { () } ifelse
+} def
+/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
+/cairo_image { image cairo_flush_ascii85_file } def
+/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
+%%EndProlog
+%%BeginSetup
+%%EndSetup
+%%Page: 1 1
+%%BeginPageSetup
+%%PageBoundingBox: 0 0 4701 1048
+%%EndPageSetup
+q 0 0 4701 1048 rectclip
+1 0 0 -1 0 1048 cm q
+0.92549 g
+3465.055 9.125 m 3450.293 11.273 3433.652 13.211 3425.105 18.48 c 3416.434
+ 24.734 3418.387 31.914 3420.402 33.629 c 3421.812 35.012 3425.969 37.199
+ 3426.445 40.328 c 3426.117 46.234 3401.551 43.805 3388.031 48.086 c 3382.422
+ 50.008 3378.117 54 3377.883 58.012 c 3378.293 64.09 3382.098 65.129 3386.18
+ 67.285 c 3396.148 72.391 3406.527 75.836 3414.777 81.195 c 3418.77 83.43
+ 3422.633 85.973 3428.414 88.879 c 3455.734 102.402 3488.824 113.863 3498.219
+ 118.574 c 3608.875 174.316 3723.594 230.062 3830.684 274.066 c 3889.926
+ 336.961 3958.648 397.816 4010.109 459.332 c 3990.027 501.383 3971.188 533.914
+ 3947.23 575.191 c 3928.84 605.875 3915.73 625.902 3901.93 647.316 c 3877.262
+ 686.25 3849.855 715.234 3828.82 754.746 c 3823.762 763.102 3821.367 771.406
+ 3821.105 779.723 c 3822.227 800.453 3863.594 827.047 3867.348 828.039 c
+ 3879.543 830.902 3891.223 822.957 3901.262 815.238 c 3928.676 786.719 3952.43
+ 748.609 3987.098 715.453 c 4005.527 698.102 4022.125 681.504 4045.543 660.27
+ c 4073.699 633.812 4093.73 611.801 4116.941 586.766 c 4131.504 573.105 
+4141.703 574.238 4143.199 573.918 c 4205.379 592.969 4255.547 620.648 4292.754
+ 654.422 c 4390.289 752.816 4460.066 850.652 4549.992 939.227 c 4564.273
+ 953.91 4577.004 962.734 4588.293 974.25 c 4604.551 995.16 l 4607.539 998.793
+ 4616.824 1007.531 4619.492 1000.617 c 4634.734 1011.055 4641.051 1022.699
+ 4649.906 1032.961 c 4658.535 1043.348 4662.375 1047.816 4667.172 1047.41
+ c 4671.855 1046.309 4673.719 1036.797 4673.305 1030.699 c 4670.805 1011.918
+ 4668.758 1006.359 4670.02 1005.105 c 4672.082 1004.211 4678.762 1020.734
+ 4698.988 1015.562 c 4703.586 1011.824 4695.965 988.203 4685.254 930.434
+ c 4646.41 759.664 4592.359 588.344 4514.637 438.555 c 4506.766 422.719 
+4497.777 409.551 4486.781 401.172 c 4462.207 378.012 4436.414 361.98 4410.695
+ 345.504 c 4397.195 336.023 4382.473 327.078 4370.395 316.977 c 4358.844
+ 306.605 4358.27 287.988 4362.891 272.504 c 4366.121 259.898 4373.078 242
+ 4374.422 236.422 c 4377.902 216.129 4376.48 213.852 4376.277 196.027 c 
+4375.895 188.941 4374.93 185.273 4377.199 179.766 c 4380.484 176.336 4385.195
+ 175.391 4390.355 176.965 c 4397.316 180.469 4400.668 179.809 4401.387 177.945
+ c 4395.5 156.195 4359.383 140.551 4340.355 145.312 c 4327.785 143.086 4311.93
+ 144.918 4300.512 147.887 c 4279.191 154.371 4263.398 160.848 4246.551 169.742
+ c 4232.109 179.008 4220.188 187.75 4199.887 185.805 c 4183.695 184.004 
+4175.203 178.746 4167.438 170.934 c 4123.793 131.426 4094.254 79.008 4049.418
+ 49.449 c 3845.309 0.281 3661.098 -10.223 3465.055 9.125 c h
+3670.645 53.055 m 3795.164 37.508 3923.379 34.953 4036.156 70.844 c 4069.793
+ 107.27 4092.004 146.195 4119.984 186.371 c 4132.449 209.375 4140.402 224.684
+ 4130.656 247.082 c 4097.156 299.371 4060.645 362.266 4029.332 421.742 c
+ 4031.16 448.129 3894.465 273.773 3855.832 251.336 c 3738.211 184.465 3727.863
+ 198.32 3551.062 92.375 c 3540.762 85.066 3531.023 73.16 3585.27 65.582 
+c 3613.375 60.922 3641.91 56.641 3670.645 53.055 c h
+4347.402 152.98 m 4352.137 152.438 4360.316 152.887 4370.301 159.762 c 
+4366.344 164.121 4367.684 168.887 4368.871 173.762 c 4357.945 169.086 4346.594
+ 179.789 4329.84 182.688 c 4344.395 177.453 4350.684 168.379 4343.879 153.648
+ c 4344.633 153.449 4345.824 153.16 4347.402 152.98 c h
+4315.352 163.656 m 4320.762 164.152 4318.867 163.891 4322.645 166.102 c
+ 4317.66 175.434 4312.566 180.43 4303.488 179.809 c 4295.91 179.27 4293.297
+ 175.594 4288.156 170.004 c 4294.855 168.363 l 4301.602 182.883 4316.418
+ 176.355 4316.746 168.688 c 4316.184 164.754 4315.352 163.656 4315.352 163.656
+ c h
+4254.27 193.879 m 4266.402 192.234 4282.297 211.16 4278.59 224.801 c 4301.738
+ 238.797 4312.414 219.336 4325.062 208.711 c 4351.191 189.797 4358.68 190.875
+ 4368.047 191.164 c 4369.887 212.176 4367.77 234.273 4355.426 265.41 c 4338.766
+ 349.984 4303.066 385.18 4266.434 423.711 c 4192.148 503.379 4115.055 577.391
+ 4027.879 644.027 c 4009.336 656.922 3994.922 664.566 3977.91 658.414 c 
+3976.383 632.145 3983.688 608.27 3993.594 580.594 c 4013.66 533.492 4034.09
+ 489.188 4051.266 439.543 c 4095.852 333.625 4134.996 290.211 4175.363 246.379
+ c 4196.582 227.762 4203.176 220.391 4210.148 219.617 c 4218.496 229.328
+ 4245.633 233.375 4248.102 229.441 c 4242.516 227.711 4241.859 225.223 4241.52
+ 220.629 c 4241.84 202.195 4247.461 194.801 4254.27 193.879 c h
+4379.727 379.082 m 4401.531 385.883 4443.422 412.762 4485.98 430.16 c 4580.234
+ 584.207 4608.699 787.82 4613.094 896.82 c 4612.996 931.465 4608.836 925.938
+ 4597.359 919.992 c 4471.098 836.961 4397.582 704.348 4301.871 615.004 c
+ 4242.805 580.336 4178.586 568.133 4162.141 550.992 c 4258.262 468.375 4331.793
+ 399.969 4379.727 379.082 c h
+3993.055 542.641 m 3996.859 542.328 3991.555 555.164 3989.352 560.371 c
+ 3976.516 588.23 3970.473 620.066 3962.164 649.41 c 3956.664 666.066 3948.27
+ 672.152 3940.02 671.133 c 3930.594 669.273 3915.633 656.711 3922.422 643.066
+ c 3942.488 612.68 3958.805 576.738 3985.762 548.105 c 3989.508 544.309 
+3991.785 542.746 3993.055 542.641 c h
+4022.73 660.77 m 4032.062 659.609 3984.211 702.137 3972.34 707.523 c 3956.879
+ 693.508 3991.352 676.922 4002.906 671.516 c 4014.262 664.203 4020.352 661.066
+ 4022.73 660.77 c h
+3893.945 680.547 m 3898.848 694.219 3911.172 699.617 3919.098 704.059 c
+ 3914.328 710.293 3911.035 714.387 3905.727 719 c 3896.082 713.773 3887.434
+ 710.395 3881.59 699.195 c 3885.82 691.184 3888.852 686.738 3893.945 680.547
+ c h
+3866.734 721.637 m 3871.781 728.887 3880.223 737.324 3888.219 740.934 c
+ 3885.238 745.434 3882.02 750.316 3877.516 754.051 c 3868.508 750.629 3859.199
+ 741.805 3855.41 736.234 c 3858.926 729.598 3863.621 723.719 3866.734 721.637
+ c h
+3938.516 719.242 m 3944.262 730.316 3950.859 732.301 3955.133 734.891 c
+ 3952.719 738.219 3950.957 741.941 3943.617 747.062 c 3939.691 746.27 3930.574
+ 738.715 3927.707 731.863 c 3932.227 725.055 3934.148 723.871 3938.516 719.242
+ c h
+3907.461 755.758 m 3911.207 763.113 3916.117 768.57 3923.555 771.203 c 
+3920.574 777.344 3918.219 779.379 3913.789 782.43 c 3911.066 780.727 3904.5
+ 777.25 3897.555 767.922 c 3901.664 761.984 3903.648 760.07 3907.461 755.758
+ c h
+3833.98 774.105 m 3843.816 791.246 3861.914 800.875 3877.996 814.586 c 
+3875.957 816.117 3875.727 820.855 3872.051 821.375 c 3857.012 813.703 3840.457
+ 802.004 3828.742 782.973 c 3830.887 778.852 3831.027 777.703 3833.98 774.105
+ c h
+3833.98 774.105 m f*
+4354.719 158.613 m 4354.777 157.656 4355.234 154.953 4356.859 155.426 c
+ 4358.621 156.633 4359.754 158.504 4360.25 161.543 c 4360.426 163.062 4360.441
+ 164.324 4358.234 162.617 c 4357.086 161.57 4356.676 161.367 4354.719 158.613
+ c h
+4354.719 158.613 m f*
+256.359 747.457 m 283.582 747.457 309.977 743.551 335.539 735.738 c 361.105
+ 727.691 380.871 717.512 394.836 705.203 c 394.836 635.965 l 272.691 635.965
+ l 272.691 558.559 l 490.703 558.559 l 490.703 742.484 l 464.191 769.707
+ 429.633 791.012 387.023 806.398 c 344.652 821.785 300.152 829.477 253.52
+ 829.477 c 172.09 829.477 109.48 806.988 65.688 762.012 c 21.895 716.801
+ 0 652.77 0 569.922 c 0 487.547 22.016 424.461 66.043 380.668 c 110.07 336.641
+ 173.391 314.629 256.004 314.629 c 373.414 314.629 448.098 358.062 480.055
+ 444.938 c 383.473 474.055 l 373.059 448.727 356.727 429.551 334.477 416.531
+ c 312.223 403.512 286.066 397.004 256.004 397.004 c 206.77 397.004 169.367
+ 411.914 143.805 441.742 c 118.238 471.566 105.457 514.293 105.457 569.922
+ c 105.457 626.496 118.594 670.289 144.867 701.297 c 171.379 732.07 208.543
+ 747.457 256.359 747.457 c h
+256.359 747.457 m f*
+928.059 822.375 m 811.949 632.414 l 689.098 632.414 l 689.098 822.375 l
+ 584.352 822.375 l 584.352 322.082 l 834.32 322.082 l 893.973 322.082 940.012
+ 334.984 972.441 360.785 c 1004.871 386.352 1021.086 423.16 1021.086 471.211
+ c 1021.086 506.246 1011.145 536.547 991.262 562.109 c 971.375 587.438 944.512
+ 604.125 910.66 612.176 c 1045.941 822.375 l h
+915.633 475.473 m 915.633 427.422 884.859 403.395 823.312 403.395 c 689.098
+ 403.395 l 689.098 551.102 l 826.152 551.102 l 855.508 551.102 877.758 544.477
+ 892.906 531.219 c 908.055 517.965 915.633 499.383 915.633 475.473 c h
+915.633 475.473 m f*
+1591.062 569.922 m 1591.062 622 1580.766 667.801 1560.172 707.332 c 1539.578
+ 746.863 1510.105 777.164 1471.758 798.23 c 1433.41 819.062 1388.672 829.477
+ 1337.543 829.477 c 1258.953 829.477 1197.289 806.398 1152.551 760.238 c
+ 1108.051 713.844 1085.801 650.402 1085.801 569.922 c 1085.801 489.676 1108.051
+ 427.066 1152.551 382.09 c 1197.055 337.113 1258.953 314.629 1338.254 314.629
+ c 1417.551 314.629 1479.453 337.352 1523.953 382.801 c 1568.691 428.25 
+1591.062 490.621 1591.062 569.922 c h
+1484.188 569.922 m 1484.188 515.949 1471.402 473.699 1445.84 443.16 c 1420.273
+ 412.391 1384.414 397.004 1338.254 397.004 c 1291.383 397.004 1255.168 412.27
+ 1229.602 442.809 c 1204.039 473.105 1191.254 515.477 1191.254 569.922 c
+ 1191.254 624.84 1204.273 668.156 1230.312 699.875 c 1256.586 731.359 1292.332
+ 747.102 1337.543 747.102 c 1384.414 747.102 1420.512 731.715 1445.84 700.941
+ c 1471.402 670.168 1484.188 626.496 1484.188 569.922 c h
+1484.188 569.922 m f*
+2083.711 822.375 m 2083.711 519.148 l 2083.711 512.281 2083.711 505.418
+ 2083.711 498.551 c 2083.949 491.688 2085.133 462.219 2087.262 410.141 c
+ 2070.457 473.816 2058.027 518.199 2049.98 543.293 c 1959.793 822.375 l 
+1885.23 822.375 l 1795.043 543.293 l 1757.051 410.141 l 1759.891 465.059
+ 1761.309 501.395 1761.309 519.148 c 1761.309 822.375 l 1668.281 822.375
+ l 1668.281 322.082 l 1808.535 322.082 l 1898.012 601.879 l 1905.824 628.863
+ l 1922.867 695.973 l 1945.234 615.727 l 2037.199 322.082 l 2176.742 322.082
+ l 2176.742 822.375 l h
+2083.711 822.375 m f*
+2630.258 822.375 m 2585.875 694.551 l 2395.203 694.551 l 2350.816 822.375
+ l 2246.074 822.375 l 2428.578 322.082 l 2552.141 322.082 l 2733.938 822.375
+ l h
+2490.359 399.133 m 2488.23 406.945 l 2485.863 415.465 2483.023 425.172 
+2479.707 436.062 c 2476.395 446.949 2456.035 506.836 2418.637 615.727 c 
+2562.438 615.727 l 2513.086 471.922 l 2497.816 423.633 l h
+2490.359 399.133 m f*
+3019.41 747.102 m 3082.613 747.102 3126.523 715.383 3151.141 651.941 c 
+3242.395 686.383 l 3222.746 734.672 3193.867 770.652 3155.758 794.324 c 
+3117.883 817.758 3072.434 829.477 3019.41 829.477 c 2938.93 829.477 2876.672
+ 806.754 2832.645 761.305 c 2788.852 715.617 2766.957 651.824 2766.957 569.922
+ c 2766.957 487.781 2788.141 424.699 2830.516 380.668 c 2872.887 336.641
+ 2934.312 314.629 3014.793 314.629 c 3073.5 314.629 3121.316 326.461 3158.242
+ 350.133 c 3195.168 373.57 3221.09 408.129 3236.004 453.812 c 3143.684 479.023
+ l 3135.871 453.934 3120.488 434.047 3097.527 419.371 c 3074.801 404.461
+ 3047.934 397.004 3016.926 397.004 c 2969.582 397.004 2933.602 411.68 2908.984
+ 441.031 c 2884.602 470.383 2872.41 513.348 2872.41 569.922 c 2872.41 627.441
+ 2884.957 671.352 2910.051 701.652 c 2935.379 731.953 2971.832 747.102 3019.41
+ 747.102 c h
+3019.41 747.102 m f*
+3719.25 678.219 m 3719.25 727.219 3701.023 764.734 3664.57 790.773 c 3628.352
+ 816.574 3575.094 829.477 3504.789 829.477 c 3440.641 829.477 3390.34 818.113
+ 3353.887 795.391 c 3317.43 772.664 3293.996 738.223 3283.582 692.066 c 
+3384.777 675.375 l 3391.641 701.891 3405.016 721.18 3424.898 733.254 c 3444.781
+ 745.09 3472.359 751.008 3507.629 751.008 c 3580.773 751.008 3617.348 728.754
+ 3617.348 684.254 c 3617.348 670.051 3613.086 658.332 3604.562 649.102 c
+ 3596.277 639.871 3584.441 632.176 3569.059 626.023 c 3553.906 619.867 3524.672
+ 612.41 3481.355 603.652 c 3443.953 594.895 3417.918 587.91 3403.238 582.703
+ c 3388.562 577.258 3375.309 570.988 3363.473 563.887 c 3351.637 556.547
+ 3341.578 547.789 3333.293 537.609 c 3325.008 527.43 3318.496 515.477 3313.762
+ 501.75 c 3309.266 488.02 3307.016 472.277 3307.016 454.523 c 3307.016 409.312
+ 3323.941 374.754 3357.793 350.844 c 3391.879 326.699 3441.352 314.629 3506.211
+ 314.629 c 3568.227 314.629 3614.742 324.332 3645.75 343.742 c 3676.996 
+363.152 3697.117 395.227 3706.113 439.965 c 3604.562 453.812 l 3599.355 
+432.273 3588.703 416.059 3572.609 405.168 c 3556.746 394.281 3533.906 388.836
+ 3504.078 388.836 c 3440.641 388.836 3408.922 408.719 3408.922 448.488 c
+ 3408.922 461.508 3412.234 472.16 3418.863 480.445 c 3425.727 488.73 3435.789
+ 495.832 3449.043 501.75 c 3462.301 507.43 3489.168 514.648 3529.645 523.406
+ c 3577.695 533.586 3612.02 543.055 3632.613 551.812 c 3653.445 560.336 
+3669.895 570.395 3681.969 581.992 c 3694.043 593.355 3703.273 607.086 3709.664
+ 623.184 c 3716.055 639.043 3719.25 657.387 3719.25 678.219 c h
+3719.25 678.219 m f*
+Q Q
+showpage
+%%Trailer
+end
+%%EOF
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.png b/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.png
new file mode 100644 (file)
index 0000000..2b2ee0c
Binary files /dev/null and b/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.png differ
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.svg b/docs/reference-manual/plots/GMX_logos/gmx_logo_waterstamp_no_slogan.svg
new file mode 100644 (file)
index 0000000..d03d266
--- /dev/null
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="100%"
+   height="100%"
+   viewBox="0 0 6349 1603"
+   version="1.1"
+   xml:space="preserve"
+   style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
+   id="svg923"
+   sodipodi:docname="gmx_logo_blue_no_slogan.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"><metadata
+   id="metadata929"><rdf:RDF><cc:Work
+       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+   id="defs927">
+        
+    
+            
+            
+            
+        
+                
+            
+                
+
+
+            
+
+
+
+
+
+<inkscape:path-effect
+   is_visible="true"
+   id="path-effect1061"
+   effect="spiro" /><clipPath
+   id="_clip1-3"><rect
+     x="0"
+     y="0"
+     width="291.98801"
+     height="550.58301"
+     id="rect892-6" /></clipPath></defs><sodipodi:namedview
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1"
+   objecttolerance="10"
+   gridtolerance="10"
+   guidetolerance="10"
+   inkscape:pageopacity="0"
+   inkscape:pageshadow="2"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
+   id="namedview925"
+   showgrid="false"
+   units="mm"
+   inkscape:zoom="0.1767767"
+   inkscape:cx="3630.5994"
+   inkscape:cy="590.32396"
+   inkscape:window-x="67"
+   inkscape:window-y="27"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="g1133"
+   viewbox-width="6349" />
+    
+
+<g
+   id="g1835"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo3.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"
+   transform="translate(107.48023,33.941125)"><g
+     transform="matrix(3.7513483,-0.46066696,0.46066696,3.7513483,4198.3338,3197.8407)"
+     id="layer1"
+     style="fill:none;fill-opacity:1;stroke:none"><g
+       style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round;stroke-miterlimit:2"
+       id="g903-7"
+       transform="matrix(0.82454635,-0.51053871,0.49150293,0.84357369,250.14362,56.767957)"><g
+         style="fill:none;fill-opacity:1;stroke:none"
+         id="g901-5"
+         transform="translate(-145.994,-275.291)"><clipPath
+           id="clipPath1706"><rect
+             id="rect1704"
+             height="550.58301"
+             width="291.98801"
+             y="0"
+             x="0" /></clipPath><g
+           style="fill:none;fill-opacity:1;stroke:none"
+           id="g899-3"
+           clip-path="url(#_clip1-3)"><g
+             style="fill:none;fill-opacity:1;stroke:none"
+             id="g897-5"
+             transform="matrix(1,0,0,-1,0,555.789)" /></g></g></g></g><g
+     id="g1146"
+     transform="translate(-208,-112)"><g
+       transform="translate(-24.46945,-27.842525)"
+       id="g1133"><g
+         id="g862"
+         transform="translate(401.67524,-2396.4028)"
+         style="fill:#ececec;fill-opacity:1"
+         inkscape:export-xdpi="300"
+         inkscape:export-ydpi="300"><g
+           transform="matrix(1.0382229,0,0,1.0382229,-256.39873,-329.7037)"
+           id="g1066"
+           style="fill:#ececec;fill-opacity:1"><path
+             inkscape:connector-curvature="0"
+             style="opacity:1;fill:#ececec;fill-opacity:1;stroke:none;stroke-width:0.24566934;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+             d="m 4472.724,2839.028 c -18.9578,2.7624 -40.3248,5.2475 -51.3026,12.0164 -11.1396,8.0334 -8.6273,17.2529 -6.0392,19.4534 1.809,1.7786 7.1445,4.5875 7.7607,8.6026 -0.4228,7.5868 -31.9734,4.4681 -49.3367,9.9666 -7.2041,2.4668 -12.7316,7.5949 -13.03,12.7457 0.5245,7.8067 5.4123,9.1408 10.6558,11.9072 12.7997,6.5604 26.1289,10.9848 36.7265,17.8638 5.1267,2.8708 10.0857,6.1364 17.5131,9.8687 35.0857,17.3692 77.5793,32.0888 89.6427,38.1355 142.1092,71.5868 289.4364,143.1806 426.9703,199.6938 76.0785,80.7698 164.3367,158.9248 230.4266,237.9267 -25.7919,53.9994 -49.985,95.7775 -80.7537,148.7919 -23.6163,39.4046 -40.4556,65.1229 -58.1793,92.6255 -31.679,49.9972 -66.8743,87.2218 -93.8903,137.9627 -6.4954,10.7344 -9.5722,21.3976 -9.9044,32.0771 1.4363,26.6251 54.5642,60.7762 59.3845,62.0488 15.6641,3.6803 30.6604,-6.5234 43.5538,-16.4369 35.2082,-36.6242 65.7142,-85.5701 110.2334,-128.1511 23.6708,-22.2813 44.9846,-43.5978 75.0608,-70.8665 36.1568,-33.9801 61.8854,-62.2483 91.6934,-94.3994 18.7019,-17.5404 31.7963,-16.0871 33.719,-16.4985 79.854,24.4679 144.2844,60.0159 192.0664,103.3863 125.2565,126.3629 214.8693,252.0078 330.3562,365.7604 18.3417,18.8579 34.6897,30.1905 49.189,44.9806 l 20.8798,26.8525 c 3.8362,4.6637 15.7584,15.8848 19.1887,7.0084 19.5715,13.4021 27.6858,28.3576 39.057,41.5375 11.0806,13.3361 16.0149,19.075 22.175,18.5548 6.0156,-1.414 8.406,-13.6293 7.8728,-21.4595 -3.2094,-24.1228 -5.8358,-31.2602 -4.2192,-32.8675 2.6505,-1.1501 11.231,20.0703 37.2069,13.4264 5.9021,-4.801 -3.8849,-35.1376 -17.6422,-109.3249 -49.8812,-219.313 -119.2973,-439.3267 -219.1139,-631.6945 -10.1075,-20.3354 -21.6503,-37.2484 -35.7724,-48.0076 -31.5595,-29.743 -64.6838,-50.3313 -97.71,-71.4928 -17.3384,-12.1743 -36.2474,-23.6602 -51.7595,-36.6363 -14.8342,-13.3173 -15.5681,-37.2282 -9.6343,-57.1109 4.1461,-16.1885 13.0799,-39.1769 14.8082,-46.3379 4.4695,-26.0616 2.6444,-28.9902 2.3838,-51.8805 -0.4952,-9.0998 -1.734,-13.8082 1.1824,-20.8818 4.2196,-4.4031 10.2684,-5.6178 16.8947,-3.5958 8.9415,4.4959 13.2466,3.6501 14.1668,1.2553 -7.5576,-27.932 -53.942,-48.0228 -78.3797,-41.9076 -16.1437,-2.8597 -36.5044,-0.5062 -51.168,3.3062 -27.38,8.3304 -47.6638,16.6447 -69.2986,28.0698 -18.5469,11.8969 -33.859,23.1233 -59.9307,20.6264 -20.7896,-2.3142 -31.6988,-9.0623 -41.6715,-19.0965 -56.0504,-50.7396 -93.9825,-118.0556 -151.5659,-156.0158 -262.1276,-63.1428 -498.6955,-76.6351 -750.4662,-51.7887 z m 264.0305,56.417 c 159.9113,-19.9667 324.5729,-23.2472 469.4073,22.8454 43.1939,46.7812 71.7193,96.7697 107.654,148.3676 16.0067,29.5418 26.2196,49.2028 13.7029,77.9678 -43.0219,67.1498 -89.9084,147.925 -130.1207,224.3075 2.3444,33.8873 -173.2045,-190.0312 -222.8195,-218.8444 -151.0521,-85.8808 -164.3419,-68.086 -391.3982,-204.1467 -13.2274,-9.3868 -25.7352,-24.6771 43.9285,-34.4096 36.0945,-5.9832 72.7431,-11.4799 109.6457,-16.0876 z m 869.1232,128.3286 c 6.0803,-0.6956 16.5846,-0.1211 29.4077,8.7091 -5.0815,5.5993 -3.3648,11.7192 -1.8377,17.9811 -14.0341,-6.0056 -28.6087,7.7408 -50.1267,11.4647 18.6917,-6.7253 26.7702,-18.3786 18.0302,-37.2941 0.9662,-0.2556 2.4998,-0.629 4.5265,-0.8608 z m -41.1628,13.7131 c 6.9488,0.6361 4.5155,0.3006 9.3643,3.1379 -6.3991,11.9879 -12.9412,18.4014 -24.6018,17.6064 -9.7285,-0.6954 -13.0845,-5.4165 -19.6897,-12.5944 l 8.6041,-2.1074 c 8.666,18.6462 27.6935,10.266 28.1142,0.4182 -0.721,-5.051 -1.7911,-6.4607 -1.7911,-6.4607 z m -78.4439,38.8134 c 15.5839,-2.1115 35.9956,22.192 31.2327,39.708 29.7288,17.9783 43.4401,-7.0169 59.6827,-20.6609 33.5569,-24.2906 43.1726,-22.9036 55.2037,-22.5371 2.3616,26.9868 -0.3589,55.3656 -16.2096,95.3546 -21.3966,108.611 -67.2419,153.814 -114.2861,203.297 -95.4006,102.3124 -194.4115,197.3584 -306.3666,282.9392 -23.814,16.5585 -42.3253,26.3784 -64.1697,18.4767 -1.9597,-33.7382 7.4207,-64.4014 20.1406,-99.9422 25.769,-60.4901 52.0083,-117.3891 74.0673,-181.1438 57.2573,-136.022 107.5282,-191.7775 159.3703,-248.0693 27.2496,-23.9096 35.7193,-33.3759 44.6733,-34.3692 10.7218,12.4703 45.5714,17.6662 48.7409,12.6162 -7.1769,-2.2219 -8.0167,-5.4195 -8.452,-11.316 0.4076,-23.6723 7.6303,-33.1687 16.3725,-34.3532 z m 161.1188,237.8463 c 28.0024,8.7342 81.7988,43.2495 136.4539,65.5957 121.0474,197.8343 157.6045,459.3213 163.2438,599.3057 -0.1232,44.4924 -5.4683,37.3925 -20.2029,29.7605 -162.1516,-106.6331 -256.5636,-276.941 -379.4814,-391.6809 -75.8563,-44.5235 -158.3274,-60.1941 -179.4496,-82.2076 123.4449,-106.0988 217.8761,-193.9501 279.4362,-220.7734 z m -496.583,210.049 c 4.885,-0.4003 -1.9247,16.0829 -4.7542,22.7708 -16.4841,35.7763 -24.246,76.6615 -34.9148,114.3483 -7.0672,21.3877 -17.8468,29.2058 -28.4427,27.8974 -12.1031,-2.3877 -31.3177,-18.522 -22.597,-36.0457 25.7669,-39.0258 46.7247,-85.1813 81.3436,-121.9547 4.8078,-4.8737 7.7367,-6.8826 9.3651,-7.0161 z m 38.113,151.7084 c 11.9834,-1.4948 -49.4683,53.1241 -64.7175,60.0388 -19.8565,-17.9957 24.4173,-39.2974 39.2585,-46.2391 14.5789,-9.3925 22.4044,-13.4187 25.459,-13.7997 z m -165.3916,25.3968 c 6.2934,17.5559 22.1194,24.4918 32.2983,30.1967 -6.1257,8.0037 -10.354,13.264 -17.1683,19.1868 -12.387,-6.7117 -23.4968,-11.0497 -30.9995,-25.4367 5.4321,-10.2873 9.3252,-15.998 15.8695,-23.9468 z m -34.948,52.7684 c 6.4811,9.3107 17.3246,20.1472 27.5938,24.7844 -3.8276,5.7796 -7.9643,12.0472 -13.7468,16.844 -11.5716,-4.3951 -23.5249,-15.7268 -28.3888,-22.8783 4.5122,-8.5268 10.5423,-16.0767 14.5418,-18.7501 z m 92.1855,-3.0753 c 7.3777,14.2244 15.8534,16.7713 21.3392,20.0977 -3.0992,4.2721 -5.3618,9.0567 -14.7873,15.6298 -5.0433,-1.0176 -16.7497,-10.7206 -20.4317,-19.5184 5.8006,-8.7454 8.2719,-10.266 13.8798,-16.2091 z m -39.8805,46.894 c 4.8069,9.4466 11.117,16.4588 20.6656,19.8361 -3.8242,7.8868 -6.8513,10.4991 -12.5394,14.4171 -3.4977,-2.1856 -11.9327,-6.6504 -20.8518,-18.6286 5.2785,-7.6273 7.8258,-10.0848 12.7256,-15.6246 z m -94.3688,23.5625 c 12.6327,22.0171 35.8732,34.3814 56.5276,51.9881 -2.6202,1.9653 -2.9157,8.0504 -7.6367,8.7204 -19.313,-9.8515 -40.5709,-24.8798 -55.6173,-49.3193 2.7544,-5.2895 2.9364,-6.7685 6.7264,-11.3892 z"
+             id="rect1188" /><path
+             inkscape:connector-curvature="0"
+             style="fill:#ececec;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
+             id="path1103-2" /></g><g
+           id="g1073"
+           transform="matrix(1.0342128,0,0,1.0342128,67.017812,-48.592069)"
+           style="fill:#ececec;fill-opacity:1"><g
+   aria-label="GROMACS"
+   style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ececec;fill-opacity:1;stroke-width:1.5625"
+   id="text907"
+   transform="translate(0,-225.43394)"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1021"
+     inkscape:connector-curvature="0" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1023"
+     inkscape:connector-curvature="0" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1025"
+     inkscape:connector-curvature="0" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1027"
+     inkscape:connector-curvature="0" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1029"
+     inkscape:connector-curvature="0" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1031"
+     inkscape:connector-curvature="0" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ececec;fill-opacity:1"
+     id="path1033"
+     inkscape:connector-curvature="0" /></g>
+
+
+
+
+
+</g></g></g></g><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1022"
+     inkscape:connector-curvature="0" /><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1024"
+     inkscape:connector-curvature="0" /></g>
+<flowRoot
+   xml:space="preserve"
+   id="flowRoot27"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:96px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion29"><rect
+       id="rect31"
+       width="2827.7173"
+       height="480.60019"
+       x="435.89319"
+       y="-1055.199" /></flowRegion><flowPara
+     id="flowPara33" /></flowRoot><flowRoot
+   xml:space="preserve"
+   id="flowRoot1713"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion1715"><rect
+       id="rect1717"
+       width="829.83124"
+       height="284.51358"
+       x="1311.9237"
+       y="1882.0675" /></flowRegion><flowPara
+     id="flowPara1719" /></flowRoot></svg>
\ No newline at end of file
index 91e9c061983405900a187c34370cb02149cea6f2..aa491d8f0c59c4c8a0b942178f251bbb4c0f693b 100644 (file)
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
    xml:space="preserve"
    style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
    id="svg923"
-   sodipodi:docname="Gromacs Logo [Blue].svg"
+   sodipodi:docname="gmx_logo_white.svg"
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
    inkscape:version="0.92.3 (2405546, 2018-03-11)"
    inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
    inkscape:export-xdpi="300"
    inkscape:export-ydpi="300"><metadata
    id="metadata929"><rdf:RDF><cc:Work
        rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
    id="defs927">
         
     
    id="defs927">
         
     
@@ -58,8 +58,8 @@
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
    guidetolerance="10"
    inkscape:pageopacity="0"
    inkscape:pageshadow="2"
-   inkscape:window-width="1853"
-   inkscape:window-height="1145"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
    id="namedview925"
    showgrid="false"
    units="mm"
    id="namedview925"
    showgrid="false"
    units="mm"
@@ -69,7 +69,7 @@
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
    inkscape:window-x="67"
    inkscape:window-y="27"
    inkscape:window-maximized="1"
-   inkscape:current-layer="g1133"
+   inkscape:current-layer="g862"
    viewbox-width="6349" />
     
 
    viewbox-width="6349" />
     
 
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
              d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
              id="path1103-2" /></g><g
            id="g1073"
-           style="fill:#ffffff;fill-opacity:1"><text
-   x="-328.33817"
-   y="3852.1226"
+           style="fill:#ffffff;fill-opacity:1"><g
+   aria-label="GROMACS"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
    style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
-   id="text907"><tspan
+   id="text907"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
      style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
-     id="tspan962"
-     dx="0 0.34 -6.75 -2.0699999 2.4099996 -21.060011">GROMACS</tspan></text>
+     id="path985" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path987" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path989" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path991" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path993" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path995" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path997" /></g>
 
 
 
 
-<text
-   x="-255.0177"
-   y="3008.4934"
+<g
+   aria-label="FAST.  FLEXIBLE.  FREE."
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
    style="font-size:375px;font-family:KannadaMN, 'Kannada MN';fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
-   id="text915"><tspan
-     id="tspan840"
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
-     dx="-4.2299995">FAST.  FLEXIBLE.  FREE.</tspan><tspan
-     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
-     x="-81.250793"
-     y="3008.4934"
-     id="tspan911" /></text>
+   id="text915"><path
+     d="m -193.51284,2779.0623 v 95.9472 h 143.920902 v 28.9307 H -193.51284 v 104.5532 h -34.97314 v -257.9956 h 183.288573 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1000" /><path
+     d="M 163.17662,3008.4934 133.69664,2933.054 H 16.142929 l -29.663086,75.4394 H -49.77504 L 55.510605,2750.4978 h 39.733887 l 103.637698,257.9956 z m -88.256835,-231.6284 -1.64795,5.1269 q -4.577636,15.1978 -13.549804,39.0015 l -32.958985,84.7778 h 96.496584 l -33.142092,-85.144 q -5.126953,-12.6343 -10.253906,-28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1002" /><path
+     d="m 432.89096,2937.2654 q 0,35.7055 -28.01514,55.2978 -27.83203,19.5923 -78.55224,19.5923 -94.29932,0 -109.31397,-65.5517 l 33.87451,-6.7749 q 5.85938,23.2544 24.90235,34.2407 19.04297,10.8032 51.81885,10.8032 33.87451,0 52.18505,-11.5356 18.49366,-11.7188 18.49366,-34.2408 0,-12.6342 -5.85938,-20.5078 -5.67627,-7.8735 -16.11328,-13.0005 -10.43701,-5.1269 -24.90234,-8.6059 -14.46533,-3.479 -32.04346,-7.5073 -30.57861,-6.7749 -46.50879,-13.5499 -15.74707,-6.7749 -24.90234,-15.0146 -9.15528,-8.4229 -14.09912,-19.5923 -4.76075,-11.1694 -4.76075,-25.6348 0,-33.142 25.26856,-51.0864 25.45166,-17.9443 72.69287,-17.9443 43.94531,0 67.19971,13.5498 23.25439,13.3667 32.59277,45.7764 l -34.42383,6.0424 q -5.67627,-20.5078 -21.60644,-29.663 -15.93018,-9.3384 -44.12842,-9.3384 -30.94483,0 -47.24121,10.2539 -16.29639,10.2539 -16.29639,30.5786 0,11.9019 6.22559,19.7754 6.40869,7.6904 18.31054,13.1836 11.90186,5.31 47.42432,13.1836 11.90186,2.7466 23.62061,5.6762 11.90185,2.7466 22.70507,6.7749 10.80323,3.8453 20.14161,9.1553 9.52148,5.3101 16.47949,13.0005 6.95801,7.6904 10.80322,18.1274 4.02832,10.4371 4.02832,24.5362 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1004" /><path
+     d="m 582.30505,2779.0623 v 229.4311 h -34.79004 v -229.4311 h -88.62304 v -28.5645 H 670.9281 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1006" /><path
+     d="m 672.20984,3008.4934 v -40.1001 h 35.70557 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1008" /><path
+     d="m 1015.6957,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.97317 v -257.9956 h 183.28857 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1010" /><path
+     d="m 1209.9706,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1012" /><path
+     d="m 1418.7108,3008.4934 v -257.9956 h 195.7398 v 28.5645 H 1453.684 v 82.7636 h 149.7802 v 28.1983 H 1453.684 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1014" /><path
+     d="m 1842.0507,3008.4934 -77.4537,-112.793 -79.1015,112.793 h -38.6353 l 98.1446,-134.0332 -90.6372,-123.9624 h 38.6352 l 71.7774,101.2573 69.7631,-101.2573 h 38.6353 l -88.2568,122.6807 95.7641,135.3149 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1016" /><path
+     d="m 1923.5326,3008.4934 v -257.9956 h 34.9731 v 257.9956 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1018" /><path
+     d="m 2223.2762,2935.8005 q 0,34.4239 -25.0854,53.6499 -25.0855,19.043 -69.7632,19.043 h -104.7363 v -257.9956 h 93.75 q 90.8203,0 90.8203,62.6221 0,22.8882 -12.8174,38.4521 -12.8174,15.564 -36.2549,20.874 30.7617,3.6622 47.4243,20.691 16.6626,16.8457 16.6626,42.6635 z m -50.1709,-118.4692 q 0,-20.874 -14.2822,-29.8462 -14.2822,-8.9722 -41.3818,-8.9722 h -58.7769 v 81.6651 h 58.7769 q 28.0151,0 41.748,-10.437 13.916,-10.6202 13.916,-32.4097 z m 14.8316,115.7227 q 0,-45.5933 -64.0869,-45.5933 h -65.1856 v 93.0176 h 67.9322 q 32.0434,0 46.6919,-11.9019 14.6484,-11.9018 14.6484,-35.5224 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1021" /><path
+     d="m 2274.1796,3008.4934 v -257.9956 h 34.9731 v 229.4312 h 130.3711 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1023" /><path
+     d="m 2482.9198,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1025" /><path
+     d="m 2736.8871,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1027" /><path
+     d="m 3080.3729,2779.0623 v 95.9472 h 143.9209 v 28.9307 h -143.9209 v 104.5532 h -34.9731 v -257.9956 h 183.2886 v 28.5645 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1029" /><path
+     d="m 3457.0209,3008.4934 -67.0166,-107.1167 h -80.3833 v 107.1167 h -34.9732 v -257.9956 h 121.399 q 43.5791,0 67.1997,19.5923 23.8037,19.4092 23.8037,54.1992 0,28.7476 -16.8457,48.3399 -16.6626,19.5922 -46.1426,24.7192 l 73.2422,111.145 z m -5.127,-183.8379 q 0,-22.522 -15.3808,-34.2407 -15.1978,-11.9019 -43.9454,-11.9019 h -82.9467 v 95.2149 h 84.4116 q 27.6489,0 42.6636,-12.8174 15.1977,-13.0005 15.1977,-36.2549 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1031" /><path
+     d="m 3545.6439,3008.4934 v -257.9956 h 195.7398 v 28.5645 h -160.7666 v 82.7636 h 149.7802 v 28.1983 h -149.7802 v 89.9048 h 168.2739 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1033" /><path
+     d="m 3796.1322,3008.4934 v -257.9956 h 195.7397 v 28.5645 h -160.7666 v 82.7636 h 149.7803 v 28.1983 h -149.7803 v 89.9048 h 168.274 v 28.5644 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1035" /><path
+     d="m 4050.0995,3008.4934 v -40.1001 h 35.7056 v 40.1001 z"
+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';word-spacing:-0.01px;fill:#ffffff;fill-opacity:1"
+     id="path1037" /></g>
 
 
 </g></g></g></g><path
 
 
 </g></g></g></g><path
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.png b/docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.png
new file mode 100644 (file)
index 0000000..91bac03
Binary files /dev/null and b/docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.png differ
diff --git a/docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.svg b/docs/reference-manual/plots/GMX_logos/gmx_logo_white_no_slogan.svg
new file mode 100644 (file)
index 0000000..b8aaaa6
--- /dev/null
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="100%"
+   height="100%"
+   viewBox="0 0 6349 1603"
+   version="1.1"
+   xml:space="preserve"
+   style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
+   id="svg923"
+   sodipodi:docname="gmx_logo_blue_no_slogan.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo1.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"><metadata
+   id="metadata929"><rdf:RDF><cc:Work
+       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+   id="defs927">
+        
+    
+            
+            
+            
+        
+                
+            
+                
+
+
+            
+
+
+
+
+
+<inkscape:path-effect
+   is_visible="true"
+   id="path-effect1061"
+   effect="spiro" /><clipPath
+   id="_clip1-3"><rect
+     x="0"
+     y="0"
+     width="291.98801"
+     height="550.58301"
+     id="rect892-6" /></clipPath></defs><sodipodi:namedview
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1"
+   objecttolerance="10"
+   gridtolerance="10"
+   guidetolerance="10"
+   inkscape:pageopacity="0"
+   inkscape:pageshadow="2"
+   inkscape:window-width="2493"
+   inkscape:window-height="1385"
+   id="namedview925"
+   showgrid="false"
+   units="mm"
+   inkscape:zoom="0.1767767"
+   inkscape:cx="3630.5994"
+   inkscape:cy="590.32396"
+   inkscape:window-x="67"
+   inkscape:window-y="27"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="g1133"
+   viewbox-width="6349" />
+    
+
+<g
+   id="g1835"
+   inkscape:export-filename="/home/cathrine/Pictures/svg_files/gromacs_logo3.png"
+   inkscape:export-xdpi="300"
+   inkscape:export-ydpi="300"
+   transform="translate(107.48023,33.941125)"><g
+     transform="matrix(3.7513483,-0.46066696,0.46066696,3.7513483,4198.3338,3197.8407)"
+     id="layer1"
+     style="fill:none;fill-opacity:1;stroke:none"><g
+       style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round;stroke-miterlimit:2"
+       id="g903-7"
+       transform="matrix(0.82454635,-0.51053871,0.49150293,0.84357369,250.14362,56.767957)"><g
+         style="fill:none;fill-opacity:1;stroke:none"
+         id="g901-5"
+         transform="translate(-145.994,-275.291)"><clipPath
+           id="clipPath1706"><rect
+             id="rect1704"
+             height="550.58301"
+             width="291.98801"
+             y="0"
+             x="0" /></clipPath><g
+           style="fill:none;fill-opacity:1;stroke:none"
+           id="g899-3"
+           clip-path="url(#_clip1-3)"><g
+             style="fill:none;fill-opacity:1;stroke:none"
+             id="g897-5"
+             transform="matrix(1,0,0,-1,0,555.789)" /></g></g></g></g><g
+     id="g1146"
+     transform="translate(-208,-112)"><g
+       transform="translate(-24.46945,-27.842525)"
+       id="g1133"><g
+         id="g862"
+         transform="translate(401.67524,-2396.4028)"
+         style="fill:#ffffff;fill-opacity:1"
+         inkscape:export-xdpi="300"
+         inkscape:export-ydpi="300"><g
+           transform="matrix(1.0382229,0,0,1.0382229,-256.39873,-329.7037)"
+           id="g1066"
+           style="fill:#ffffff;fill-opacity:1"><path
+             inkscape:connector-curvature="0"
+             style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.24566934;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+             d="m 4472.724,2839.028 c -18.9578,2.7624 -40.3248,5.2475 -51.3026,12.0164 -11.1396,8.0334 -8.6273,17.2529 -6.0392,19.4534 1.809,1.7786 7.1445,4.5875 7.7607,8.6026 -0.4228,7.5868 -31.9734,4.4681 -49.3367,9.9666 -7.2041,2.4668 -12.7316,7.5949 -13.03,12.7457 0.5245,7.8067 5.4123,9.1408 10.6558,11.9072 12.7997,6.5604 26.1289,10.9848 36.7265,17.8638 5.1267,2.8708 10.0857,6.1364 17.5131,9.8687 35.0857,17.3692 77.5793,32.0888 89.6427,38.1355 142.1092,71.5868 289.4364,143.1806 426.9703,199.6938 76.0785,80.7698 164.3367,158.9248 230.4266,237.9267 -25.7919,53.9994 -49.985,95.7775 -80.7537,148.7919 -23.6163,39.4046 -40.4556,65.1229 -58.1793,92.6255 -31.679,49.9972 -66.8743,87.2218 -93.8903,137.9627 -6.4954,10.7344 -9.5722,21.3976 -9.9044,32.0771 1.4363,26.6251 54.5642,60.7762 59.3845,62.0488 15.6641,3.6803 30.6604,-6.5234 43.5538,-16.4369 35.2082,-36.6242 65.7142,-85.5701 110.2334,-128.1511 23.6708,-22.2813 44.9846,-43.5978 75.0608,-70.8665 36.1568,-33.9801 61.8854,-62.2483 91.6934,-94.3994 18.7019,-17.5404 31.7963,-16.0871 33.719,-16.4985 79.854,24.4679 144.2844,60.0159 192.0664,103.3863 125.2565,126.3629 214.8693,252.0078 330.3562,365.7604 18.3417,18.8579 34.6897,30.1905 49.189,44.9806 l 20.8798,26.8525 c 3.8362,4.6637 15.7584,15.8848 19.1887,7.0084 19.5715,13.4021 27.6858,28.3576 39.057,41.5375 11.0806,13.3361 16.0149,19.075 22.175,18.5548 6.0156,-1.414 8.406,-13.6293 7.8728,-21.4595 -3.2094,-24.1228 -5.8358,-31.2602 -4.2192,-32.8675 2.6505,-1.1501 11.231,20.0703 37.2069,13.4264 5.9021,-4.801 -3.8849,-35.1376 -17.6422,-109.3249 -49.8812,-219.313 -119.2973,-439.3267 -219.1139,-631.6945 -10.1075,-20.3354 -21.6503,-37.2484 -35.7724,-48.0076 -31.5595,-29.743 -64.6838,-50.3313 -97.71,-71.4928 -17.3384,-12.1743 -36.2474,-23.6602 -51.7595,-36.6363 -14.8342,-13.3173 -15.5681,-37.2282 -9.6343,-57.1109 4.1461,-16.1885 13.0799,-39.1769 14.8082,-46.3379 4.4695,-26.0616 2.6444,-28.9902 2.3838,-51.8805 -0.4952,-9.0998 -1.734,-13.8082 1.1824,-20.8818 4.2196,-4.4031 10.2684,-5.6178 16.8947,-3.5958 8.9415,4.4959 13.2466,3.6501 14.1668,1.2553 -7.5576,-27.932 -53.942,-48.0228 -78.3797,-41.9076 -16.1437,-2.8597 -36.5044,-0.5062 -51.168,3.3062 -27.38,8.3304 -47.6638,16.6447 -69.2986,28.0698 -18.5469,11.8969 -33.859,23.1233 -59.9307,20.6264 -20.7896,-2.3142 -31.6988,-9.0623 -41.6715,-19.0965 -56.0504,-50.7396 -93.9825,-118.0556 -151.5659,-156.0158 -262.1276,-63.1428 -498.6955,-76.6351 -750.4662,-51.7887 z m 264.0305,56.417 c 159.9113,-19.9667 324.5729,-23.2472 469.4073,22.8454 43.1939,46.7812 71.7193,96.7697 107.654,148.3676 16.0067,29.5418 26.2196,49.2028 13.7029,77.9678 -43.0219,67.1498 -89.9084,147.925 -130.1207,224.3075 2.3444,33.8873 -173.2045,-190.0312 -222.8195,-218.8444 -151.0521,-85.8808 -164.3419,-68.086 -391.3982,-204.1467 -13.2274,-9.3868 -25.7352,-24.6771 43.9285,-34.4096 36.0945,-5.9832 72.7431,-11.4799 109.6457,-16.0876 z m 869.1232,128.3286 c 6.0803,-0.6956 16.5846,-0.1211 29.4077,8.7091 -5.0815,5.5993 -3.3648,11.7192 -1.8377,17.9811 -14.0341,-6.0056 -28.6087,7.7408 -50.1267,11.4647 18.6917,-6.7253 26.7702,-18.3786 18.0302,-37.2941 0.9662,-0.2556 2.4998,-0.629 4.5265,-0.8608 z m -41.1628,13.7131 c 6.9488,0.6361 4.5155,0.3006 9.3643,3.1379 -6.3991,11.9879 -12.9412,18.4014 -24.6018,17.6064 -9.7285,-0.6954 -13.0845,-5.4165 -19.6897,-12.5944 l 8.6041,-2.1074 c 8.666,18.6462 27.6935,10.266 28.1142,0.4182 -0.721,-5.051 -1.7911,-6.4607 -1.7911,-6.4607 z m -78.4439,38.8134 c 15.5839,-2.1115 35.9956,22.192 31.2327,39.708 29.7288,17.9783 43.4401,-7.0169 59.6827,-20.6609 33.5569,-24.2906 43.1726,-22.9036 55.2037,-22.5371 2.3616,26.9868 -0.3589,55.3656 -16.2096,95.3546 -21.3966,108.611 -67.2419,153.814 -114.2861,203.297 -95.4006,102.3124 -194.4115,197.3584 -306.3666,282.9392 -23.814,16.5585 -42.3253,26.3784 -64.1697,18.4767 -1.9597,-33.7382 7.4207,-64.4014 20.1406,-99.9422 25.769,-60.4901 52.0083,-117.3891 74.0673,-181.1438 57.2573,-136.022 107.5282,-191.7775 159.3703,-248.0693 27.2496,-23.9096 35.7193,-33.3759 44.6733,-34.3692 10.7218,12.4703 45.5714,17.6662 48.7409,12.6162 -7.1769,-2.2219 -8.0167,-5.4195 -8.452,-11.316 0.4076,-23.6723 7.6303,-33.1687 16.3725,-34.3532 z m 161.1188,237.8463 c 28.0024,8.7342 81.7988,43.2495 136.4539,65.5957 121.0474,197.8343 157.6045,459.3213 163.2438,599.3057 -0.1232,44.4924 -5.4683,37.3925 -20.2029,29.7605 -162.1516,-106.6331 -256.5636,-276.941 -379.4814,-391.6809 -75.8563,-44.5235 -158.3274,-60.1941 -179.4496,-82.2076 123.4449,-106.0988 217.8761,-193.9501 279.4362,-220.7734 z m -496.583,210.049 c 4.885,-0.4003 -1.9247,16.0829 -4.7542,22.7708 -16.4841,35.7763 -24.246,76.6615 -34.9148,114.3483 -7.0672,21.3877 -17.8468,29.2058 -28.4427,27.8974 -12.1031,-2.3877 -31.3177,-18.522 -22.597,-36.0457 25.7669,-39.0258 46.7247,-85.1813 81.3436,-121.9547 4.8078,-4.8737 7.7367,-6.8826 9.3651,-7.0161 z m 38.113,151.7084 c 11.9834,-1.4948 -49.4683,53.1241 -64.7175,60.0388 -19.8565,-17.9957 24.4173,-39.2974 39.2585,-46.2391 14.5789,-9.3925 22.4044,-13.4187 25.459,-13.7997 z m -165.3916,25.3968 c 6.2934,17.5559 22.1194,24.4918 32.2983,30.1967 -6.1257,8.0037 -10.354,13.264 -17.1683,19.1868 -12.387,-6.7117 -23.4968,-11.0497 -30.9995,-25.4367 5.4321,-10.2873 9.3252,-15.998 15.8695,-23.9468 z m -34.948,52.7684 c 6.4811,9.3107 17.3246,20.1472 27.5938,24.7844 -3.8276,5.7796 -7.9643,12.0472 -13.7468,16.844 -11.5716,-4.3951 -23.5249,-15.7268 -28.3888,-22.8783 4.5122,-8.5268 10.5423,-16.0767 14.5418,-18.7501 z m 92.1855,-3.0753 c 7.3777,14.2244 15.8534,16.7713 21.3392,20.0977 -3.0992,4.2721 -5.3618,9.0567 -14.7873,15.6298 -5.0433,-1.0176 -16.7497,-10.7206 -20.4317,-19.5184 5.8006,-8.7454 8.2719,-10.266 13.8798,-16.2091 z m -39.8805,46.894 c 4.8069,9.4466 11.117,16.4588 20.6656,19.8361 -3.8242,7.8868 -6.8513,10.4991 -12.5394,14.4171 -3.4977,-2.1856 -11.9327,-6.6504 -20.8518,-18.6286 5.2785,-7.6273 7.8258,-10.0848 12.7256,-15.6246 z m -94.3688,23.5625 c 12.6327,22.0171 35.8732,34.3814 56.5276,51.9881 -2.6202,1.9653 -2.9157,8.0504 -7.6367,8.7204 -19.313,-9.8515 -40.5709,-24.8798 -55.6173,-49.3193 2.7544,-5.2895 2.9364,-6.7685 6.7264,-11.3892 z"
+             id="rect1188" /><path
+             inkscape:connector-curvature="0"
+             style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.29999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             d="m 5615.2719,3031.0101 c 0.075,-1.2289 0.6651,-4.6992 2.7475,-4.0926 2.2666,1.5467 3.7201,3.9506 4.3543,7.8539 0.2282,1.9516 0.2476,3.5697 -2.5883,1.3807 -1.4708,-1.3462 -2.0008,-1.608 -4.5135,-5.142 z"
+             id="path1103-2" /></g><g
+           id="g1073"
+           transform="matrix(1.0342128,0,0,1.0342128,67.017812,-48.592069)"
+           style="fill:#ffffff;fill-opacity:1"><g
+   aria-label="GROMACS"
+   style="font-weight:700;font-size:937.5px;font-family:KannadaMN-Bold, 'Kannada MN';fill:#ffffff;fill-opacity:1;stroke-width:1.5625"
+   id="text907"
+   transform="translate(0,-225.43394)"><path
+     d="m 40.619354,3755.5344 q 52.642823,0 102.081296,-15.1062 49.43848,-15.5639 76.44654,-39.3677 v -89.2639 H 61.676483 v -99.7924 H 342.74338 v 237.1215 q -51.26953,52.6429 -133.66699,82.3975 -81.9397,29.7546 -172.119145,29.7546 -157.470705,0 -242.156985,-86.9751 -84.68628,-87.4328 -84.68628,-247.6501 0,-159.3018 85.14405,-243.988 85.14404,-85.1441 244.903561,-85.1441 227.050779,0 288.848879,167.9993 l -124.51172,37.5366 q -20.1416,-48.9807 -63.17139,-74.1577 -43.029783,-25.177 -101.165769,-25.177 -95.214844,0 -144.653321,57.6782 -49.43848,57.6782 -49.43848,165.2527 0,109.4055 50.81177,169.3725 51.269533,59.5093 143.737794,59.5093 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1021"
+     inkscape:connector-curvature="0" /><path
+     d="M 906.59048,3852.1226 756.90176,3607.219 H 598.51553 v 244.9036 H 463.47525 v -644.9891 h 322.26563 q 115.35644,0 178.07006,49.8963 62.71366,49.4385 62.71366,142.3645 0,67.749 -38.45218,117.1875 -38.45215,48.9807 -103.91236,64.5447 l 174.40794,270.9961 z m -16.02172,-447.2351 q 0,-92.9261 -119.01856,-92.9261 H 598.51553 v 190.4297 h 176.69678 q 56.7627,0 86.05957,-25.6348 29.29688,-25.6347 29.29688,-71.8688 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1023"
+     inkscape:connector-curvature="0" /><path
+     d="m 1761.3517,3526.6526 q 0,100.708 -39.8255,177.1545 -39.8254,76.4466 -113.9831,117.1875 -74.1578,40.2832 -173.0347,40.2832 -151.9775,0 -238.4949,-89.2639 -86.0596,-89.7217 -86.0596,-245.3613 0,-155.1819 86.0596,-242.157 86.0596,-86.9751 239.4104,-86.9751 153.3508,0 239.4104,87.8906 86.5174,87.8907 86.5174,241.2415 z m -137.7869,0 q 0,-104.3701 -49.4385,-163.4216 -49.4385,-59.5093 -138.7024,-59.5093 -90.6372,0 -140.0757,59.0515 -49.4384,58.5937 -49.4384,163.8794 0,106.2012 50.354,167.5415 50.8117,60.8826 138.2446,60.8826 90.6372,0 139.6179,-59.5093 49.4385,-59.5093 49.4385,-168.9148 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1025"
+     inkscape:connector-curvature="0" /><path
+     d="m 2396.4887,3852.1226 v -390.9302 q 0,-13.2752 0,-26.5503 0.4578,-13.2752 4.5777,-113.9832 -32.5012,123.1385 -48.0652,171.6614 l -116.272,359.8023 h -96.1304 l -116.2719,-359.8023 -48.9807,-171.6614 q 5.4931,106.2012 5.4931,140.5335 v 390.9302 h -119.9341 v -644.9891 h 180.8167 l 115.3564,360.7178 10.0708,34.7901 21.9727,86.5173 28.8391,-103.4546 118.5608,-378.5706 h 179.9011 v 644.9891 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1027"
+     inkscape:connector-curvature="0" /><path
+     d="m 3101.1081,3852.1226 -57.2204,-164.795 h -245.8191 l -57.2205,164.795 h -135.0403 l 235.2906,-644.9891 h 159.3017 l 234.375,644.9891 z m -180.3589,-545.6543 -2.7465,10.0708 q -4.5777,16.4795 -10.9864,37.5366 -6.4087,21.0571 -78.7353,231.6284 h 185.3943 l -63.6292,-185.3943 -19.6838,-62.2558 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1029"
+     inkscape:connector-curvature="0" /><path
+     d="m 3602.8142,3755.0767 q 122.2229,0 169.8303,-122.6807 l 117.6453,44.4031 q -37.9944,93.3838 -111.6944,139.1601 -73.2422,45.3186 -175.7812,45.3186 -155.6397,0 -240.7837,-87.8906 -84.6863,-88.3484 -84.6863,-246.7346 0,-158.844 81.9397,-243.988 81.9397,-85.1441 237.5794,-85.1441 113.5253,0 184.9365,45.7764 71.4111,45.3186 100.2502,133.667 l -119.0185,32.5012 q -15.1062,-48.523 -59.5093,-76.9043 -43.9453,-28.8391 -103.9124,-28.8391 -91.5527,0 -139.1601,56.7627 -47.1497,56.7627 -47.1497,166.1682 0,111.2366 48.523,169.8303 48.9807,58.5938 140.9912,58.5938 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1031"
+     inkscape:connector-curvature="0" /><path
+     d="m 4505.0666,3666.2705 q 0,94.7571 -70.4956,145.1111 -70.0378,49.8962 -205.9936,49.8962 -124.054,0 -194.5496,-43.9453 -70.4956,-43.9453 -90.6372,-133.2092 l 130.4626,-21.5149 q 13.2752,51.2695 51.7273,74.6155 38.4522,22.8882 106.659,22.8882 141.4489,0 141.4489,-86.0596 0,-27.4658 -16.4794,-45.3186 -16.0218,-17.8528 -45.7764,-29.7547 -29.2969,-11.9018 -113.0676,-28.8391 -72.3267,-16.9372 -100.708,-27.008 -28.3814,-10.5286 -51.2696,-24.2615 -22.8882,-14.1907 -38.9099,-33.8745 -16.0217,-19.6838 -25.177,-46.2341 -8.6975,-26.5503 -8.6975,-60.8826 0,-87.4329 65.4602,-133.667 65.918,-46.6919 191.3452,-46.6919 119.9341,0 179.9011,37.5366 60.4248,37.5367 77.8199,124.054 l -130.9204,17.8528 q -10.0708,-41.6565 -41.1988,-62.7137 -30.6701,-21.0571 -88.3484,-21.0571 -122.6806,0 -122.6806,76.9043 0,25.177 12.8174,41.1987 13.2751,16.0218 38.9099,27.4659 25.6347,10.9863 103.9123,27.9235 92.926,19.6839 132.7515,36.6211 40.2832,16.4795 63.6291,38.91 23.346,21.9726 35.7056,53.1005 12.3596,30.6702 12.3596,70.9534 z"
+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff;fill-opacity:1"
+     id="path1033"
+     inkscape:connector-curvature="0" /></g>
+
+
+
+
+
+</g></g></g></g><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1022"
+     inkscape:connector-curvature="0" /><path
+     style="opacity:1;fill:#00ffff;fill-opacity:1;stroke:#000000;stroke-width:0.01852302;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     d=""
+     id="path1024"
+     inkscape:connector-curvature="0" /></g>
+<flowRoot
+   xml:space="preserve"
+   id="flowRoot27"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:96px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion29"><rect
+       id="rect31"
+       width="2827.7173"
+       height="480.60019"
+       x="435.89319"
+       y="-1055.199" /></flowRegion><flowPara
+     id="flowPara33" /></flowRoot><flowRoot
+   xml:space="preserve"
+   id="flowRoot1713"
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:KannadaMN-Bold, 'Kannada MN';-inkscape-font-specification:'KannadaMN-Bold, Kannada MN';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"><flowRegion
+     id="flowRegion1715"><rect
+       id="rect1717"
+       width="829.83124"
+       height="284.51358"
+       x="1311.9237"
+       y="1882.0675" /></flowRegion><flowPara
+     id="flowPara1719" /></flowRoot></svg>
\ No newline at end of file
index 4b884a69f36fa9eb9b694b853ff472924081cfb6..9eb10dae2c77d6be894e25fd730cd5919173cec5 100644 (file)
@@ -19,9 +19,34 @@ Fixes where mdrun could behave incorrectly
 Fixes for ``gmx`` tools
 ^^^^^^^^^^^^^^^^^^^^^^^
 
 Fixes for ``gmx`` tools
 ^^^^^^^^^^^^^^^^^^^^^^^
 
+Fix periodic boundary conditions in analysis framework tools
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+
+There was a bug in the trajectory analysis framework which caused
+molecules that were broken over PBC not to be made whole. This would
+usually lead to obviously incorrect outliers in analysis output.
+
+:issue:`3900`
+
+Fix range checking bug in gmx covar
+"""""""""""""""""""""""""""""""""""
+
+A check was inverted causing range checking to be applied wrong.
+
+:issue:`3902`
+
 Fixes that affect portability
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Fixes that affect portability
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
+Fixed compilation on Cygwin
+"""""""""""""""""""""""""""
+
+A |Gromacs| header file was not including the necessary standard
+header. A problem with the ``M_PI`` math constant defined only by
+POSIX and not by C++ was also worked around.
+
+:issue:`3890`
+
 Miscellaneous
 ^^^^^^^^^^^^^
 Miscellaneous
 ^^^^^^^^^^^^^
-
+* Updated |Gromacs| logos
index 91f8cca080fa528083c76d2dd3f0b83960cc83b7..dfa74e3dba3c31f8aedbf15b356520871d58cba4 100644 (file)
@@ -52,6 +52,7 @@ The environment variables that had exactly the same meaning in OpenCL and CUDA w
 Dysfunctional parts of the QMMM interface has been removed
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""
 
 Dysfunctional parts of the QMMM interface has been removed
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""
 
-Currently, GROMACS supports QM/MM officially only via MiMiC. All other QM/MM
+Currently, GROMACS supports QM/MM officially only via MiMiC; a new CP2K QM/MM interface is being
+developed within BioExcel. All other QM/MM
 support has been untested and likely dysfunctional for years and has now been removed from .mdp
 input and output, resulting in smaller .mdp output files from grompp.
 support has been untested and likely dysfunctional for years and has now been removed from .mdp
 input and output, resulting in smaller .mdp output files from grompp.
index e850736ec45f0a4c378bb7cea7d87b0b29b8c2da..57f73c60d0e3247a737c8a64f3a47f5eeccdd8d1 100644 (file)
@@ -61,8 +61,9 @@ if(BUILD_TESTING AND GMX_BUILD_UNITTESTS)
             )
     target_compile_definitions(gtest PUBLIC GTEST_LANG_CXX11)
     if (CYGWIN)
             )
     target_compile_definitions(gtest PUBLIC GTEST_LANG_CXX11)
     if (CYGWIN)
-        # Ensure GoogleTest can find POSIX things it needs
-        target_compile_definitions(gtest PRIVATE _POSIX_C_SOURCE=200809L)
+        # Ensure GoogleTest and things that use it can find
+        # POSIX things needed by GoogleTest
+        target_compile_definitions(gtest PUBLIC _POSIX_C_SOURCE=200809L)
     endif()
     gmx_target_warning_suppression(gmock -Wno-deprecated-copy HAVE_NO_DEPRECATED_COPY)
 
     endif()
     gmx_target_warning_suppression(gmock -Wno-deprecated-copy HAVE_NO_DEPRECATED_COPY)
 
index 06b4937cafcf0a6c98e288a5a8c1664b6c0734de..dca7464ba7813544b4d0aea99718e05943b74028 100644 (file)
@@ -1125,7 +1125,7 @@ static void print_dd_load_av(FILE* fplog, gmx_domdec_t* dd)
     fprintf(fplog, "\n");
     fprintf(stderr, "\n");
 
     fprintf(fplog, "\n");
     fprintf(stderr, "\n");
 
-    if (lossFraction >= DD_PERF_LOSS_WARN)
+    if ((lossFraction >= DD_PERF_LOSS_WARN) && (dd->comm->dlbState != DlbState::offTemporarilyLocked))
     {
         std::string message = gmx::formatString(
                 "NOTE: %.1f %% of the available CPU time was lost due to load imbalance\n"
     {
         std::string message = gmx::formatString(
                 "NOTE: %.1f %% of the available CPU time was lost due to load imbalance\n"
@@ -1133,9 +1133,16 @@ static void print_dd_load_av(FILE* fplog, gmx_domdec_t* dd)
                 lossFraction * 100);
 
         bool hadSuggestion = false;
                 lossFraction * 100);
 
         bool hadSuggestion = false;
-        if (!isDlbOn(comm))
+        if (dd->comm->dlbState == DlbState::offUser)
         {
         {
-            message += "      You might want to use dynamic load balancing (option -dlb.)\n";
+            message += "      You might want to allow dynamic load balancing (option -dlb auto.)\n";
+            hadSuggestion = true;
+        }
+        else if (dd->comm->dlbState == DlbState::offCanTurnOn)
+        {
+            message +=
+                    "      Dynamic load balancing was automatically disabled, but it might be "
+                    "beneficial to manually tuning it on (option -dlb on.)\n";
             hadSuggestion = true;
         }
         else if (dlbWasLimited)
             hadSuggestion = true;
         }
         else if (dlbWasLimited)
@@ -1151,7 +1158,6 @@ static void print_dd_load_av(FILE* fplog, gmx_domdec_t* dd)
                 "      considerable inhomogeneity in the simulated system.",
                 hadSuggestion ? "also " : "");
 
                 "      considerable inhomogeneity in the simulated system.",
                 hadSuggestion ? "also " : "");
 
-
         fprintf(fplog, "%s\n", message.c_str());
         fprintf(stderr, "%s\n", message.c_str());
     }
         fprintf(fplog, "%s\n", message.c_str());
         fprintf(stderr, "%s\n", message.c_str());
     }
index a6a07535cac1a49034a085c2fcd2c787c59086b4..33c3fae1bc9bd96a9e3f53ec7756792af671354b 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
- * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2018,2019,2020,2021, 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.
  * 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.
@@ -73,27 +73,25 @@ namespace
 /*! \brief Throw an error if any element in index exceeds a given number.
  *
  * \param[in] indices to be acessed
 /*! \brief Throw an error if any element in index exceeds a given number.
  *
  * \param[in] indices to be acessed
- * \param[in] largestOkayIndex to be accessed
+ * \param[in] numAtoms to be accessed
  * \param[in] indexUsagePurpose to be more explicit in the error message
  *
  * \param[in] indexUsagePurpose to be more explicit in the error message
  *
- * \throws RangeError if largestOkayIndex is larger than any element in indices
+ * \throws RangeError if any element in indices is larger than or equal numAtoms
  *
  */
  *
  */
-void throwErrorIfIndexOutOfBounds(ArrayRef<const int> indices,
-                                  const int           largestOkayIndex,
-                                  const std::string&  indexUsagePurpose)
+void throwErrorIfIndexOutOfBounds(ArrayRef<const int> indices, const int numAtoms, const std::string& indexUsagePurpose)
 {
     // do nothing if index is empty
 {
     // do nothing if index is empty
-    if (indices.ssize() == 0)
+    if (indices.empty())
     {
         return;
     }
     const int largestIndex = *std::max_element(indices.begin(), indices.end());
     {
         return;
     }
     const int largestIndex = *std::max_element(indices.begin(), indices.end());
-    if (largestIndex < largestOkayIndex)
+    if (largestIndex >= numAtoms)
     {
     {
-        GMX_THROW(RangeError("The provided structure file only contains "
-                             + std::to_string(largestOkayIndex) + " coordinates, but coordinate index "
-                             + std::to_string(largestIndex) + " was requested for " + indexUsagePurpose
+        GMX_THROW(RangeError("The provided structure file only contains " + std::to_string(numAtoms)
+                             + " coordinates, but coordinate index " + std::to_string(largestIndex + 1)
+                             + " was requested for " + indexUsagePurpose
                              + ". Make sure to update structure files "
                                "and index files if you store only a part of your system."));
     }
                              + ". Make sure to update structure files "
                                "and index files if you store only a part of your system."));
     }
index af370d5e719ff270ea3f530b5f19613a715c3151..5ee31602a3bfa2be660374604f57ac2c7cc4d479 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013-2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2013-2019,2020,2021, 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.
  * 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.
@@ -80,6 +80,21 @@ static int pdbasearch_atom(const char*              name,
     return search_atom(name, i, pdba, searchtype, bAllowMissing, cyclicBondsIndex);
 }
 
     return search_atom(name, i, pdba, searchtype, bAllowMissing, cyclicBondsIndex);
 }
 
+/*! \brief Return the index of the first atom whose residue index
+ * matches and which has a patch with the given name.
+ *
+ * \param[out] ii      Index of the first atom in the residue that matches,
+ *                       -1 if no match occurs.
+ * \param[out] jj      Index of the patch that matches,
+ *                       unchanged if no match occurs.
+ * \param[in]  name    Name of the desired patch to match
+ * \param[in]  patches The patch database to search
+ * \param[in]  resind  The residue index to match
+ * \param[in]  pdba    The atoms to work with
+ *
+ * \todo The short-circuit logic will be simpler if this returned a
+ * std::pair<int, int> as soon as the first double match is found.
+ */
 static void hacksearch_atom(int*                                            ii,
                             int*                                            jj,
                             const char*                                     name,
 static void hacksearch_atom(int*                                            ii,
                             int*                                            jj,
                             const char*                                     name,
@@ -105,6 +120,10 @@ static void hacksearch_atom(int*                                            ii,
             {
                 *ii = i;
                 *jj = j;
             {
                 *ii = i;
                 *jj = j;
+                if (*ii >= 0)
+                {
+                    break;
+                }
             }
             j++;
         }
             }
             j++;
         }
@@ -220,8 +239,11 @@ static void expand_hackblocks_one(const MoleculePatchDatabase& newPatch,
                 if (singlePatch.tp == 10 && k == 2)
                 {
                     /* This is a water virtual site, not a hydrogen */
                 if (singlePatch.tp == 10 && k == 2)
                 {
                     /* This is a water virtual site, not a hydrogen */
-                    /* Ugly hardcoded name hack */
-                    patch->nname.assign("M");
+                    /* Ugly hardcoded name hack to replace 'H' with 'M' */
+                    GMX_RELEASE_ASSERT(
+                            !patch->nname.empty() && patch->nname[0] == 'H',
+                            "Water virtual site should be named starting with H at this point");
+                    patch->nname[0] = 'M';
                 }
                 else if (singlePatch.tp == 11 && k >= 2)
                 {
                 }
                 else if (singlePatch.tp == 11 && k >= 2)
                 {
index f9bac4c8282411917c0e7fab95b2b0bbd5017e09..fd5fcfc7c69d58ac41f721eb330ecf515c0599ce 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2018,2019,2020,2021, 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.
  * 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.
@@ -65,7 +65,7 @@ using test::CommandLine;
 
 //! Test parameter struct.
 using CommandLineOptionParams =
 
 //! Test parameter struct.
 using CommandLineOptionParams =
-        std::tuple<std::string, std::string, std::string, std::string, std::string, std::string, int>;
+        std::tuple<std::string, std::string, std::string, std::string, std::string, std::string, int, bool>;
 
 /*! \brief Strings containing regular expressions for lines to skip
  * when matching.
 
 /*! \brief Strings containing regular expressions for lines to skip
  * when matching.
@@ -94,6 +94,8 @@ public:
     Pdb2gmxTest()
     {
         int outputFileType = std::get<6>(GetParam());
     Pdb2gmxTest()
     {
         int outputFileType = std::get<6>(GetParam());
+        // If the file type of the output configuration is one
+        // commonly used (ie. pdb, gro), then check its content.
         if (outputFileType == efPDB)
         {
             // If we're writing PDB output, we are interested in
         if (outputFileType == efPDB)
         {
             // If we're writing PDB output, we are interested in
@@ -103,9 +105,9 @@ public:
             ExactTextMatch settings;
             setOutputFile("-o", outputfile.c_str(), TextFileMatch(settings));
         }
             ExactTextMatch settings;
             setOutputFile("-o", outputfile.c_str(), TextFileMatch(settings));
         }
-        else
+        else if (outputFileType == efGRO)
         {
         {
-            setOutputFile("-o", "conf.gro", ConfMatch());
+            setOutputFile("-o", "conf.gro", ConfMatch().matchFullConfiguration(std::get<7>(GetParam())));
         }
         setOutputFile("-p", "topol.top", TextFileMatch(c_textMatcher));
     }
         }
         setOutputFile("-p", "topol.top", TextFileMatch(c_textMatcher));
     }
@@ -151,7 +153,8 @@ INSTANTIATE_TEST_CASE_P(ForOplsaa,
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 #endif
 
 #if GROMOS
 #endif
 
 #if GROMOS
@@ -166,7 +169,8 @@ INSTANTIATE_TEST_CASE_P(ForGromos43a1,
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 
 INSTANTIATE_TEST_CASE_P(ForGromos53a6,
                         Pdb2gmxTest,
 
 INSTANTIATE_TEST_CASE_P(ForGromos53a6,
                         Pdb2gmxTest,
@@ -179,7 +183,8 @@ INSTANTIATE_TEST_CASE_P(ForGromos53a6,
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 #endif
 
 #if AMBER
 #endif
 
 #if AMBER
@@ -194,7 +199,18 @@ INSTANTIATE_TEST_CASE_P(ForAmber99sb_ildn,
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
+INSTANTIATE_TEST_CASE_P(ForAmber99sb_ildnWithTip4p,
+                        Pdb2gmxTest,
+                        ::testing::Combine(::testing::Values("amber99sb-ildn"),
+                                           ::testing::Values("tip4p"),
+                                           ::testing::Values("none"),
+                                           ::testing::Values("id_or_ter"),
+                                           ::testing::Values("no"),
+                                           ::testing::Values("tip4p.pdb"),
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(true)));
 #endif
 
 #if CHARMM
 #endif
 
 #if CHARMM
@@ -209,7 +225,8 @@ INSTANTIATE_TEST_CASE_P(ForCharmm27,
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
                                                              "fragment2.pdb",
                                                              "fragment3.pdb",
                                                              "fragment4.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 
 
 INSTANTIATE_TEST_CASE_P(ChainSep,
 
 
 INSTANTIATE_TEST_CASE_P(ChainSep,
@@ -220,7 +237,8 @@ INSTANTIATE_TEST_CASE_P(ChainSep,
                                            ::testing::Values("id", "ter", "id_or_ter", "id_and_ter"),
                                            ::testing::Values("all", "no"),
                                            ::testing::Values("chainTer.pdb"),
                                            ::testing::Values("id", "ter", "id_or_ter", "id_and_ter"),
                                            ::testing::Values("all", "no"),
                                            ::testing::Values("chainTer.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 
 INSTANTIATE_TEST_CASE_P(ChainChanges,
                         Pdb2gmxTest,
 
 INSTANTIATE_TEST_CASE_P(ChainChanges,
                         Pdb2gmxTest,
@@ -230,7 +248,8 @@ INSTANTIATE_TEST_CASE_P(ChainChanges,
                                            ::testing::Values("id", "ter", "id_or_ter", "id_and_ter"),
                                            ::testing::Values("no"),
                                            ::testing::Values("two-fragments.pdb"),
                                            ::testing::Values("id", "ter", "id_or_ter", "id_and_ter"),
                                            ::testing::Values("no"),
                                            ::testing::Values("two-fragments.pdb"),
-                                           ::testing::Values(efPDB)));
+                                           ::testing::Values(efPDB),
+                                           ::testing::Values(false)));
 
 INSTANTIATE_TEST_CASE_P(ForCharmm27CyclicSystem,
                         Pdb2gmxTest,
 
 INSTANTIATE_TEST_CASE_P(ForCharmm27CyclicSystem,
                         Pdb2gmxTest,
@@ -241,7 +260,8 @@ INSTANTIATE_TEST_CASE_P(ForCharmm27CyclicSystem,
                                            ::testing::Values("no", "all"),
                                            ::testing::Values("cyclic-rna.pdb",
                                                              "cyclic-protein-small.pdb"),
                                            ::testing::Values("no", "all"),
                                            ::testing::Values("cyclic-rna.pdb",
                                                              "cyclic-protein-small.pdb"),
-                                           ::testing::Values(efGRO)));
+                                           ::testing::Values(efGRO),
+                                           ::testing::Values(false)));
 #endif
 
 } // namespace
 #endif
 
 } // namespace
diff --git a/src/gromacs/gmxpreprocess/tests/refdata/ForAmber99sb_ildnWithTip4p_Pdb2gmxTest_ProducesMatchingTopology_0.xml b/src/gromacs/gmxpreprocess/tests/refdata/ForAmber99sb_ildnWithTip4p_Pdb2gmxTest_ProducesMatchingTopology_0.xml
new file mode 100644 (file)
index 0000000..de032d5
--- /dev/null
@@ -0,0 +1,60 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl" href="referencedata.xsl"?>
+<ReferenceData>
+  <OutputFiles Name="Files">
+    <File Name="-o">
+      <GroFile Name="Header">
+        <String Name="Title">TIP4p ice to test that MW is handled correctly</String>
+        <Int Name="Number of atoms">8</Int>
+      </GroFile>
+      <String Name="Configuration"><![CDATA[
+    1HO4     OW    1  -2.474  -5.526  -0.497
+    1HO4    HW1    2  -2.393  -5.526  -0.439
+    1HO4    HW2    3  -2.556  -5.526  -0.439
+    1HO4     MW    4  -2.484  -5.527  -0.485
+    2HO4     OW    5  -2.496  -5.242  -0.878
+    2HO4    HW1    6  -2.415  -5.242  -0.820
+    2HO4    HW2    7  -2.496  -5.160  -0.936
+    2HO4     MW    8  -2.482  -5.239  -0.874
+   0.16330   0.36715   0.49637
+]]></String>
+    </File>
+    <File Name="-p">
+      <String Name="Contents"><![CDATA[
+;
+;
+;      This is a standalone topology file
+;
+;      Created by:
+;      
+;      Command line:
+;      Force field was read from the standard GROMACS share directory.
+;
+
+; Include forcefield parameters
+#include "amber99sb-ildn.ff/forcefield.itp"
+
+; Include water topology
+#include "amber99sb-ildn.ff/tip4p.itp"
+
+#ifdef POSRES_WATER
+; Position restraint for each water oxygen
+[ position_restraints ]
+;  i funct       fcx        fcy        fcz
+   1    1       1000       1000       1000
+#endif
+
+; Include topology for ions
+#include "amber99sb-ildn.ff/ions.itp"
+
+[ system ]
+; Name
+TIP4p ice to test that MW is handled correctly
+
+[ molecules ]
+; Compound        #mols
+SOL                 2
+]]></String>
+    </File>
+  </OutputFiles>
+</ReferenceData>
diff --git a/src/gromacs/gmxpreprocess/tests/tip4p.pdb b/src/gromacs/gmxpreprocess/tests/tip4p.pdb
new file mode 100644 (file)
index 0000000..eb55c00
--- /dev/null
@@ -0,0 +1,9 @@
+TITLE     TIP4p ice to test that MW is handled correctly
+ATOM      1  OW  SOL A   1     -24.744 -55.257  -4.969  1.00  1.00      A    O
+ATOM      2  HW1 SOL A   1     -25.692 -55.390  -4.996  1.00  0.00      A    H
+ATOM      3  HW2 SOL A   1     -24.532 -55.232  -4.035  1.00  0.00      A    H
+ATOM      4  MW  SOL A   1     -24.838 -55.271  -4.853  1.00  0.00      A    O
+ATOM      5  OW  SOL A   2     -24.964 -52.416  -8.778  1.00  1.00      A    O
+ATOM      6  HW1 SOL A   2     -24.502 -52.770  -8.018  1.00  0.00      A    H
+ATOM      7  HW2 SOL A   2     -24.314 -51.874  -9.224  1.00  0.00      A    H
+ATOM      8  MW  SOL A   2     -24.822 -52.393  -8.738  1.00  0.00      A    O
index d3cf97713abce87ee2e31c8095b5926a31d7ba78..ad7c7657e761a775aa3e930aaa9f4686978c97cc 100644 (file)
@@ -39,6 +39,8 @@
 #ifndef GMX_MDLIB_STAT_H
 #define GMX_MDLIB_STAT_H
 
 #ifndef GMX_MDLIB_STAT_H
 #define GMX_MDLIB_STAT_H
 
+#include <cstdint>
+
 #include "gromacs/math/vectypes.h"
 
 struct gmx_ekindata_t;
 #include "gromacs/math/vectypes.h"
 
 struct gmx_ekindata_t;
index 57d791be2a85f7d4945f9bd1db2173336ee677ee..2d2e90791e9833d227ee3640ab0483086da09da0 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2017,2018,2019,2020,2021, 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.
  * 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.
@@ -212,11 +212,11 @@ struct gpu_plist
     int excl_nalloc;
 
     /* parameter+variables for normal and rolling pruning */
     int excl_nalloc;
 
     /* parameter+variables for normal and rolling pruning */
-    //! true after search, indictes that initial pruning with outer prunning is needed
+    //! true after search, indicates that initial pruning with outer pruning is needed
     bool haveFreshList;
     bool haveFreshList;
-    //! the number of parts/steps over which one cyle of roling pruning takes places
+    //! the number of parts/steps over which one cycle of rolling pruning takes places
     int rollingPruningNumParts;
     int rollingPruningNumParts;
-    //! the next part to which the roling pruning needs to be applied
+    //! the next part to which the rolling pruning needs to be applied
     int rollingPruningPart;
 };
 
     int rollingPruningPart;
 };
 
index 2a2a394cae417fba976f71d7637425057d8dee48..9fe755c586006afabb0849d592cbd4fece5e83d5 100644 (file)
@@ -191,16 +191,18 @@ void init_plist(gpu_plist* pl)
     pl->excl  = nullptr;
 
     /* size -1 indicates that the respective array hasn't been initialized yet */
     pl->excl  = nullptr;
 
     /* size -1 indicates that the respective array hasn't been initialized yet */
-    pl->na_c          = -1;
-    pl->nsci          = -1;
-    pl->sci_nalloc    = -1;
-    pl->ncj4          = -1;
-    pl->cj4_nalloc    = -1;
-    pl->nimask        = -1;
-    pl->imask_nalloc  = -1;
-    pl->nexcl         = -1;
-    pl->excl_nalloc   = -1;
-    pl->haveFreshList = false;
+    pl->na_c                   = -1;
+    pl->nsci                   = -1;
+    pl->sci_nalloc             = -1;
+    pl->ncj4                   = -1;
+    pl->cj4_nalloc             = -1;
+    pl->nimask                 = -1;
+    pl->imask_nalloc           = -1;
+    pl->nexcl                  = -1;
+    pl->excl_nalloc            = -1;
+    pl->haveFreshList          = false;
+    pl->rollingPruningNumParts = 0;
+    pl->rollingPruningPart     = 0;
 }
 
 void init_timings(gmx_wallclock_gpu_nbnxn_t* t)
 }
 
 void init_timings(gmx_wallclock_gpu_nbnxn_t* t)
index ee79717113fd60a3c101a52c99a8484aa7025082..9f8f591dd7e92f6509d05d9afc341c157f192817 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
- * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2018,2019,2020,2021, 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.
  * 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.
@@ -76,7 +76,8 @@ static t_graph* gmx_rmpbc_get_graph(gmx_rmpbc_t gpbc, PbcType pbcType, int natom
     int            i;
     rmpbc_graph_t* gr;
 
     int            i;
     rmpbc_graph_t* gr;
 
-    if (pbcType == PbcType::No || nullptr == gpbc || nullptr == gpbc->idef || gpbc->idef->ntypes <= 0)
+    if (pbcType == PbcType::No || nullptr == gpbc
+        || (nullptr == gpbc->interactionDefinitions && (nullptr == gpbc->idef || gpbc->idef->ntypes <= 0)))
     {
         return nullptr;
     }
     {
         return nullptr;
     }
index 3fd50276cbfc93c058bef27e6c502842c4c94ca5..c9fe48523467e426b889df9df362528f6ec073e7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2017,2018,2019,2020,2021, 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.
  * 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.
@@ -48,6 +48,7 @@
 
 #include "gromacs/utility/gmxassert.h"
 #include "gromacs/utility/stringutil.h"
 
 #include "gromacs/utility/gmxassert.h"
 #include "gromacs/utility/stringutil.h"
+#include "gromacs/utility/textreader.h"
 #include "gromacs/utility/textstream.h"
 
 #include "testutils/refdata.h"
 #include "gromacs/utility/textstream.h"
 
 #include "testutils/refdata.h"
@@ -79,11 +80,11 @@ private:
 
 } // namespace
 
 
 } // namespace
 
-void checkConfFile(TextInputStream* input, TestReferenceChecker* checker, const ConfMatchSettings& /*unused*/)
+void checkConfFile(TextInputStream* input, TestReferenceChecker* checker, const ConfMatchSettings& settings)
 {
 
     TestReferenceChecker groChecker(checker->checkCompound("GroFile", "Header"));
 {
 
     TestReferenceChecker groChecker(checker->checkCompound("GroFile", "Header"));
-    // Just check the first two lines of the output file
+    // Check the first two lines of the output file
     std::string line;
     EXPECT_TRUE(input->readLine(&line));
     line = stripSuffixIfPresent(line, "\n");
     std::string line;
     EXPECT_TRUE(input->readLine(&line));
     line = stripSuffixIfPresent(line, "\n");
@@ -91,6 +92,12 @@ void checkConfFile(TextInputStream* input, TestReferenceChecker* checker, const
     EXPECT_TRUE(input->readLine(&line));
     line = stripSuffixIfPresent(line, "\n");
     groChecker.checkInteger(std::atoi(line.c_str()), "Number of atoms");
     EXPECT_TRUE(input->readLine(&line));
     line = stripSuffixIfPresent(line, "\n");
     groChecker.checkInteger(std::atoi(line.c_str()), "Number of atoms");
+    // Check the full configuration only if required
+    if (settings.matchFullConfiguration)
+    {
+        TextReader reader(input);
+        checker->checkTextBlock(reader.readAll(), "Configuration");
+    }
 }
 
 TextBlockMatcherPointer ConfMatch::createMatcher() const
 }
 
 TextBlockMatcherPointer ConfMatch::createMatcher() const
index d22033c53790bfc697fb2293077da3e9863bb1ea..144a60f436ef66d9c74cf9d9f85529d13329efc4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2017,2018,2019,2020,2021, 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.
  * 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.
@@ -60,9 +60,8 @@ class TestReferenceChecker;
 
 struct ConfMatchSettings
 {
 
 struct ConfMatchSettings
 {
-    ConfMatchSettings() : tolerance(defaultRealTolerance()) {}
-
-    FloatingPointTolerance tolerance;
+    FloatingPointTolerance tolerance              = defaultRealTolerance();
+    bool                   matchFullConfiguration = false;
 };
 
 /*! \brief
 };
 
 /*! \brief
@@ -96,6 +95,12 @@ public:
         settings_.tolerance = tolerance;
         return *this;
     }
         settings_.tolerance = tolerance;
         return *this;
     }
+    //! Sets whether the full file contents should be matched
+    ConfMatch& matchFullConfiguration(const bool flag)
+    {
+        settings_.matchFullConfiguration = flag;
+        return *this;
+    }
 
     TextBlockMatcherPointer createMatcher() const override;
 
 
     TextBlockMatcherPointer createMatcher() const override;