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

This commit is contained in:
sjplimp
2009-09-04 19:39:53 +00:00
parent 3e6da4ede1
commit 799775274d
6 changed files with 43 additions and 25 deletions

View File

@ -112,10 +112,6 @@ DumpCustom::DumpCustom(LAMMPS *lmp, int narg, char **arg) :
strcat(columns,arg[iarg]);
strcat(columns," ");
}
// one-time file open
if (multifile == 0) openfile();
}
/* ---------------------------------------------------------------------- */
@ -219,6 +215,10 @@ void DumpCustom::init()
if (ivariable < 0) error->all("Could not find dump custom variable name");
variable[i] = ivariable;
}
// open single file, one time only
if (multifile == 0) openfile();
}
/* ---------------------------------------------------------------------- */