SPH
|
#include <SimulationJobs.h>
Public Member Functions | |
virtual std::string | className () const override |
Name representing the type of the job (e.e. "SPH"). More... | |
virtual VirtualSettings | getSettings () override |
Returns a settings object which allows to query and modify the state of the job. More... | |
virtual AutoPtr< IRun > | getRun (const RunSettings &overrides) const override |
Returns the actual simulation object. More... | |
SphJob (const std::string &name, const RunSettings &overrides=EMPTY_SETTINGS) | |
![]() | |
SphJob (const std::string &name, const RunSettings &overrides=EMPTY_SETTINGS) | |
virtual UnorderedMap< std::string, ExtJobType > | getSlots () const override |
Lists all potential inputs of the job. More... | |
virtual UnorderedMap< std::string, ExtJobType > | requires () const override |
List of slots that need to be connected to evaluate the job. More... | |
![]() | |
IRunJob (const std::string &name) | |
~IRunJob () override | |
![]() | |
IParticleJob (const std::string &name) | |
~IParticleJob () override | |
virtual Optional< ExtJobType > | provides () const override final |
Specifies the type of the job, i.e. what kind of data the job provides. More... | |
virtual JobContext | getResult () const override final |
Returns the result of the job. More... | |
![]() | |
IJob (const std::string &name) | |
virtual std::string | instanceName () const |
Unique name representing this job. More... | |
![]() | |
virtual | ~Polymorphic () |
![]() | |
SharedToken () | |
SharedToken (std::nullptr_t) | |
SharedToken (const SharedToken &other) | |
template<typename T > | |
SharedToken (const SharedPtr< T > &ptr) | |
SharedToken & | operator= (const SharedToken &other) |
~SharedToken () | |
void | reset () |
INLINE | operator bool () const |
INLINE bool | operator! () const |
Additional Inherited Members | |
![]() | |
static RunSettings | getDefaultSettings (const std::string &name) |
![]() | |
virtual void | evaluate (const RunSettings &global, IRunCallbacks &callbacks) override final |
Runs the operation provided by the job. More... | |
![]() | |
template<typename T > | |
SharedPtr< T > | getInput (const std::string &name) const |
Convenient function to return input data for slot of given name. More... | |
![]() | |
RunSettings | settings |
bool | isResumed = false |
![]() | |
SharedPtr< ParticleData > | result |
Data filled by the job when it finishes. More... | |
![]() | |
std::string | instName |
UnorderedMap< std::string, JobContext > | inputs |
Contains all input data, identified by names of input slots. More... | |
Definition at line 39 of file SimulationJobs.h.
|
inlineoverridevirtual |
Name representing the type of the job (e.e. "SPH").
Reimplemented from SphJob.
Definition at line 43 of file SimulationJobs.h.
|
overridevirtual |
Returns the actual simulation object.
This provides a way to implement the job functionality, as function evaluate is final and used only internally.
overrides | Settings overriding the current settings of the job. |
Reimplemented from SphJob.
Definition at line 379 of file SimulationJobs.cpp.
|
overridevirtual |
Returns a settings object which allows to query and modify the state of the job.
It is not necessary to expose all state variables this way. This is mainly intended for (de)serialization of the job state and for connection with UI controls.
Reimplemented from SphJob.
Definition at line 370 of file SimulationJobs.cpp.
|
explicit |
Definition at line 13 of file SimulationJobs.cpp.