#include <clock.h>
Clock with explicitly defined time steps.
Definition at line 405 of file clock.h.
◆ CustomClock()
smash::CustomClock::CustomClock |
( |
std::vector< double > |
times | ) |
|
|
inlineexplicit |
Initialises a custom clock with explicitly given output times.
- Parameters
-
[in] | times | vector of desired output times |
Definition at line 412 of file clock.h.
Representation counter_
Internally used to count the number of time steps.
std::vector< double > custom_times_
Vector of times where output is generated.
◆ current_time()
double smash::CustomClock::current_time |
( |
| ) |
const |
|
inlineoverridevirtual |
- Returns
- The start time if the clock has never been ticked or the current time otherwise.
- Exceptions
-
std::out_of_range | if the clock has ticked beyond the last time. |
std::runtime_error | if the clock has an internal broken state. |
Implements smash::Clock.
Definition at line 423 of file clock.h.
428 throw std::runtime_error(
429 "Trying to access time of clock in invalid state.");
double start_time_
Starting time of the simulation.
◆ next_time()
double smash::CustomClock::next_time |
( |
| ) |
const |
|
inlineoverridevirtual |
- Returns
- The next custom time.
- Exceptions
-
std::out_of_range | if the clock has ticked beyond last time. |
Implements smash::Clock.
Definition at line 439 of file clock.h.
◆ timestep_duration()
double smash::CustomClock::timestep_duration |
( |
| ) |
const |
|
inlineoverridevirtual |
- Returns
- the duration of the current time step
Implements smash::Clock.
Definition at line 442 of file clock.h.
double next_time() const override
double current_time() const override
◆ reset()
void smash::CustomClock::reset |
( |
double |
start_time, |
|
|
bool |
|
|
) |
| |
|
inlineoverridevirtual |
Reset the clock to the starting time of the simulation.
- Parameters
-
[in] | start_time | starting time of the simulation |
- Note
- The second
bool
parameter is irrelevant and unused here.
Implements smash::Clock.
Definition at line 453 of file clock.h.
◆ remove_times_in_past()
void smash::CustomClock::remove_times_in_past |
( |
double |
start_time | ) |
|
|
inlineoverridevirtual |
Remove all custom times before start_time.
- Parameters
-
[in] | start_time | starting time of the simulation |
Implements smash::Clock.
Definition at line 463 of file clock.h.
466 [start_time](
double t) {
467 if (t <= start_time) {
468 logg[LClock].warn(
"Removing custom output time ", t,
469 " fm since it is earlier than the "
470 "starting time of the simulation");
◆ present_internal_time()
double smash::CustomClock::present_internal_time |
( |
| ) |
const |
|
inlineoverrideprotectedvirtual |
◆ custom_times_
std::vector<double> smash::CustomClock::custom_times_ |
|
private |
Vector of times where output is generated.
Definition at line 490 of file clock.h.
◆ start_time_
double smash::CustomClock::start_time_ = 0. |
|
private |
Starting time of the simulation.
Definition at line 492 of file clock.h.
The documentation for this class was generated from the following file: