Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ () |
Initializes the ElasticPotentialList instance. | |
None | __init__ (ElasticPotentialList list) |
Initializes a copy of the ElasticPotentialList instance list. More... | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
int | getSize () |
bool | isEmpty () |
None | resize (int num_elem, ElasticPotential value) |
None | reserve (int num_elem) |
int | getCapacity () |
None | clear () |
ElasticPotentialList | assign (ElasticPotentialList array) |
Replaces the current state of self with a copy of the state of the ElasticPotentialList instance array. More... | |
None | assign (int num_elem, ElasticPotential value) |
None | addElement (ElasticPotential value) |
None | addElements (ElasticPotentialList values) |
None | insertElement (int idx, ElasticPotential value) |
None | insertElements (int idx, int num_elem, ElasticPotential value) |
None | insertElements (int index, ElasticPotentialList values) |
None | popLastElement () |
None | removeElement (int idx) |
None | removeElements (int begin_idx, int end_idx) |
ElasticPotential | getFirstElement () |
ElasticPotential | getLastElement () |
ElasticPotential | getElement (int idx) |
None | setElement (int idx, ElasticPotential value) |
None | __delitem__ (int idx) |
ElasticPotential | __getitem__ (int idx) |
int | __len__ () |
None | __setitem__ (int index, ElasticPotential value) |
Properties | |
objectID = property(getObjectID) | |
size = property(getSize) | |
None CDPL.ForceField.ElasticPotentialList.__init__ | ( | ElasticPotentialList | list | ) |
Initializes a copy of the ElasticPotentialList instance list.
list | The ElasticPotentialList instance to copy. |
int CDPL.ForceField.ElasticPotentialList.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python ElasticPotentialList instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b
thus cannot tell reliably whether the two ElasticPotentialList instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID()
.
int CDPL.ForceField.ElasticPotentialList.getSize | ( | ) |
bool CDPL.ForceField.ElasticPotentialList.isEmpty | ( | ) |
None CDPL.ForceField.ElasticPotentialList.resize | ( | int | num_elem, |
ElasticPotential | value | ||
) |
num_elem | |
value |
None CDPL.ForceField.ElasticPotentialList.reserve | ( | int | num_elem | ) |
num_elem |
int CDPL.ForceField.ElasticPotentialList.getCapacity | ( | ) |
ElasticPotentialList CDPL.ForceField.ElasticPotentialList.assign | ( | ElasticPotentialList | array | ) |
Replaces the current state of self with a copy of the state of the ElasticPotentialList instance array.
array | The ElasticPotentialList instance to copy. |
None CDPL.ForceField.ElasticPotentialList.assign | ( | int | num_elem, |
ElasticPotential | value | ||
) |
num_elem | |
value |
None CDPL.ForceField.ElasticPotentialList.addElement | ( | ElasticPotential | value | ) |
value |
None CDPL.ForceField.ElasticPotentialList.addElements | ( | ElasticPotentialList | values | ) |
values |
None CDPL.ForceField.ElasticPotentialList.insertElement | ( | int | idx, |
ElasticPotential | value | ||
) |
idx | |
value |
None CDPL.ForceField.ElasticPotentialList.insertElements | ( | int | idx, |
int | num_elem, | ||
ElasticPotential | value | ||
) |
idx | |
num_elem | |
value |
None CDPL.ForceField.ElasticPotentialList.insertElements | ( | int | index, |
ElasticPotentialList | values | ||
) |
index | |
values |
None CDPL.ForceField.ElasticPotentialList.removeElement | ( | int | idx | ) |
idx |
None CDPL.ForceField.ElasticPotentialList.removeElements | ( | int | begin_idx, |
int | end_idx | ||
) |
begin_idx | |
end_idx |
ElasticPotential CDPL.ForceField.ElasticPotentialList.getFirstElement | ( | ) |
ElasticPotential CDPL.ForceField.ElasticPotentialList.getLastElement | ( | ) |
ElasticPotential CDPL.ForceField.ElasticPotentialList.getElement | ( | int | idx | ) |
idx |
None CDPL.ForceField.ElasticPotentialList.setElement | ( | int | idx, |
ElasticPotential | value | ||
) |
idx | |
value |
None CDPL.ForceField.ElasticPotentialList.__delitem__ | ( | int | idx | ) |
idx |
ElasticPotential CDPL.ForceField.ElasticPotentialList.__getitem__ | ( | int | idx | ) |
idx |
int CDPL.ForceField.ElasticPotentialList.__len__ | ( | ) |
None CDPL.ForceField.ElasticPotentialList.__setitem__ | ( | int | index, |
ElasticPotential | value | ||
) |
index | |
value |