Commit 3b44209b by maarten

stats met EDIAm

git-svn-id: svn+ssh://gitlab/srv/svn-repos/pdb-redo/trunk@210 a1961a4f-ab94-4bcc-80e8-33b5a54de466
parent 679a15b6
......@@ -14,6 +14,9 @@ class AtomShape
{
public:
AtomShape(const Atom& atom, float resHigh, float resLow);
AtomShape(const Atom& atom, float resHigh, float resLow,
float bFactor);
~AtomShape();
AtomShape(const AtomShape&) = delete;
......
......@@ -406,6 +406,12 @@ AtomShape::AtomShape(const Atom& atom, float resHigh, float resLow)
{
}
AtomShape::AtomShape(const Atom& atom, float resHigh, float resLow, float bFactor)
: mImpl(new AtomShapeImpl(atom.type(), atom.charge(), clipper::Util::b2u(bFactor),
1.0, resHigh, resLow))
{
}
AtomShape::~AtomShape()
{
delete mImpl;
......
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