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

This commit is contained in:
sjplimp 2016-01-12 22:25:10 +00:00
parent a34b9f17da
commit 9dcf6ee717
1 changed files with 4 additions and 4 deletions

View File

@ -1072,7 +1072,7 @@ void FixStoreState::pack_zsu(int n)
/* ---------------------------------------------------------------------- */
void DumpCustom::pack_xsu_triclinic(int n)
void FixStoreState::pack_xsu_triclinic(int n)
{
double **x = atom->x;
imageint *image = atom->image;
@ -1093,7 +1093,7 @@ void DumpCustom::pack_xsu_triclinic(int n)
/* ---------------------------------------------------------------------- */
void DumpCustom::pack_ysu_triclinic(int n)
void FixStoreState::pack_ysu_triclinic(int n)
{
double **x = atom->x;
imageint *image = atom->image;
@ -1114,7 +1114,7 @@ void DumpCustom::pack_ysu_triclinic(int n)
/* ---------------------------------------------------------------------- */
void DumpCustom::pack_zsu_triclinic(int n)
void FixStoreState::pack_zsu_triclinic(int n)
{
double **x = atom->x;
imageint *image = atom->image;
@ -1126,7 +1126,7 @@ void DumpCustom::pack_zsu_triclinic(int n)
for (int i = 0; i < nlocal; i++) {
if (mask[i] & groupbit)
buf[n] = h_inv[2]*(x[i][2]-boxlo[2]) + (image[i] >> IMG2BITS) - IMGMAX;
vbuf[n] = h_inv[2]*(x[i][2]-boxlo[2]) + (image[i] >> IMG2BITS) - IMGMAX;
else vbuf[n] = 0.0;
n += nvalues;
}