#include <forceFieldParameters.h>
Public Member Functions |
|
Constructors and destructor
|
|
ForceFieldParameters () | |
Default constructor. |
|
ForceFieldParameters (const String &filename) | |
Constructor. |
|
ForceFieldParameters (const ForceFieldParameters &force_field_parameter) | |
Copy constructor. |
|
virtual | ~ForceFieldParameters () |
Destructor. |
|
Assignment
|
|
virtual void | clear () |
Clear method. |
|
const ForceFieldParameters & | operator= (const ForceFieldParameters ¶m) |
Assignment operator. |
|
Accessors
|
|
AtomTypes & | getAtomTypes () |
Return a reference to the atom type
parameter section. |
|
virtual bool | init () |
Read the contents of the INI file
and interpret them. |
|
Predicates
|
|
virtual bool | isValid () const |
Valididty predicate. |
|
bool | operator== (const ForceFieldParameters ¶m) const |
Equality operator. |
|
Protected Attributes |
|
AtomTypes | atom_types_ |
Friends |
|
class | ForceField |
virtual bool BALL::ForceFieldParameters::isValid | ( | ) | const [virtual] |
Valididty predicate.
Return true if the force field parameters were correctly initialized, the internal INI file is valid and the internal atom types object is valid.
valid_ &&
parameter_file_.isValid() &&
atom_types_.isValid()
Reimplemented from BALL::Parameters.