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

This commit is contained in:
sjplimp
2010-01-04 20:25:40 +00:00
parent cf4ca9efb7
commit 654e03d382
4 changed files with 17 additions and 17 deletions

View File

@ -49,6 +49,12 @@ FixAveHisto::FixAveHisto(LAMMPS *lmp, int narg, char **arg) :
{
if (narg < 10) error->all("Illegal fix ave/histo command");
MPI_Comm_rank(world,&me);
nevery = atoi(arg[3]);
nrepeat = atoi(arg[4]);
nfreq = atoi(arg[5]);
global_freq = nfreq;
vector_flag = 1;
size_vector = 4;
@ -58,12 +64,6 @@ FixAveHisto::FixAveHisto(LAMMPS *lmp, int narg, char **arg) :
extarray = 0;
time_depend = 1;
MPI_Comm_rank(world,&me);
nevery = atoi(arg[3]);
nrepeat = atoi(arg[4]);
nfreq = atoi(arg[5]);
lo = atof(arg[6]);
hi = atof(arg[7]);
nbins = atoi(arg[8]);