A class to make access of fepio block pythonic.
|
|
|
_setName(self,
name)
Set the name for this fepio block |
|
|
|
_getName(self)
Get the name for this fepio block |
|
|
|
_setStage(self,
stage)
Set the stage |
|
|
|
_getStage(self)
Get the stage |
|
|
|
_createProxy(self)
A method to create a proxy to be passed to subobjects that need to
hold a reference to the parent FEPIO object. |
|
|
|
_createAtomMapContainer(self) |
|
|
|
_createBondMapContainer(self) |
|
|
|
_createAngleMapContainer(self) |
|
|
|
_createDihedMapContainer(self) |
|
|
|
_createExclMapContainer(self) |
|
|
|
_createPairMapContainer(self) |
|
|
|
_createOtherBlockContainer(self) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addAtommaps(self,
num_items) |
|
|
|
addBondmaps(self,
num_items) |
|
|
|
addAnglemaps(self,
num_items) |
|
|
|
addDihedmaps(self,
num_items) |
|
|
|
addExclmaps(self,
num_items) |
|
|
|
addPairmaps(self,
num_items) |
|
|
|
addOtherBlock(self,
name)
Add a new other block to this fepio block, and return it. |
|
|
|
_deleteItems(self,
indices,
delete_method)
Delete multiple item from fepio sub-block. |
|
|
|
deleteAtommaps(self,
indices) |
|
|
|
deleteBondmaps(self,
indices) |
|
|
|
deleteAnglemaps(self,
indices) |
|
|
|
deleteDihedmaps(self,
indices) |
|
|
|
deleteExclmaps(self,
indices) |
|
|
|
deletePairmaps(self,
indices) |
|
|
|
|
|
name = property(_getName, _setName, doc= "fepio block name")
|
|
stage = property(_getStage, _setStage, doc= "stage")
|
|
_proxy = CreateWhenNeeded(_createProxy, "_proxy")
|
|
atommap = CreateWhenNeeded(_createAtomMapContainer, "atommap")
|
|
bondmap = CreateWhenNeeded(_createBondMapContainer, "bondmap")
|
|
anglemap = CreateWhenNeeded(_createAngleMapContainer, "anglemap")
|
|
dihedmap = CreateWhenNeeded(_createDihedMapContainer, "dihedmap")
|
|
exclmap = CreateWhenNeeded(_createExclMapContainer, "exclmap")
|
|
pairmap = CreateWhenNeeded(_createPairMapContainer, "pairmap")
|
|
other_block = CreateWhenNeeded(_createOtherBlockContainer, "ot...
|
|
property = property(_getProperty, doc= "A dictionary of fepio ...
|