1 |
< |
/* |
1 |
> |
/* |
2 |
|
* Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. |
3 |
|
* |
4 |
|
* The University of Notre Dame grants you ("Licensee") a |
54 |
|
#include "primitives/DirectionalAtom.hpp" |
55 |
|
|
56 |
|
namespace oopse { |
57 |
< |
|
58 |
< |
class GhostBend : public Bend { |
59 |
< |
public: |
60 |
< |
GhostBend(Atom* atom1, DirectionalAtom* ghostAtom, BendType* bt) |
61 |
< |
: Bend(atom1, ghostAtom, ghostAtom, bt) { |
62 |
< |
|
63 |
< |
} |
64 |
< |
|
65 |
< |
virtual void calcForce(); |
66 |
< |
|
67 |
< |
}; |
68 |
< |
|
57 |
> |
|
58 |
> |
class GhostBend : public Bend { |
59 |
> |
public: |
60 |
> |
GhostBend(Atom* atom1, DirectionalAtom* ghostAtom, BendType* bt) |
61 |
> |
: Bend(atom1, ghostAtom, ghostAtom, bt) { |
62 |
> |
} |
63 |
> |
|
64 |
> |
virtual void calcForce(RealType& angle); |
65 |
> |
}; |
66 |
|
} //end namespace oopse |
70 |
– |
|
67 |
|
#endif //PRIMITIVES_GHOSTBEND_HPP |
68 |
|
|