WarpX
Loading...
Searching...
No Matches
Timestep.H
Go to the documentation of this file.
1/* Copyright 2024 The WarpX Community
2 *
3 * This file is part of WarpX.
4 *
5 * Authors: Thomas Marks
6 *
7 * License: BSD-3-Clause-LBNL
8 */
9
10#ifndef WARPX_DIAGNOSTICS_REDUCEDDIAGS_TIMESTEP_H_
11#define WARPX_DIAGNOSTICS_REDUCEDDIAGS_TIMESTEP_H_
12
13#include "ReducedDiags.H"
14#include <string>
15
20class Timestep: public ReducedDiags {
21public:
26 Timestep (const std::string& rd_name);
27
32 void ComputeDiags (int step) final;
33};
34
35#endif //WARPX_DIAGNOSTICS_REDUCEDDIAGS_TIMESTEP_H_
ReducedDiags(const std::string &rd_name)
Definition ReducedDiags.cpp:26
Timestep(const std::string &rd_name)
Definition Timestep.cpp:24
void ComputeDiags(int step) final
Definition Timestep.cpp:60