ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SRI.hpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/SRI.hpp (file contents):
Revision 435 by mmeineke, Fri Mar 28 19:33:37 2003 UTC vs.
Revision 564 by mmeineke, Tue Jun 24 19:57:54 2003 UTC

# Line 113 | Line 113 | class QuadraticBend : public Bend{
113    double d0;
114   };
115  
116 + class HarmonicBond : public Bond{
117 +
118 + public:
119 +  HarmonicBond(Atom &a, Atom &b, double theR0, double theK0 );
120 +  ~HarmonicBond(){}
121 +
122 +  void printMe( void ){
123 +    std::cerr << c_p_a->getType() << " - " << c_p_b->getType()
124 +              << ": " << c_p_a->getIndex() << " - "
125 +              << c_p_b->getIndex()
126 +              << ", d0 = " << d0 << ", k0" << k0 <<"\n";
127 +  }
128 +
129 +  private:
130 +  double bond_force( double r_ab );
131 +  double d0;
132 +  double k0;
133 +
134 + };
135 +
136   class QuadraticBend : public Bend{
137  
138   public:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines