SPH
|
Writer logging selected integrals of motion. More...
#include <LogWriter.h>
Public Member Functions | |
IntegralsLogWriter (const Path &path, const Size interval) | |
Creates a writer that writes the output into given file. More... | |
IntegralsLogWriter (const SharedPtr< ILogger > &logger, const Size interval) | |
virtual void | write (const Storage &storage, const Statistics &stats) override |
Writes to the log using provided storage and statistics. More... | |
![]() | |
ILogWriter (const SharedPtr< ILogger > &logger, const Float period=0._f) | |
Constructs the log file. More... | |
virtual AutoPtr< ITrigger > | action (Storage &storage, Statistics &stats) override final |
Writes to the log using provided storage and statistics. More... | |
![]() | |
PeriodicTrigger (const Float period, const Float startTime) | |
period Period in simulation time of triggered action. More... | |
virtual TriggerEnum | type () const override |
Returns the type of the trigger. More... | |
virtual bool | condition (const Storage &UNUSED(storage), const Statistics &stats) override |
![]() | |
virtual bool | condition (const Storage &storage, const Statistics &stats)=0 |
Returns true if the trigger should be executed. More... | |
![]() | |
virtual | ~Polymorphic () |
Additional Inherited Members | |
![]() | |
SharedPtr< ILogger > | logger |
Writer logging selected integrals of motion.
Currently fixed to logging total momentum, total angular momentum and total energy.
Definition at line 75 of file LogWriter.h.
Creates a writer that writes the output into given file.
Definition at line 149 of file LogWriter.cpp.
Definition at line 152 of file LogWriter.cpp.
|
overridevirtual |
Writes to the log using provided storage and statistics.
Used for const-correctness (loggers should not modify storage nor stats) and returning another (non-nullptr) trigger (loggers do not create more triggers).
Implements ILogWriter.
Definition at line 155 of file LogWriter.cpp.