Include CUDA and latex files in copyright check
authorTeemu Murtola <teemu.murtola@gmail.com>
Sun, 8 Dec 2013 05:56:44 +0000 (07:56 +0200)
committerGerrit Code Review <gerrit@gerrit.gromacs.org>
Wed, 1 Jan 2014 11:24:11 +0000 (12:24 +0100)
Now also CUDA and latex files are indicated by the .gitattributes file
to contain copyright, and the copyright.py script can deal with them.
This should conclude the work to reformat copyright headers in the
master branch.  Some individual files may still be missing, but those
can be fixed when spotted.

Part of #818

Change-Id: Ib6d3e10b57a42ea7a8c990e51df669cace4c8d8f

38 files changed:
.gitattributes
admin/copyright.py
admin/installguide/installguide.tex
doxygen/RunDoxygen.cmake.cmakein
manual/algorithms.tex
manual/analyse.tex
manual/averages.tex
manual/defunits.tex
manual/files.tex
manual/forcefield.tex
manual/gmxpar.tex
manual/gromacs.tex
manual/implement.tex
manual/install.tex
manual/intro.tex
manual/macros.tex
manual/programs.tex
manual/special.tex
manual/topology.tex
src/gromacs/gmxlib/cuda_tools/copyrite_gpu.cu
src/gromacs/gmxlib/cuda_tools/cudautils.cu
src/gromacs/gmxlib/cuda_tools/cudautils.cuh
src/gromacs/gmxlib/cuda_tools/pmalloc_cuda.cu
src/gromacs/gmxlib/cuda_tools/vectype_ops.cuh
src/gromacs/gmxlib/gpu_utils/gpu_utils.cu
src/gromacs/mdlib/nbnxn_cuda/nbnxn_cuda.cu
src/gromacs/mdlib/nbnxn_cuda/nbnxn_cuda_data_mgmt.cu
src/gromacs/mdlib/nbnxn_cuda/nbnxn_cuda_kernel.cuh
src/gromacs/mdlib/nbnxn_cuda/nbnxn_cuda_kernel_utils.cuh
src/gromacs/mdlib/nbnxn_cuda/nbnxn_cuda_kernels.cuh
src/programs/view/alert.bm
src/programs/view/ff.bm
src/programs/view/gromacs.bm
src/programs/view/info.bm
src/programs/view/play.bm
src/programs/view/rewind.bm
src/programs/view/stop.bm
src/programs/view/stop_ani.bm

index 460b13cbd0fb8cb1e86b6f8c8b3a2bf1214feb54..08e166c36da61ef678e65f4b385825ddfea9a9fe 100644 (file)
@@ -1,7 +1,9 @@
 # Generic rules
 *.c     filter=uncrustify
 *.cpp   filter=uncrustify
+*.cu    filter=uncrustify
 *.h     filter=uncrustify
+*.cuh   filter=uncrustify
 CMakeLists.txt  filter=copyright
 *.cmake         filter=copyright
 *.cmakein       filter=copyright
@@ -9,6 +11,8 @@ CMakeLists.txt  filter=copyright
 *.l             filter=copyright
 *.y             filter=copyright
 *.pre           filter=copyright
+*.tex           filter=copyright
+*.bm            filter=copyright
 # Exceptions: extra files to include
 admin/uncrustify.sh                     filter=copyright
 admin/git-pre-commit                    filter=copyright
@@ -21,13 +25,13 @@ cmake/ThreadMPI.cmake                   !filter
 cmake/Platform/BluegeneQ*.cmake         !filter
 cmake/*.c                               !filter
 cmake/*.c.cmakein                       !filter
-doxygen/*.cmakein                       !filter
+doxygen/Doxyfile-*.cmakein              !filter
 doxygen/*.cpp                           !filter
 manual/UseLATEX.cmake                   !filter
 scripts/GMXRC.*                         !filter
 scripts/make_gromos_rtp.py              !filter
 src/contrib/*                           !filter
-src/gromacs/gmxlib/gpu_utils/memtestG80_core.h             !filter
+src/gromacs/gmxlib/gpu_utils/memtestG80_core.*             !filter
 src/gromacs/gmxlib/nonbonded/preprocessor/gmxpreprocess.py !filter
 **/thread_mpi/**                        filter=uncrustify_only
 src/gromacs/legacyheaders/thread_mpi.h  filter=uncrustify_only
index 59d2260a5d0affffb17b960782e49c229dfa9448..24191e30e9b5cccc158ee68ec7844542a58581bb 100755 (executable)
@@ -243,37 +243,47 @@ class CommentHandlerC(object):
         output.append(' */')
         return output
 
-class CommentHandlerSh(object):
+class CommentHandlerSimple(object):
 
-    """Handler for extracting and creating sh-style comments."""
+    """Handler for extracting and creating sh-style comments.
+
+    Also other comments of the same type, but with a different comment
+    character are supported."""
+
+    def __init__(self, comment_char):
+        self._comment_char = comment_char
 
     def extract_first_comment_block(self, content_lines):
-        if not content_lines or not content_lines[0].startswith('#'):
+        if not content_lines or not content_lines[0].startswith(self._comment_char):
             return ([], 0)
         comment_block = []
         line_index = 0
         while line_index < len(content_lines):
             line = content_lines[line_index]
-            if not line.startswith('#'):
+            if not line.startswith(self._comment_char):
                 break
-            comment_block.append(line.lstrip('# ').rstrip())
+            comment_block.append(line.lstrip(self._comment_char + ' ').rstrip())
             line_index += 1
-            if line == '# the research papers on the package. Check out http://www.gromacs.org.':
+            if line == self._comment_char + ' the research papers on the package. Check out http://www.gromacs.org.':
                 break
         while line_index < len(content_lines):
             line = content_lines[line_index].rstrip()
-            if len(line) > 0 and line != '#':
+            if len(line) > 0 and line != self._comment_char:
                 break
             line_index += 1
         return (comment_block, line_index)
 
     def create_comment_block(self, lines):
         output = []
-        output.extend([('# ' + x).rstrip() for x in lines])
+        output.extend([(self._comment_char + ' ' + x).rstrip() for x in lines])
         output.append('')
         return output
 
-comment_handlers = {'c': CommentHandlerC(), 'sh': CommentHandlerSh()}
+comment_handlers = {
+        'c': CommentHandlerC(),
+        'tex': CommentHandlerSimple('%'),
+        'sh': CommentHandlerSimple('#')
+        }
 
 def select_comment_handler(override, filename):
     """Select comment handler for a file based on file name and input options."""
@@ -285,8 +295,10 @@ def select_comment_handler(override, filename):
             dummy, ext2 = os.path.splitext(root)
             if ext2:
                 ext = ext2
-        if ext in ('.c', '.cpp', '.h', '.y', '.l', '.pre'):
+        if ext in ('.c', '.cu', '.cpp', '.h', '.cuh', '.y', '.l', '.pre', '.bm'):
             filetype = 'c'
+        elif ext in ('.tex',):
+            filetype = 'tex'
         elif basename in ('CMakeLists.txt', 'GMXRC', 'git-pre-commit') or \
                 ext in ('.cmake', '.cmakein', '.py', '.sh', '.bash', '.csh', '.zsh'):
             filetype = 'sh'
index 40a0395dbfdef9de4cd23400bb398cafa48d741a..953ee9f442217506e0e164db1273770adfa131b5 100644 (file)
@@ -1,3 +1,37 @@
+%
+% This file is part of the GROMACS molecular simulation package.
+%
+% Copyright (c) 2013, 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.
+%
+% GROMACS is free software; you can redistribute it and/or
+% modify it under the terms of the GNU Lesser General Public License
+% as published by the Free Software Foundation; either version 2.1
+% of the License, or (at your option) any later version.
+%
+% GROMACS is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+% Lesser General Public License for more details.
+%
+% You should have received a copy of the GNU Lesser General Public
+% License along with GROMACS; if not, see
+% http://www.gnu.org/licenses, or write to the Free Software Foundation,
+% Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
+%
+% If you want to redistribute modifications to GROMACS, please
+% consider that scientific software is very special. Version
+% control is crucial - bugs must be traceable. We will be happy to
+% consider code for inclusion in the official distribution, but
+% derived work must not be called official GROMACS. Details are found
+% in the README & COPYING files - if they are missing, get the
+% official version at http://www.gromacs.org.
+%
+% To help us fund GROMACS development, we humbly ask that you cite
+% the research papers on the package. Check out http://www.gromacs.org.
+
 % Process from LaTeX via XML to XHTML with
 % latexml --destination installguide.xml --xml installguide.tex
 % latexmlpost --destination installguide.xhtml --format=xhtml installguide.xml
index b9b3b7dac90cf0e90da2e363c22e3ae784774ff4..4d81ae5ac188ecf0631f320164f7cab274cd2805 100644 (file)
@@ -2,9 +2,9 @@
 # This file is part of the GROMACS molecular simulation package.
 #
 # Copyright (c) 2013, by the GROMACS development team, led by
-# David van der Spoel, Berk Hess, 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.
 #
 # GROMACS is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public License
index 71f6237cb67702012bcf32294d427ec2778d1cc7..36d59f7501671ea95af08b5745a13f9e61227333 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \newcommand{\nproc}{\mbox{$M$}}
 \newcommand{\natom}{\mbox{$N$}}
index 7cb1039fbc9048bb57c0094955fcaacee3b05066..e93b6721129ad00b05f89ecfbc1ccbcc70ea3b05 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Analysis}
 \label{ch:analysis}
index 5d3c3e1a7e06ebc3c73e3f457160353b691d7851..36588c1ca210bd965bba98ed437ffc985c90ea7a 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
index c4dbeb37a4b1b7f88cba09270c9a059ed6894645..ee8c0feec6680d66b5dc8b11645ff33fe401f3a4 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Definitions and Units}
 \label{ch:defunits}
index cb72ad4d5d6e3cac57dfe29a56ceebcdb9135037..59665159c8447a0e0c811e1f867b6662486bd99f 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 % TODO generate this from the code!
 \begin{table}
index d33aae7507ccfee929f08314e7a055a99c90741d..829106091afcb953b938f9a36d54cfd40f51038d 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Interaction function and force fields\index{force field}}
 \label{ch:ff}
index 58a4043b66e3bf3ffbd34f4d6ae72d67c6cbcfe1..a1acceb18a6b06dad154bc2325b611943e60c86d 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \section{Parallelization}
 \label{sec:par}
index 323bfc5f58226eca30d14aa5ad843229481557ef..342c181d86df3a0547e15e46d7d63e4166a1fe13 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \documentclass[11pt,a4paper,twoside]{gmxmanual}
 \usepackage{here,picins,fancy,array,tabularx,multicol,dcolumn,makeidx,times,ifthen,enumitem,longtable,pdflscape}
index 84338cbefc059c7cb4fc0b9670cff5c0e55cbc8c..db6ecd24fca324b805a294f5c61af368d2c894a2 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Some implementation details}
 In this chapter we will present some implementation details. This is
index 525453583de2f61a44570b80f646628325b011bf..ff46b68f45615e3255f0d96bbf36e5cf0a593e70 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Technical Details}
 \label{ch:install}
index f1c46b4c22fca214634673819ea2c0e390a2bf05..8d431fc2d13a715ab0db247f79d99545f9f715a4 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Introduction}
 
index 38aad7018d17812a982155156c6dadb7784d9c06..cd24695efbc86e8ea1655bf006ed4e5258f1f746 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \setlength {\parindent}{0.0cm}
 \setlength {\parskip}{1ex}
index e4b7e7780df4b43184c15b701e9cf7221a571e3b..782d6caa3e395d87e646d033eb111e0244880e46 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Run parameters and Programs}
 \label{ch:programs}
index 000a6ce8820dd51111fe8e6bacf4d90b5c005ea6..4c58ac84cfb789ffc9bfbeca3857f23154c549e0 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Special Topics}
 \label{ch:special}
index 719e49f8adb299976d57b5d1185b3f0a8d89ea65..0fdb983b40207610e7bf63c04f344848a7ab7f49 100644 (file)
@@ -1,9 +1,10 @@
+%
 % This file is part of the GROMACS molecular simulation package.
 %
 % Copyright (c) 2013, by the GROMACS development team, led by
-% David van der Spoel, Berk Hess, 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.
 %
 % GROMACS is free software; you can redistribute it and/or
 % modify it under the terms of the GNU Lesser General Public License
@@ -12,7 +13,7 @@
 %
 % GROMACS is distributed in the hope that it will be useful,
 % but WITHOUT ANY WARRANTY; without even the implied warranty of
-% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 % Lesser General Public License for more details.
 %
 % You should have received a copy of the GNU Lesser General Public
@@ -29,7 +30,7 @@
 % official version at http://www.gromacs.org.
 %
 % To help us fund GROMACS development, we humbly ask that you cite
-% the research papers on the package. Check out http://www.gromacs.org
+% the research papers on the package. Check out http://www.gromacs.org.
 
 \chapter{Topologies}
 \label{ch:top}
index a2d037449138c27e06404a936cd1e640043db56a..26eda4ed6595901167dea866be7013c32a119802 100644 (file)
@@ -1,13 +1,10 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2004, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 2012,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
index 606a811692826343b6f812eb14d3b3150c21db30..467c3ce0bb3a1143af52daa634d8217e1ec02412 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #include <stdlib.h>
index fe1f47cba761840456ea775185d6b392e748231f..6ede841f3d5931d759d78cff87a5ef053b50f6f4 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #ifndef CUDAUTILS_CUH
index ac80122ecdefcbb5c2966f7c01f9888b9be09f81..4e2933dd46d4e099e6507d7330bd44b008d4c394 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #include <stdlib.h>
index a2657b240b5f67d1355d8d51c4ba016b866021d9..a1413c17b643049dfda14c48609422c33cf96d8a 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #ifndef VECTYPE_OPS_CUH
index eb3e7dd7813f227af57b597337265613e43edf23..03d9ac2ea964a81803e4c152446805c048b81877 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
- *
- * 
- *                This source code is part of
- * 
- *                 G   R   O   M   A   C   S
- * 
- *          GROningen MAchine for Chemical Simulations
- * 
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2010,2012 The GROMACS development team,
- * check out http://www.gromacs.org for more information.
-
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+/*
+ * This file is part of the GROMACS molecular simulation package.
+ *
+ * Copyright (c) 2010,2011,2012,2013, 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.
+ *
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
- * 
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
- * 
+ *
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
+ *
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
+ *
  * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
- * 
- * For more info, check our website at http://www.gromacs.org
- * 
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #include <stdio.h>
index 3c1a235fcdc2a082def7ced35425eb14227b323d..5a3a8fd755b9f90ab36c41136e355f3f5d87a45e 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012,2013, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #include <stdlib.h>
index eb20159b9a402fa993676df409a7a2ced4955b4b..5de2e80988a77087e62a1697bb998104481567a4 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012,2013, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 #ifdef HAVE_CONFIG_H
 #include <config.h>
index 3ba3ffc9415cd05dc77f9e4815d0f5f067733db5..10d998d095322c88d03f869c9a8d268a565eb46e 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
- *
- *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
+ * Copyright (c) 2012,2013, 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.
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 #include "maths.h"
index ce219a2a82bc6a31f212b5fbb23ec7063b3cd324..66f16c430e1ef74bbea980c20efd779a50aa428b 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012,2013, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 /* Note that floating-point constants in CUDA code should be suffixed
index 55884cff84111e8daffb57b1b9eca63e139d7ee7..147d42c029be020e6006887679e1d6fbc980d758 100644 (file)
@@ -1,36 +1,36 @@
-/* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
+/*
+ * This file is part of the GROMACS molecular simulation package.
  *
+ * Copyright (c) 2012,2013, 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.
  *
- *                This source code is part of
- *
- *                 G   R   O   M   A   C   S
- *
- *          GROningen MAchine for Chemical Simulations
- *
- * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
- * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
- * Copyright (c) 2001-2012, The GROMACS development team,
- * check out http://www.gromacs.org for more information.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
  * of the License, or (at your option) any later version.
  *
- * If you want to redistribute modifications, please consider that
- * scientific software is very special. Version control is crucial -
- * bugs must be traceable. We will be happy to consider code for
- * inclusion in the official distribution, but derived work must not
- * be called official GROMACS. Details are found in the README & COPYING
- * files - if they are missing, get the official version at www.gromacs.org.
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
  *
- * To help us fund GROMACS development, we humbly ask that you cite
- * the papers on the package - you can find them in the top README file.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
  *
- * For more info, check our website at http://www.gromacs.org
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
  *
- * And Hey:
- * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
  */
 
 /*! \file
index 1999e231a7bede73295de577652d71acce18e72c..16e33360b85f84256eba6343720feb564d50fcdb 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _alert_bm
-#define        _alert_bm
-
+#ifndef GMX_VIEW_ALERT_BM
+#define GMX_VIEW_ALERT_BM
 
 #define alert_width 48
 #define alert_height 42
@@ -64,4 +60,5 @@ static unsigned char alert_bits[] = {
    0xf8, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x3e,
    0xfc, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f,
    0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
-#endif /* _alert_bm */
+
+#endif
index 44b8660038b9e87e902b1a6e839d66ab517fda38..200545b64fc869d087434e0f8c710c4ce1c5dba9 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -35,9 +33,8 @@
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _ff_bm
-#define        _ff_bm
+#ifndef GMX_VIEW_FF_BM
+#define GMX_VIEW_FF_BM
 
 #define ff_width 40
 #define ff_height 32
@@ -57,4 +54,4 @@ static unsigned char ff_bits[] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00};
 
-#endif /* _ff_bm */
+#endif
index 080981ca3b5cd647eb0f09f5f1988543dc8859bf..1164691d56fc89bb1baa9cbf7422ba96b84f7447 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-
-#ifndef        _gromacs_bm
-#define        _gromacs_bm
-
+#ifndef GMX_VIEW_GROMACS_BM
+#define GMX_VIEW_GROMACS_BM
 
 #define gromacs_width 48
 #define gromacs_height 48
@@ -68,4 +63,5 @@ static unsigned char gromacs_bits[] = {
    0x00, 0x0f, 0xf0, 0x01, 0xf0, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
    0x00, 0xf8, 0x00, 0x00, 0x1f, 0x00, 0x00, 0xe0, 0x0f, 0xf0, 0x07, 0x00,
    0x00, 0x80, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf8, 0x1f, 0x00, 0x00};
-#endif /* _gromacs_bm */
+
+#endif
index 9fbc7d74ec05a462b2f992e3f94911f4b1110eb6..723ea2f667615c484ba047bf3d39cd56daf65606 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -35,9 +33,8 @@
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _info_bm
-#define        _info_bm
+#ifndef GMX_VIEW_INFO_BM
+#define GMX_VIEW_INFO_BM
 
 #define info_width 48
 #define info_height 48
@@ -66,4 +63,5 @@ static unsigned char info_bits[] = {
    0x00, 0xf8, 0xff, 0xff, 0x3f, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x1f, 0x00,
    0x00, 0xc0, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00,
    0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
-#endif /* _info_bm */
+
+#endif
index a34bc3ced910e7c2ab46dde773891540ae8a287e..6be673111a15e7c2b2064e5ed3f1c508d79bbfd9 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -35,9 +33,8 @@
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _play_bm
-#define        _play_bm
+#ifndef GMX_VIEW_PLAY_BM
+#define GMX_VIEW_PLAY_BM
 
 #define play_width 40
 #define play_height 32
@@ -57,4 +54,4 @@ static unsigned char play_bits[] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00};
 
-#endif /* _play_bm */
+#endif
index e25a18343748a17e3f34f758f14bc29593b99ecd..9cbcc45c65ee9ac745e47a6c26a2c00bb5568058 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -35,8 +33,8 @@
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-#ifndef        _rewind_bm
-#define        _rewind_bm
+#ifndef GMX_VIEW_REWIND_BM
+#define GMX_VIEW_REWIND_BM
 
 #define rewind_width 40
 #define rewind_height 32
@@ -56,4 +54,4 @@ static unsigned char rewind_bits[] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00};
 
-#endif /* _rewind_bm */
+#endif
index a51d36cd1e65deff45c72a4ddd2ebc9e1a6777b1..d8ba011aca120f4ada49013b41480acc7b5c7bfe 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _stop_bm
-#define        _stop_bm
-
+#ifndef GMX_VIEW_STOP_BM
+#define GMX_VIEW_STOP_BM
 
 #define stop_width 48
 #define stop_height 48
-#define stop_x_hot -1
-#define stop_y_hot -1
 static unsigned char stop_bits[] = {
    0x00, 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0xf8, 0xff, 0xff, 0x1f, 0x00,
    0x00, 0x1c, 0x00, 0x00, 0x38, 0x00, 0x00, 0xee, 0xff, 0xff, 0x77, 0x00,
@@ -69,4 +63,5 @@ static unsigned char stop_bits[] = {
    0x00, 0xf7, 0xff, 0xff, 0xef, 0x00, 0x00, 0xee, 0xff, 0xff, 0x77, 0x00,
    0x00, 0xdc, 0xff, 0xff, 0x3b, 0x00, 0x00, 0x38, 0x00, 0x00, 0x1c, 0x00,
    0x00, 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0xe0, 0xff, 0xff, 0x07, 0x00};
-#endif /* _stop_bm */
+
+#endif
index 21adc155181d3b73bb076cffae8d4529034fdf64..29b6a9c264db756b14139054fc3b5cabd33a0f4f 100644 (file)
@@ -1,13 +1,11 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 1991-2001
- * BIOSON Research Institute, Dept. of Biophysical Chemistry
- * University of Groningen, The Netherlands
- * Copyright (c) 2012, by the GROMACS development team, led by
- * David van der Spoel, Berk Hess, Erik Lindahl, and including many
- * others, as listed in the AUTHORS file in the top-level source
- * directory and at http://www.gromacs.org.
+ * Copyright (c) 1991-2001, University of Groningen, The Netherlands.
+ * Copyright (c) 2002,2009,2013, 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.
  *
  * GROMACS is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * To help us fund GROMACS development, we humbly ask that you cite
  * the research papers on the package. Check out http://www.gromacs.org.
  */
-
-#ifndef        _stop_ani_bm
-#define        _stop_ani_bm
-
+#ifndef GMX_VIEW_STOP_ANI_BM
+#define GMX_VIEW_STOP_ANI_BM
 
 #define stop_ani_width 40
 #define stop_ani_height 32
@@ -58,4 +54,4 @@ static unsigned char stop_ani_bits[] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00};
 
-#endif /* _stop_ani_bm */
+#endif