From e046b2a23661420832f4eb5fd550ce1a7ae158ee Mon Sep 17 00:00:00 2001
From: Omar Valsson <omar.valsson@gmail.com>
Date: Mon, 2 Oct 2017 10:19:10 +0200
Subject: [PATCH] fixes to copyright/headers

---
 src/ves/BF_Chebyshev.cpp                     | 10 +++++-----
 src/ves/BF_Combined.cpp                      | 10 +++++-----
 src/ves/BF_Cosine.cpp                        | 10 +++++-----
 src/ves/BF_Custom.cpp                        | 10 +++++-----
 src/ves/BF_Fourier.cpp                       | 10 +++++-----
 src/ves/BF_Legendre.cpp                      | 10 +++++-----
 src/ves/BF_Powers.cpp                        | 10 +++++-----
 src/ves/BF_Sine.cpp                          | 10 +++++-----
 src/ves/BasisFunctions.cpp                   | 10 +++++-----
 src/ves/BasisFunctions.h                     | 10 +++++-----
 src/ves/COPYRIGHT                            | 10 +++++-----
 src/ves/CoeffsBase.cpp                       | 10 +++++-----
 src/ves/CoeffsBase.h                         | 10 +++++-----
 src/ves/CoeffsMatrix.cpp                     | 10 +++++-----
 src/ves/CoeffsMatrix.h                       | 10 +++++-----
 src/ves/CoeffsVector.cpp                     | 10 +++++-----
 src/ves/CoeffsVector.h                       | 10 +++++-----
 src/ves/FermiSwitchingFunction.cpp           | 10 +++++-----
 src/ves/FermiSwitchingFunction.h             | 10 +++++-----
 src/ves/GridIntegrationWeights.cpp           | 10 +++++-----
 src/ves/GridIntegrationWeights.h             | 10 +++++-----
 src/ves/GridLinearInterpolation.cpp          | 10 +++++-----
 src/ves/GridLinearInterpolation.h            | 10 +++++-----
 src/ves/GridProjWeights.cpp                  | 10 +++++-----
 src/ves/GridProjWeights.h                    | 10 +++++-----
 src/ves/LinearBasisSetExpansion.cpp          | 10 +++++-----
 src/ves/LinearBasisSetExpansion.h            | 10 +++++-----
 src/ves/MD_LinearExpansionPES.cpp            | 10 +++++-----
 src/ves/Opt_BachAveragedSGD.cpp              | 10 +++++-----
 src/ves/Opt_Dummy.cpp                        | 10 +++++-----
 src/ves/Optimizer.cpp                        | 10 +++++-----
 src/ves/Optimizer.h                          | 10 +++++-----
 src/ves/OutputBasisFunctions.cpp             | 10 +++++-----
 src/ves/OutputFesBias.cpp                    | 10 +++++-----
 src/ves/OutputTargetDistribution.cpp         | 10 +++++-----
 src/ves/PEOPLE-VES                           |  7 ++++---
 src/ves/TD_Chi.cpp                           | 10 +++++-----
 src/ves/TD_ChiSquared.cpp                    | 10 +++++-----
 src/ves/TD_Custom.cpp                        | 10 +++++-----
 src/ves/TD_Exponential.cpp                   | 10 +++++-----
 src/ves/TD_ExponentiallyModifiedGaussian.cpp | 10 +++++-----
 src/ves/TD_Gaussian.cpp                      | 10 +++++-----
 src/ves/TD_GeneralizedExtremeValue.cpp       | 10 +++++-----
 src/ves/TD_GeneralizedNormal.cpp             | 10 +++++-----
 src/ves/TD_Grid.cpp                          | 10 +++++-----
 src/ves/TD_LinearCombination.cpp             | 10 +++++-----
 src/ves/TD_ProductCombination.cpp            | 10 +++++-----
 src/ves/TD_ProductDistribution.cpp           | 10 +++++-----
 src/ves/TD_Uniform.cpp                       | 10 +++++-----
 src/ves/TD_VonMises.cpp                      | 10 +++++-----
 src/ves/TD_WellTempered.cpp                  | 10 +++++-----
 src/ves/TargetDistModifer.cpp                | 10 +++++-----
 src/ves/TargetDistModifer.h                  | 10 +++++-----
 src/ves/TargetDistribution.cpp               | 10 +++++-----
 src/ves/TargetDistribution.h                 | 10 +++++-----
 src/ves/VesBias.cpp                          | 10 +++++-----
 src/ves/VesBias.h                            | 10 +++++-----
 src/ves/VesLinearExpansion.cpp               | 10 +++++-----
 src/ves/VesTools.cpp                         | 10 +++++-----
 src/ves/VesTools.h                           | 10 +++++-----
 60 files changed, 299 insertions(+), 298 deletions(-)

diff --git a/src/ves/BF_Chebyshev.cpp b/src/ves/BF_Chebyshev.cpp
index 2f9899b00..bafc8d0f3 100644
--- a/src/ves/BF_Chebyshev.cpp
+++ b/src/ves/BF_Chebyshev.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Combined.cpp b/src/ves/BF_Combined.cpp
index c45e2c068..287fa3fa3 100644
--- a/src/ves/BF_Combined.cpp
+++ b/src/ves/BF_Combined.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Cosine.cpp b/src/ves/BF_Cosine.cpp
index eba87d1d2..5428cbcf2 100644
--- a/src/ves/BF_Cosine.cpp
+++ b/src/ves/BF_Cosine.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Custom.cpp b/src/ves/BF_Custom.cpp
index 798235c3d..f2c19bcdc 100644
--- a/src/ves/BF_Custom.cpp
+++ b/src/ves/BF_Custom.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Fourier.cpp b/src/ves/BF_Fourier.cpp
index c57570d10..3e1dd3cbf 100644
--- a/src/ves/BF_Fourier.cpp
+++ b/src/ves/BF_Fourier.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Legendre.cpp b/src/ves/BF_Legendre.cpp
index 690d4eb23..2d7f5ae51 100644
--- a/src/ves/BF_Legendre.cpp
+++ b/src/ves/BF_Legendre.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Powers.cpp b/src/ves/BF_Powers.cpp
index 8dde2f211..bd9192381 100644
--- a/src/ves/BF_Powers.cpp
+++ b/src/ves/BF_Powers.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BF_Sine.cpp b/src/ves/BF_Sine.cpp
index ccc690458..6ff1ac2c6 100644
--- a/src/ves/BF_Sine.cpp
+++ b/src/ves/BF_Sine.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BasisFunctions.cpp b/src/ves/BasisFunctions.cpp
index 50131d801..f2b942c49 100644
--- a/src/ves/BasisFunctions.cpp
+++ b/src/ves/BasisFunctions.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/BasisFunctions.h b/src/ves/BasisFunctions.h
index b151ece13..2f22f9758 100644
--- a/src/ves/BasisFunctions.h
+++ b/src/ves/BasisFunctions.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_BasisFunctions_h
 #define __PLUMED_ves_BasisFunctions_h
diff --git a/src/ves/COPYRIGHT b/src/ves/COPYRIGHT
index fa5977968..2768ab8f3 100644
--- a/src/ves/COPYRIGHT
+++ b/src/ves/COPYRIGHT
@@ -1,19 +1,19 @@
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
diff --git a/src/ves/CoeffsBase.cpp b/src/ves/CoeffsBase.cpp
index 18dd53b73..d6779fd50 100644
--- a/src/ves/CoeffsBase.cpp
+++ b/src/ves/CoeffsBase.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "CoeffsBase.h"
diff --git a/src/ves/CoeffsBase.h b/src/ves/CoeffsBase.h
index c1d5b4c5b..8934e97c2 100644
--- a/src/ves/CoeffsBase.h
+++ b/src/ves/CoeffsBase.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_CoeffsBase_h
 #define __PLUMED_ves_CoeffsBase_h
diff --git a/src/ves/CoeffsMatrix.cpp b/src/ves/CoeffsMatrix.cpp
index 75e91c74e..d18cfac22 100644
--- a/src/ves/CoeffsMatrix.cpp
+++ b/src/ves/CoeffsMatrix.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "CoeffsMatrix.h"
diff --git a/src/ves/CoeffsMatrix.h b/src/ves/CoeffsMatrix.h
index bbcdee46c..5f0b4b5f9 100644
--- a/src/ves/CoeffsMatrix.h
+++ b/src/ves/CoeffsMatrix.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_CoeffsMatrix_h
 #define __PLUMED_ves_CoeffsMatrix_h
diff --git a/src/ves/CoeffsVector.cpp b/src/ves/CoeffsVector.cpp
index a7d8a5698..3fc8d54b0 100644
--- a/src/ves/CoeffsVector.cpp
+++ b/src/ves/CoeffsVector.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "CoeffsVector.h"
diff --git a/src/ves/CoeffsVector.h b/src/ves/CoeffsVector.h
index 7e5a48c1b..0abee7fa4 100644
--- a/src/ves/CoeffsVector.h
+++ b/src/ves/CoeffsVector.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_CoeffsVector_h
 #define __PLUMED_ves_CoeffsVector_h
diff --git a/src/ves/FermiSwitchingFunction.cpp b/src/ves/FermiSwitchingFunction.cpp
index 2c52f49b6..8868a82f4 100644
--- a/src/ves/FermiSwitchingFunction.cpp
+++ b/src/ves/FermiSwitchingFunction.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "FermiSwitchingFunction.h"
diff --git a/src/ves/FermiSwitchingFunction.h b/src/ves/FermiSwitchingFunction.h
index e7e26d4fd..254c416e8 100644
--- a/src/ves/FermiSwitchingFunction.h
+++ b/src/ves/FermiSwitchingFunction.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_FermiSwitchingFunction_h
 #define __PLUMED_ves_FermiSwitchingFunction_h
diff --git a/src/ves/GridIntegrationWeights.cpp b/src/ves/GridIntegrationWeights.cpp
index ee11a002c..a0d2da6b6 100644
--- a/src/ves/GridIntegrationWeights.cpp
+++ b/src/ves/GridIntegrationWeights.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "GridIntegrationWeights.h"
diff --git a/src/ves/GridIntegrationWeights.h b/src/ves/GridIntegrationWeights.h
index 18ec08d6d..72d174558 100644
--- a/src/ves/GridIntegrationWeights.h
+++ b/src/ves/GridIntegrationWeights.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_GridIntegrationWeights_h
 #define __PLUMED_ves_GridIntegrationWeights_h
diff --git a/src/ves/GridLinearInterpolation.cpp b/src/ves/GridLinearInterpolation.cpp
index f21ee1ef8..410e2a8a9 100644
--- a/src/ves/GridLinearInterpolation.cpp
+++ b/src/ves/GridLinearInterpolation.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "GridLinearInterpolation.h"
diff --git a/src/ves/GridLinearInterpolation.h b/src/ves/GridLinearInterpolation.h
index 575b15224..0989102ef 100644
--- a/src/ves/GridLinearInterpolation.h
+++ b/src/ves/GridLinearInterpolation.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_GridLinearInterpolation_h
 #define __PLUMED_ves_GridLinearInterpolation_h
diff --git a/src/ves/GridProjWeights.cpp b/src/ves/GridProjWeights.cpp
index 396de8ba2..8589bfe9f 100644
--- a/src/ves/GridProjWeights.cpp
+++ b/src/ves/GridProjWeights.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "GridProjWeights.h"
diff --git a/src/ves/GridProjWeights.h b/src/ves/GridProjWeights.h
index 8ab30dbdb..100be5b79 100644
--- a/src/ves/GridProjWeights.h
+++ b/src/ves/GridProjWeights.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_GridProjWeights_h
 #define __PLUMED_ves_GridProjWeights_h
diff --git a/src/ves/LinearBasisSetExpansion.cpp b/src/ves/LinearBasisSetExpansion.cpp
index 15b84a9ce..e17e14852 100644
--- a/src/ves/LinearBasisSetExpansion.cpp
+++ b/src/ves/LinearBasisSetExpansion.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "LinearBasisSetExpansion.h"
diff --git a/src/ves/LinearBasisSetExpansion.h b/src/ves/LinearBasisSetExpansion.h
index f9cde69b0..a7872d216 100644
--- a/src/ves/LinearBasisSetExpansion.h
+++ b/src/ves/LinearBasisSetExpansion.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_LinearBasisSetExpansion_h
 #define __PLUMED_ves_LinearBasisSetExpansion_h
diff --git a/src/ves/MD_LinearExpansionPES.cpp b/src/ves/MD_LinearExpansionPES.cpp
index 8007cf24b..b3090c7cc 100644
--- a/src/ves/MD_LinearExpansionPES.cpp
+++ b/src/ves/MD_LinearExpansionPES.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/Opt_BachAveragedSGD.cpp b/src/ves/Opt_BachAveragedSGD.cpp
index 72235324e..eeaffda49 100644
--- a/src/ves/Opt_BachAveragedSGD.cpp
+++ b/src/ves/Opt_BachAveragedSGD.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "Optimizer.h"
diff --git a/src/ves/Opt_Dummy.cpp b/src/ves/Opt_Dummy.cpp
index 948312f93..35bd5ce26 100644
--- a/src/ves/Opt_Dummy.cpp
+++ b/src/ves/Opt_Dummy.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "Optimizer.h"
diff --git a/src/ves/Optimizer.cpp b/src/ves/Optimizer.cpp
index c17f48727..b7785f366 100644
--- a/src/ves/Optimizer.cpp
+++ b/src/ves/Optimizer.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "Optimizer.h"
diff --git a/src/ves/Optimizer.h b/src/ves/Optimizer.h
index 7e44eb948..6e49dc2b1 100644
--- a/src/ves/Optimizer.h
+++ b/src/ves/Optimizer.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_Optimizer_h
 #define __PLUMED_ves_Optimizer_h
diff --git a/src/ves/OutputBasisFunctions.cpp b/src/ves/OutputBasisFunctions.cpp
index ccbc50bcc..72c231b8a 100644
--- a/src/ves/OutputBasisFunctions.cpp
+++ b/src/ves/OutputBasisFunctions.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "BasisFunctions.h"
diff --git a/src/ves/OutputFesBias.cpp b/src/ves/OutputFesBias.cpp
index f446b59cd..2c8efd51b 100644
--- a/src/ves/OutputFesBias.cpp
+++ b/src/ves/OutputFesBias.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "CoeffsVector.h"
diff --git a/src/ves/OutputTargetDistribution.cpp b/src/ves/OutputTargetDistribution.cpp
index 00f40eb01..175446545 100644
--- a/src/ves/OutputTargetDistribution.cpp
+++ b/src/ves/OutputTargetDistribution.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/PEOPLE-VES b/src/ves/PEOPLE-VES
index 57eac5dba..8865d3620 100644
--- a/src/ves/PEOPLE-VES
+++ b/src/ves/PEOPLE-VES
@@ -1,6 +1,7 @@
-VES-CODE is covered under the GNU LESSER GENERAL PUBLIC LICENSE (see ./COPYING.LESSER).
-This license applies to all the source code in this tree, except from where
-explicitly indicated.
+VES code is covered under the GNU LESSER GENERAL PUBLIC LICENSE 
+(see COPYING.LESSER in PLUMED2 root directory).
+This license applies to all the source code in this directory, 
+except from where explicitly indicated.
 
 Authors of this software are:
 
diff --git a/src/ves/TD_Chi.cpp b/src/ves/TD_Chi.cpp
index 199412598..83e3c57a3 100644
--- a/src/ves/TD_Chi.cpp
+++ b/src/ves/TD_Chi.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_ChiSquared.cpp b/src/ves/TD_ChiSquared.cpp
index 9b43bcf25..ea24ea3bc 100644
--- a/src/ves/TD_ChiSquared.cpp
+++ b/src/ves/TD_ChiSquared.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_Custom.cpp b/src/ves/TD_Custom.cpp
index e383c0e89..cc18f8bb2 100644
--- a/src/ves/TD_Custom.cpp
+++ b/src/ves/TD_Custom.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_Exponential.cpp b/src/ves/TD_Exponential.cpp
index eb02e2899..40e629b88 100644
--- a/src/ves/TD_Exponential.cpp
+++ b/src/ves/TD_Exponential.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_ExponentiallyModifiedGaussian.cpp b/src/ves/TD_ExponentiallyModifiedGaussian.cpp
index 9429ea813..4287d32c8 100644
--- a/src/ves/TD_ExponentiallyModifiedGaussian.cpp
+++ b/src/ves/TD_ExponentiallyModifiedGaussian.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_Gaussian.cpp b/src/ves/TD_Gaussian.cpp
index 29fb736e2..e5ba3784c 100644
--- a/src/ves/TD_Gaussian.cpp
+++ b/src/ves/TD_Gaussian.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_GeneralizedExtremeValue.cpp b/src/ves/TD_GeneralizedExtremeValue.cpp
index 3a9996477..9e60713fe 100644
--- a/src/ves/TD_GeneralizedExtremeValue.cpp
+++ b/src/ves/TD_GeneralizedExtremeValue.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_GeneralizedNormal.cpp b/src/ves/TD_GeneralizedNormal.cpp
index 18b07a4ca..0a391f98d 100644
--- a/src/ves/TD_GeneralizedNormal.cpp
+++ b/src/ves/TD_GeneralizedNormal.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_Grid.cpp b/src/ves/TD_Grid.cpp
index f1755f7ae..88df2af81 100644
--- a/src/ves/TD_Grid.cpp
+++ b/src/ves/TD_Grid.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_LinearCombination.cpp b/src/ves/TD_LinearCombination.cpp
index 769adf69b..13d4382c8 100644
--- a/src/ves/TD_LinearCombination.cpp
+++ b/src/ves/TD_LinearCombination.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_ProductCombination.cpp b/src/ves/TD_ProductCombination.cpp
index b85a85dbf..d7728470a 100644
--- a/src/ves/TD_ProductCombination.cpp
+++ b/src/ves/TD_ProductCombination.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_ProductDistribution.cpp b/src/ves/TD_ProductDistribution.cpp
index 593d83d37..5eb60b128 100644
--- a/src/ves/TD_ProductDistribution.cpp
+++ b/src/ves/TD_ProductDistribution.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_Uniform.cpp b/src/ves/TD_Uniform.cpp
index 1c4d8b18f..58580d002 100644
--- a/src/ves/TD_Uniform.cpp
+++ b/src/ves/TD_Uniform.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_VonMises.cpp b/src/ves/TD_VonMises.cpp
index b6c65ddba..09adace21 100644
--- a/src/ves/TD_VonMises.cpp
+++ b/src/ves/TD_VonMises.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TD_WellTempered.cpp b/src/ves/TD_WellTempered.cpp
index af3534eff..8fb3db726 100644
--- a/src/ves/TD_WellTempered.cpp
+++ b/src/ves/TD_WellTempered.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TargetDistModifer.cpp b/src/ves/TargetDistModifer.cpp
index 58285dc02..3f9abe57b 100644
--- a/src/ves/TargetDistModifer.cpp
+++ b/src/ves/TargetDistModifer.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistModifer.h"
diff --git a/src/ves/TargetDistModifer.h b/src/ves/TargetDistModifer.h
index 04e8ff1cf..95669b40f 100644
--- a/src/ves/TargetDistModifer.h
+++ b/src/ves/TargetDistModifer.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_TargetDistModifer_h
 #define __PLUMED_ves_TargetDistModifer_h
diff --git a/src/ves/TargetDistribution.cpp b/src/ves/TargetDistribution.cpp
index 31913f241..b8d9bdfb0 100644
--- a/src/ves/TargetDistribution.cpp
+++ b/src/ves/TargetDistribution.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "TargetDistribution.h"
diff --git a/src/ves/TargetDistribution.h b/src/ves/TargetDistribution.h
index 5652471f2..f3192b2eb 100644
--- a/src/ves/TargetDistribution.h
+++ b/src/ves/TargetDistribution.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_TargetDistribution_h
 #define __PLUMED_ves_TargetDistribution_h
diff --git a/src/ves/VesBias.cpp b/src/ves/VesBias.cpp
index 2178952b7..10a5b9552 100644
--- a/src/ves/VesBias.cpp
+++ b/src/ves/VesBias.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "VesBias.h"
diff --git a/src/ves/VesBias.h b/src/ves/VesBias.h
index 085080d01..40e6f6c1a 100644
--- a/src/ves/VesBias.h
+++ b/src/ves/VesBias.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_VesBias_h
 #define __PLUMED_ves_VesBias_h
diff --git a/src/ves/VesLinearExpansion.cpp b/src/ves/VesLinearExpansion.cpp
index db42a356d..75354b826 100644
--- a/src/ves/VesLinearExpansion.cpp
+++ b/src/ves/VesLinearExpansion.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "VesBias.h"
diff --git a/src/ves/VesTools.cpp b/src/ves/VesTools.cpp
index 3617d41c0..7aec90205 100644
--- a/src/ves/VesTools.cpp
+++ b/src/ves/VesTools.cpp
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 
 #include "VesTools.h"
diff --git a/src/ves/VesTools.h b/src/ves/VesTools.h
index b2fef83d0..aa9dd6cc4 100644
--- a/src/ves/VesTools.h
+++ b/src/ves/VesTools.h
@@ -1,23 +1,23 @@
 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-   Copyright (c) 2016-2017 The ves-code team
+   Copyright (c) 2016-2017 The VES code team
    (see the PEOPLE-VES file at the root of this folder for a list of names)
 
    See http://www.ves-code.org for more information.
 
-   This file is part of ves-code module.
+   This file is part of VES code module.
 
-   The ves-code module is free software: you can redistribute it and/or modify
+   The VES code module 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 3 of the License, or
    (at your option) any later version.
 
-   The ves-code module is distributed in the hope that it will be useful,
+   The VES code module 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 the ves-code module.  If not, see <http://www.gnu.org/licenses/>.
+   along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
 #ifndef __PLUMED_ves_VesTools_h
 #define __PLUMED_ves_VesTools_h
-- 
GitLab