O P A R - Open Architecture Particle in Cell Simulation - Version 3.0
Plasma simulations with dust particles
 All Classes Files Functions Variables Friends Macros Groups Pages
simulation.h
Go to the documentation of this file.
1 
5 #ifndef SIMULATION_H
6 #define SIMULATION_H
7 #include "task.h"
8 //---------------------------------------------------------------------------------------------------------------------
9 
31 class Simulation : public Process {
32  public:
34  Simulation () {};
36  virtual ~Simulation () {};
38  virtual std::string GetClassName () const {return "Simulation";}
40  virtual bool IsInteractive () const;
41  virtual void Init ();
43  void IncCycle () {nCycle++;}
44  protected:
45  virtual PARAMETERMAP* MakeParamMap (PARAMETERMAP* pm);
46  public:
47  virtual void Draw () const;
48 };
49 #endif