ppap4lmp  0.7.2
sta_dump.h
Go to the documentation of this file.
1 
9 #ifndef STA_DUMP_H
10 #define STA_DUMP_H
11 
12 #include <starters/starter.h>
13 
21 class StaDump : public Starter {
22  protected:
29  int timestep;
34  public:
50  StaDump(
51  const Str &filepath_,
52  const int timestep_);
53  virtual ~StaDump() = default;
54 };
55 
56 #endif
Str filepath
Definition: sta_dump.h:33
This file has a definition of Starter class, which is a subclass of Updater class.
std::string Str
Str is an alias for string.
Definition: std.h:21
StaDump(const Str &filepath_, const int timestep_)
Constructor of StaDump class.
Definition: sta_dump.cpp:13
StaDump is an abstract class whose subclasses read a Lammps&#39; dump file.
Definition: sta_dump.h:21
Starter sets some properties to an empty Element object.
Definition: starter.h:24
int timestep
Definition: sta_dump.h:29