Commit 9b1cc599 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@11341 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 806a382b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ class AtomVecAngle : public AtomVec {
  int *type,*mask;
  imageint *image;
  double **x,**v,**f;
  int *molecule;
  tagint *molecule;
  int **nspecial;
  tagint **special;
  int *num_bond;
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ class AtomVecBond : public AtomVec {
  int *type,*mask;
  imageint *image;
  double **x,**v,**f;
  int *molecule;
  tagint *molecule;
  int **nspecial;
  tagint **special;
  int *num_bond;
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ class AtomVecFull : public AtomVec {
  imageint *image;
  double **x,**v,**f;
  double *q;
  int *molecule;
  tagint *molecule;
  int **nspecial;
  tagint **special;
  int *num_bond;
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ void AtomVecTemplate::process_args(int narg, char **arg)

  // error check on molecule template fields

  for (int i = 0; i < nset; i++) {
  for (int i = 0; i < nset; i++)
    if (onemols[i]->typeflag == 0)
      error->all(FLERR,"Atom style template molecule must have atom types");

+4 −2
Original line number Diff line number Diff line
@@ -59,10 +59,12 @@ class AtomVecTemplate : public AtomVec {
  bigint memory_usage();

 protected:
  int *tag,*type,*mask;
  tagint *tag;
  int *type,*mask;
  tagint *image;
  double **x,**v,**f;
  int *molecule,*molindex,*molatom;
  tagint *molecule;
  int *molindex,*molatom;
};

}
Loading