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

This commit is contained in:
sjplimp
2013-01-05 00:15:59 +00:00
parent a535ce285a
commit 0fd35228c6
2 changed files with 9 additions and 8 deletions

View File

@ -347,11 +347,7 @@ void FixAdapt::change_settings()
int *mask = atom->mask;
int nlocal = atom->nlocal;
for (i = 0; i < nlocal; i++)
if (mask[i] & groupbit) {
// cout<<"Fix adapt called now!\n";
// cout<<" Charge of atom: "<<i<<" is: "<<value;
q[i] = value;
}
if (mask[i] & groupbit) q[i] = value;
}
}
}