WarpX
BeamRelevant.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_BEAMRELEVANT_H_
9 #define WARPX_DIAGNOSTICS_REDUCEDDIAGS_BEAMRELEVANT_H_
10 
11 #include "ReducedDiags.H"
12 
13 #include <string>
14 
18 class BeamRelevant : public ReducedDiags
19 {
20 public:
21 
26  BeamRelevant(const std::string& rd_name);
27 
29  std::string m_beam_name;
30 
36  void ComputeDiags(int step) final;
37 
38 };
39 
40 #endif
Definition: BeamRelevant.H:19
void ComputeDiags(int step) final
Definition: BeamRelevant.cpp:161
std::string m_beam_name
name of beam species
Definition: BeamRelevant.H:29
BeamRelevant(const std::string &rd_name)
Definition: BeamRelevant.cpp:35
Definition: ReducedDiags.H:24