Merge branch release-2018
[alexxy/gromacs.git] / src / gromacs / commandline / pargs.cpp
index c4419f7f03e2f7b8e7feef5b7e171001cb7e3569..c35c3a1b35b1542b835c45890a81aa5edcf1e758 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013,2014,2015,2016,2017, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015,2016,2017,2018, 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.
@@ -512,21 +512,21 @@ gmx_bool parse_common_args(int *argc, char *argv[], unsigned long Flags,
             options.addOption(
                     gmx::DoubleOption("b")
                         .store(&tbegin).storeIsSet(&bBeginTimeSet).timeValue()
-                        .description("First frame (%t) to read from trajectory"));
+                        .description("Time of first frame to read from trajectory (default unit %t)"));
         }
         if (isFlagSet(PCA_CAN_END))
         {
             options.addOption(
                     gmx::DoubleOption("e")
                         .store(&tend).storeIsSet(&bEndTimeSet).timeValue()
-                        .description("Last frame (%t) to read from trajectory"));
+                        .description("Time of last frame to read from trajectory (default unit %t)"));
         }
         if (isFlagSet(PCA_CAN_DT))
         {
             options.addOption(
                     gmx::DoubleOption("dt")
                         .store(&tdelta).storeIsSet(&bDtSet).timeValue()
-                        .description("Only use frame when t MOD dt = first time (%t)"));
+                        .description("Only use frame when t MOD dt = first time (default unit %t)"));
         }
         gmx::TimeUnit  timeUnit = gmx::TimeUnit_Default;
         if (isFlagSet(PCA_TIME_UNIT))