Salome HOME
Updated copyright comment
[modules/med.git] / doc / dev / sphinx / fields_arch_implementation_layer.rst
1 .. _fields_arch_implementation_layer_page:
2
3 **********************************
4 FIELDS module implementation layer
5 **********************************
6
7 FIELDS module uses Python API of the ParaVis module to build presentations. Internally any presentation of the FIELDS module is implemented as a particular pipeline of the ParaVis filters, which always starts with the *MEDReader*.
8 At the implementation level, a pipeline which represents presentation is built via a sequence of the Python commands. These command are executed in the builtin Python interpreter.
9
10 The hierarchical structure of the presentation classes is shown on the diagram:
11
12 .. image:: images/image_implementation_layer_hierarchy.png
13    :align: center
14
15 The base class for all presentations is ``MEDPresentation``; it contains base functionalities for all presentations. All others classes implement functionalities of particular presentations.
16
17
18