WarpX
ParticleNumber.H
Go to the documentation of this file.
1 /* Copyright 2019-2020 Neil Zaim, Yinjian Zhao
2  *
3  * This file is part of WarpX.
4  *
5  * License: BSD-3-Clause-LBNL
6  */
7 
8 #ifndef WARPX_DIAGNOSTICS_REDUCEDDIAGS_PARTICLENUMBER_H_
9 #define WARPX_DIAGNOSTICS_REDUCEDDIAGS_PARTICLENUMBER_H_
10 
11 #include "ReducedDiags.H"
12 
13 #include <string>
14 
20 {
21 public:
22 
27  ParticleNumber(const std::string& rd_name);
28 
35  void ComputeDiags(int step) final;
36 
37 };
38 
39 #endif // WARPX_DIAGNOSTICS_REDUCEDDIAGS_PARTICLENUMBER_H_
Definition: ParticleNumber.H:20
void ComputeDiags(int step) final
Definition: ParticleNumber.cpp:87
ParticleNumber(const std::string &rd_name)
Definition: ParticleNumber.cpp:30
Definition: ReducedDiags.H:24