CustusX
16.5.0-rc9
An IGT application
|
#include <cxCompositeTimedAlgorithm.h>
Public Member Functions | |
CompositeSerialTimedAlgorithm (QString name="composite") | |
virtual void | clear () |
virtual QString | getProduct () const |
virtual void | execute () |
virtual bool | isFinished () const |
virtual bool | isRunning () const |
Public Member Functions inherited from cx::CompositeTimedAlgorithm | |
CompositeTimedAlgorithm (QString name) | |
virtual void | append (TimedAlgorithmPtr child) |
Public Member Functions inherited from cx::TimedBaseAlgorithm | |
TimedBaseAlgorithm (QString product, int secondsBetweenAnnounce) | |
virtual | ~TimedBaseAlgorithm () |
Additional Inherited Members | |
Signals inherited from cx::TimedBaseAlgorithm | |
void | aboutToStart () |
emitted at start of execute. Use to perform preprocessing More... | |
void | started (int maxSteps) |
emitted at start of run. More... | |
void | finished () |
should be emitted when at the end of postProcessingSlot More... | |
void | productChanged () |
emitted whenever product string has changed More... | |
Protected Slots inherited from cx::TimedBaseAlgorithm | |
virtual void | finishedSlot () |
virtual void | postProcessingSlot () |
Protected Member Functions inherited from cx::TimedBaseAlgorithm | |
void | startTiming () |
void | stopTiming () |
QString | getSecondsPassedAsString () const |
Protected Attributes inherited from cx::CompositeTimedAlgorithm | |
std::vector< TimedAlgorithmPtr > | mChildren |
Protected Attributes inherited from cx::TimedBaseAlgorithm | |
bool | mUseDefaultMessages |
Composition of several TimedBaseAlgorithms executing in a sequence.
Usage: Append all algorithms as children then execute. All children will be executed in sequence. started()/finished() will also work.
Definition at line 72 of file cxCompositeTimedAlgorithm.h.
|
explicit |
Definition at line 57 of file cxCompositeTimedAlgorithm.cpp.
|
virtual |
Implements cx::CompositeTimedAlgorithm.
Definition at line 72 of file cxCompositeTimedAlgorithm.cpp.
|
virtual |
Execute the algorithm. Parts of the execution can be in another thread, thus the call usually returns after preprocessing is complete. The exec starts by emitting aboutToStart(), which can be used by callers to set input arguments.
Implements cx::TimedBaseAlgorithm.
Definition at line 85 of file cxCompositeTimedAlgorithm.cpp.
|
virtual |
Reimplemented from cx::TimedBaseAlgorithm.
Definition at line 63 of file cxCompositeTimedAlgorithm.cpp.
|
virtual |
Returns true after the finished() signal is emitted.
Implements cx::TimedBaseAlgorithm.
Definition at line 121 of file cxCompositeTimedAlgorithm.cpp.
|
virtual |
Returns true if preprocess is started and postprocess not complete. (Right after aboutToStart, right before finished())
Implements cx::TimedBaseAlgorithm.
Definition at line 126 of file cxCompositeTimedAlgorithm.cpp.