|
Peano
|
Dummy step action set. More...


Public Member Functions | |
| __init__ (self) | |
| user_should_modify_template (self) | |
| Is the user allowed to modify the output. | |
| get_includes (self) | |
| Return include statements that you need. | |
| get_body_of_prepareTraversal (self) | |
Public Member Functions inherited from peano4.solversteps.ActionSet.ActionSet | |
| get_constructor_body (self) | |
| Define a tailored constructor body. | |
| get_static_initialisations (self, full_qualified_classname) | |
| get_destructor_body (self) | |
| get_body_of_getGridControlEvents (self) | |
| get_body_of_unprepareTraversal (self) | |
| get_body_of_operation (self, operation_name) | |
| Return actual C++ code snippets to be inserted into C++ code. | |
| get_action_set_name (self) | |
| Return unique action set name. | |
| get_attributes (self) | |
| Return attributes as copied and pasted into the generated class. | |
Dummy step action set.
Does almost nothing, as the name suggests. The only thing it does is to get the particle-vertex association tracing right, i.e. it tells the API that a new mesh sweep starts.
Definition at line 11 of file DummyStep.py.
| swift2.actionsets.DummyStep.DummyStep.__init__ | ( | self | ) |
Reimplemented from peano4.solversteps.ActionSet.ActionSet.
Definition at line 22 of file DummyStep.py.
References swift2.actionsets.DummyStep.DummyStep.__init__().
Referenced by swift2.actionsets.DummyStep.DummyStep.__init__().


| swift2.actionsets.DummyStep.DummyStep.get_body_of_prepareTraversal | ( | self | ) |
Reimplemented from peano4.solversteps.ActionSet.ActionSet.
Definition at line 37 of file DummyStep.py.
| swift2.actionsets.DummyStep.DummyStep.get_includes | ( | self | ) |
Return include statements that you need.
All of these includes will eventually end up in the header of the generated C++ code.
Reimplemented from peano4.solversteps.ActionSet.ActionSet.
Definition at line 32 of file DummyStep.py.
| swift2.actionsets.DummyStep.DummyStep.user_should_modify_template | ( | self | ) |
Is the user allowed to modify the output.
Return whether you expect the user to modify the generated code. If this is the case, then the API places the generated output in the directory actions. Otherwise, it goes into the observer directory and will be overwritten in each and every Python run.
Reimplemented from peano4.solversteps.ActionSet.ActionSet.
Definition at line 28 of file DummyStep.py.