#include <GromacsTopFile.h>
Public Member Functions | |
| MolInst (const GenericMol *theMol, int theNum) | |
| int | getNum () const |
| int | getNumAtoms () const |
| int | getNumRes () const |
| int | getNumBonds () const |
| int | getNumAngles () const |
| int | getNumDihedrals () const |
| const GenericMol * | getMol () const |
|
||||||||||||
|
Definition at line 782 of file GromacsTopFile.C. 00782 {
00783 mol = theMol;
00784 num = theNum;
00785 }
|
|
|
Definition at line 193 of file GromacsTopFile.h. Referenced by getNumAngles(), getNumAtoms(), getNumBonds(), getNumDihedrals(), and getNumRes(). 00193 { return mol; }
|
|
|
Definition at line 183 of file GromacsTopFile.h. Referenced by getNumAngles(), getNumAtoms(), getNumBonds(), getNumDihedrals(), and getNumRes(). 00183 { return num; }
|
|
|
Definition at line 794 of file GromacsTopFile.C. References getMol(), getNum(), and GenericMol::getNumAngles(). 00794 {
00795 return getMol()->getNumAngles() * getNum();
00796 }
|
|
|
Definition at line 788 of file GromacsTopFile.C. References getMol(), getNum(), and GenericMol::getNumAtoms(). 00788 {
00789 return getMol()->getNumAtoms() * getNum();
00790 }
|
|
|
Definition at line 791 of file GromacsTopFile.C. References getMol(), getNum(), and GenericMol::getNumBonds(). 00791 {
00792 return getMol()->getNumBonds() * getNum();
00793 }
|
|
|
Definition at line 797 of file GromacsTopFile.C. References getMol(), getNum(), and GenericMol::getNumDihedrals(). 00797 {
00798 return getMol()->getNumDihedrals() * getNum();
00799 }
|
|
|
Definition at line 800 of file GromacsTopFile.C. References getMol(), getNum(), and GenericMol::getNumRes().
|
1.3.9.1