git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9346 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -21,7 +21,7 @@ using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
AtomVec::AtomVec(LAMMPS *lmp, int narg, char **arg) : Pointers(lmp)
|
||||
AtomVec::AtomVec(LAMMPS *lmp) : Pointers(lmp)
|
||||
{
|
||||
nmax = 0;
|
||||
bonds_allow = angles_allow = dihedrals_allow = impropers_allow = 0;
|
||||
@ -30,6 +30,15 @@ AtomVec::AtomVec(LAMMPS *lmp, int narg, char **arg) : Pointers(lmp)
|
||||
cudable = false;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
no additional args by default
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void AtomVec::settings(int narg, char **arg)
|
||||
{
|
||||
if (narg) error->all(FLERR,"Invalid atom_style command");
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
copy of velocity remap settings from Domain
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
Reference in New Issue
Block a user