Bsoft object
struct Bbond
Source:
include/rwmolecule.h
Description:
All bonds defined for a molecule group.
Features:
Intra- and intermolecular bonds are defined by pointers to two atoms each.
The structure also holds bond length and strength properties.
Code:
struct Bbond {
Bbond* next;
// Next bond in linked list
Batom* atom1;
// First atom
Batom* atom2;
// Second atom
float l;
// Reference bond length
float k;
// Bond strength
} ;
Other objects included:
struct Batom
struct Bbond
Generated by bdoc.pl on Mon Jun 15 11:55:12 2009
Back to the Bsoft home