WarpX
ParticleEnergy.H
Go to the documentation of this file.
1 /* Copyright 2019-2020 Yinjian Zhao
2  *
3  * This file is part of WarpX.
4  *
5  * License: BSD-3-Clause-LBNL
6  */
7 
8 #ifndef WARPX_DIAGNOSTICS_REDUCEDDIAGS_PARTICLEENERGY_H_
9 #define WARPX_DIAGNOSTICS_REDUCEDDIAGS_PARTICLEENERGY_H_
10 
11 #include "ReducedDiags.H"
12 #include <fstream>
13 
20 {
21 public:
22 
25  ParticleEnergy(std::string rd_name);
26 
33  virtual void ComputeDiags(int step) override final;
34 
35 };
36 
37 #endif
virtual void ComputeDiags(int step) override final
Definition: ParticleEnergy.cpp:81
ParticleEnergy(std::string rd_name)
Definition: ParticleEnergy.cpp:23
Definition: ReducedDiags.H:24
Definition: ParticleEnergy.H:19