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

This commit is contained in:
sjplimp 2011-06-30 17:35:16 +00:00
parent af00170ae1
commit 40ac5cd2fb
1 changed files with 1 additions and 1 deletions

View File

@ -1981,6 +1981,6 @@ double FixRigid::compute_array(int i, int j)
if (j < 9) return fcm[i][j-6];
if (j < 12) return torque[i][j-9];
if (j == 12) return (imagebody[i] & 1023) - 512;
if (j == 13) (imagebody[i] >> 10 & 1023) - 512;
if (j == 13) return (imagebody[i] >> 10 & 1023) - 512;
return (imagebody[i] >> 20) - 512;
}