Log progress from gmx msd better
authorMark Abraham <mark.j.abraham@gmail.com>
Mon, 25 Jan 2021 10:39:56 +0000 (11:39 +0100)
committerPaul Bauer <paul.bauer.q@gmail.com>
Mon, 25 Jan 2021 12:54:38 +0000 (12:54 +0000)
Refs #3284

src/gromacs/gmxana/gmx_msd.cpp

index 964888ada022a22b8a37af949511da6e586434f4..20db415965f52e0d511b2df7a8945d18660a1524 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
- * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2018,2019,2020,2021, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -622,6 +622,7 @@ static void printmol(t_corr*                 curr,
         }
     }
     xvgrclose(out);
+    fprintf(stdout, "Wrote per-molecule output to %s\n", fn);
     do_view(oenv, fn, "-graphtype bar");
 
     /* Compute variance, stddev and error */
@@ -648,6 +649,7 @@ static void printmol(t_corr*                 curr,
             pdbinfo[i].bfac *= scale;
         }
         write_sto_conf(fn_pdb, "molecular MSD", &top->atoms, x, nullptr, pbcType, box);
+        fprintf(stdout, "Wrote frame for -tpdb to %s\n", fn_pdb);
     }
 }