Commit 461a7432 by Maarten L. Hekkelman

Fix is_cis

parent ea1eba70
......@@ -143,7 +143,7 @@ class dssp
float omega() const;
bool is_pre_pro() const;
bool is_cis() const { return omega() < 30.0f; }
bool is_cis() const { return std::abs(omega()) < 30.0f; }
float chiral_volume() const;
std::size_t nr_of_chis() const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment