Skip to content
Snippets Groups Projects
Commit 0880b269 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Changed FitToTemplate::apply()

It does not shift anymore the atoms to their original positions.

Notice that this makes its behavior consistent with WHOLEMOLECULES
where atoms are not restored in the backward loop.

This implies that (consistently) one cannot rely that shared atoms
(those accessed with modifyAtoms()) are in their original position
in the ::apply() methods.
parent ec132557
No related branches found
No related tags found
No related merge requests found
...@@ -163,8 +163,6 @@ void FitToTemplate::calculate(){ ...@@ -163,8 +163,6 @@ void FitToTemplate::calculate(){
void FitToTemplate::apply(){ void FitToTemplate::apply(){
Vector totForce; Vector totForce;
for(unsigned i=0;i<getTotAtoms();i++){ for(unsigned i=0;i<getTotAtoms();i++){
Vector & ato (modifyPosition(AtomNumber::index(i)));
ato-=shift;
totForce+=modifyForce(AtomNumber::index(i)); totForce+=modifyForce(AtomNumber::index(i));
} }
for(unsigned i=0;i<aligned.size();++i){ for(unsigned i=0;i<aligned.size();++i){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment