#include <Scheduler.H>
Public Member Functions | |
CheckpointPeriodicFunction (const std::string &a_prefix) | |
void | setUp (AMR &a_AMR, int a_interval) |
void | operator() (int a_step, Real a_time) |
Private Attributes | |
std::string | m_prefix |
CheckpointPeriodicFunction::CheckpointPeriodicFunction | ( | const std::string & | a_prefix | ) | [explicit] |
void CheckpointPeriodicFunction::setUp | ( | AMR & | a_AMR, | |
int | a_interval | |||
) | [virtual] |
Override this method to prepare the periodic function to interact with the given AMR object when set to an interval in time steps. By default this does nothing.
a_AMR | The AMR object with which this function will interact during periodic function calls. | |
a_interval | The interval (in steps) at which the periodic function is to be called. |
Reimplemented from Scheduler::PeriodicFunction.
void CheckpointPeriodicFunction::operator() | ( | int | a_step, | |
Real | a_time | |||
) | [virtual] |
Override this operator to define the behavior of the periodic function.
a_step | The step at which the function is called. | |
a_time | The simulation time at which the function is called. |
Implements Scheduler::PeriodicFunction.
std::string CheckpointPeriodicFunction::m_prefix [private] |