SPH
|
Helper integral wrapping another integral and converting the returned value to scalar. More...
#include <Integrals.h>
Public Member Functions | |
IntegralWrapper ()=default | |
template<typename TIntegral > | |
IntegralWrapper (AutoPtr< TIntegral > &&integral) | |
virtual Float | evaluate (const Storage &storage) const override |
Computes the integral quantity using particles in the storage. More... | |
virtual std::string | getName () const override |
Returns the name of the integral. More... | |
![]() | |
virtual | ~Polymorphic () |
Helper integral wrapping another integral and converting the returned value to scalar.
Works as type erasere, allowing to integrals without template parameters, store integrals of different types in one container, etc.
Definition at line 228 of file Integrals.h.
|
default |
|
inline |
Definition at line 240 of file Integrals.h.
Computes the integral quantity using particles in the storage.
Storage must contain quantites relevant to the integral implementation. Generally positions, masses and density must be present.
Implements IIntegral< Float >.
Definition at line 246 of file Integrals.h.
|
inlineoverridevirtual |
Returns the name of the integral.
Needed to label the integral in logs, GUI etc.
Implements IIntegral< Float >.
Definition at line 250 of file Integrals.h.