forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8457 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
0aaac5757c
commit
f38a94ae8a
|
@ -602,7 +602,7 @@ void Atom::data_atoms(int n, char *buf)
|
|||
imagedata =
|
||||
(((tagint) atoi(values[iptr+2]) + IMGMAX & IMGMASK) << IMG2BITS) |
|
||||
(((tagint) atoi(values[iptr+1]) + IMGMAX & IMGMASK) << IMGBITS) |
|
||||
(atoi(values[iptr]) + IMGMASK & IMGMASK);
|
||||
(atoi(values[iptr]) + IMGMAX & IMGMASK);
|
||||
else imagedata = ((tagint) IMGMAX << IMG2BITS) |
|
||||
((tagint) IMGMAX << IMGBITS) | IMGMAX;
|
||||
|
||||
|
|
|
@ -272,7 +272,7 @@ void CreateAtoms::add_single()
|
|||
|
||||
if (remapflag) {
|
||||
tagint imagetmp = ((tagint) IMGMAX << IMG2BITS) |
|
||||
((tagint) IMGMASK << IMGBITS) | IMGMAX;
|
||||
((tagint) IMGMAX << IMGBITS) | IMGMAX;
|
||||
domain->remap(xone,imagetmp);
|
||||
}
|
||||
|
||||
|
|
|
@ -1652,7 +1652,7 @@ void FixRigid::setup_bodies()
|
|||
|
||||
for (ibody = 0; ibody < nbody; ibody++)
|
||||
imagebody[ibody] = ((tagint) IMGMAX << IMG2BITS) |
|
||||
((tagint) IMGMASK << IMGBITS) | IMGMAX;
|
||||
((tagint) IMGMAX << IMGBITS) | IMGMAX;
|
||||
|
||||
pre_neighbor();
|
||||
|
||||
|
|
Loading…
Reference in New Issue