diff --git a/CHANGES/v2.2.txt b/CHANGES/v2.2.txt index 38cb1138ff58b332b1dd98cd4877148fadb17899..076495368c4a80d517f8bb6669bc3b4d532b470e 100644 --- a/CHANGES/v2.2.txt +++ b/CHANGES/v2.2.txt @@ -143,6 +143,8 @@ Version 2.2.3 () For users: - Updated patch for gromacs 5.1.x to fix a problem when plumed was trying to write to an already closed gromacs log file. +- When looking for a value outside the GRID now the error include the name of the responsible + collective variable For developers: diff --git a/src/tools/Grid.cpp b/src/tools/Grid.cpp index 52b97fe9b4e4e672c51056917edfc7e9c03388a4..f46462c9483a7de0c031621e36408e68f595d585 100644 --- a/src/tools/Grid.cpp +++ b/src/tools/Grid.cpp @@ -171,7 +171,7 @@ Grid::index_t Grid::getIndex(const vector<unsigned> & indices) const { if(indices[i]>=nbin_[i]) { std::string is; Tools::convert(i,is); - std::string msg="ERROR: the system is looking for a value outside the grid along the " + is; + std::string msg="ERROR: the system is looking for a value outside the grid along the " + is + " ("+getArgNames()[i]+")"; plumed_merror(msg+" index!"); } index_t index=indices[dimension_-1];