ITM Grid Service Library: Fortran 90
|
Go to the source code of this file.
Modules | |
module | itm_grid_objectlist |
Functions/Subroutines | |
subroutine | itm_grid_objectlist::allocateIndexList (iList) |
Basic setup of structure (required because all arrays in the ITM CPO data structures are pointers, we cannot have fixed size arrays. | |
type(type_complexgrid_indexlist) | itm_grid_objectlist::createIndexListForSingle (index) |
Create an index set: single object. | |
type(type_complexgrid_indexlist) | itm_grid_objectlist::createIndexListForAll (grid, cls, ispace) |
Create an index set: all objects of given class. | |
type(type_complexgrid_indexlist) | itm_grid_objectlist::createIndexListForRange (ifrom, ito) |
Create an index list: index range. | |
type(type_complexgrid_indexlist) | itm_grid_objectlist::createIndexListForList (grid, nind, ind) |
Create an index list: explicit list of indices. | |
integer | itm_grid_objectlist::indexListSize (ilist) |
Get size of the index list. | |
integer | itm_grid_objectlist::indexListGetIndex (ilist, localind) |
Get the index specified in the index list for the local index localind. | |
integer | itm_grid_objectlist::indexListGetLocalIndex (ilist, ind) |
Get the local index of the index ind in this index list. The the index is not contained in the index list, returns GRID_UNDEFINED. | |
subroutine | itm_grid_objectlist::createExplicitObjectList (grid, olist, cls, ind) |
Create an explicit object list for a given class and given objects (optional: directly set the objects) | |
subroutine | itm_grid_objectlist::createImplicitObjectList (grid, olist, cls) |
Create an implicit object list for a given class. This routine does not fill in any object indices, this has to be done in a separate step. | |
subroutine | itm_grid_objectlist::createImplicitObjectListForAll (grid, olist, cls) |
Create an implicit object list for a given class, all objects. | |
logical | itm_grid_objectlist::objectListIsExplicit (olist) |
Check whether an object list is an explicit list of objects. | |
integer | itm_grid_objectlist::objectListSize (olist) |
Get size of the index set. | |
integer, dimension(size(olist%cls)) | itm_grid_objectlist::objectListGetIndex (olist, localind) |
Get index tuple for the object with local index lind in this list. | |
type(GridObject) | itm_grid_objectlist::objectListGetObject (olist, localind) |
Get ith object specified in the object list. | |
integer | itm_grid_objectlist::objectListGetIndexForObject (olist, obj) |
Return the local index of the given object obj in the object list olist, according to the object ordering in the object list. If the object is not contained in the object list, GRID_UNDEFINED is returned. |