|
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
__call__(self,
pbc,
fr)
Perform all registered geometry calculations. |
|
|
|
addVector(self,
from_gid,
to_gid)
Add a vector calculation request. |
|
|
|
addDistance(self,
i_gid,
j_gid)
Add a distance calculation request. |
|
|
|
addAngle(self,
i_gid,
j_gid,
k_gid)
Add an angle calculation request. |
|
|
|
addTorsion(self,
i_gid,
j_gid,
k_gid,
l_gid)
Add a torsion calculation request. |
|
|
|
addCustom(self,
cid,
key=None,
default=None)
Add a custom calculation item. |
|
|
|
|
|
getVector(self,
from_gid,
to_gid)
Get the vector between the atoms: from_gid and
to_gid . |
|
|
|
getDistance(self,
i_gid,
j_gid)
Get the distance between the atoms: i_gid and
j_gid . |
|
|
|
getAngle(self,
i_gid,
j_gid,
k_gid)
Get the angle between the two vectors: j==>i and j==>k. |
|
|
|
getTorsion(self,
i_gid,
j_gid,
k_gid,
l_gid)
Get the torsion as defined by the four atoms: i_gid ,
j_gid , k_gid , and l_gid . |
|
|
|
getCustom(self,
cid)
Return all results of the custom calculation type c |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|