git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9876 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2013-05-13 14:13:10 +00:00
parent a4fe6a321e
commit 208a91224c
2 changed files with 2 additions and 10 deletions

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing author: Axel Kohlmeyer (TempleU)
Contributing author: Axel Kohlmeyer (Temple U)
------------------------------------------------------------------------- */
#include <math.h>
@ -286,7 +286,6 @@ int FixColvars::instances=0;
seed <integer> (seed for RNG, defaults to '1966')
tstat <fix label> (label of thermostatting fix)
TODO: add (optional) arguments for RNG seed, temperature compute
***************************************************************/
FixColvars::FixColvars(LAMMPS *lmp, int narg, char **arg) :
Fix(lmp, narg, arg)
@ -313,7 +312,7 @@ FixColvars::FixColvars(LAMMPS *lmp, int narg, char **arg) :
conf_file = strdup(arg[3]);
rng_seed = 1966;
unwrap_flag = 0;
unwrap_flag = 1;
inp_name = NULL;
out_name = NULL;

View File

@ -90,10 +90,3 @@ class FixColvars : public Fix {
#endif
#endif
// Local Variables:
// mode: c++
// compile-command: "make -j4 openmpi"
// c-basic-offset: 2
// fill-column: 76
// indent-tabs-mode: nil
// End: