Skip to content
Snippets Groups Projects
Commit 38ae5213 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

Check for number of atoms in CalculateRMSD

This function assumes the user knows what he's doing, this is also clearly
stated in the documentation:
"RMSD of atom positions (taken blindly in the order in
which the atoms appear) in the two given views."
This check at least avoids a segfault when the number of atoms does not
match. The result would be completely wrong anyway...
parent f3eca858
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,13 @@ Real CalculateRMSD(const mol::EntityView& ev1,
const mol::EntityView& ev2,
const geom::Mat4& transformation) {
if(ev1.GetAtomCount() != ev2.GetAtomCount()) {
std::stringstream ss;
ss << "Number of atoms in input views must be consistent! ";
ss << ev1.GetAtomCount() << " vs. " << ev2.GetAtomCount();
throw Error(ss.str());
}
return calc_rmsd_for_atom_lists(ev1.GetAtomList(), ev2.GetAtomList(),
transformation);
}
......
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