BioinstSim  2
 All Classes Functions Variables
populationanalyzer.h
1 #ifndef POPULATIONANALYZER_H_
2 #define POPULATIONANALYZER_H_
3 
4 /******************************************************************************/
5 /******************************************************************************/
6 
7 #include "simobject.h"
8 
9 /******************************************************************************/
10 /******************************************************************************/
11 
12 
14 {
15 public:
16  CPopulationAnalyzer(CArguments* pc_arguments);
17 
18  virtual void SimulationStep(unsigned int un_step_number);
19 
20 
21 protected:
22  CArguments* m_pcArguments;
23  unsigned int m_unFullUpdatePeriod;
24  unsigned int m_unBriefUpdatePeriod;
25  unsigned int m_unStepsSinceLastFullUpdate;
26  unsigned int m_unStepsSinceLastBriefUpdate;
27  unsigned int m_unMacroModeImmuneThreshold;
28 
29  bool m_bAnalyzeSingleAgent;
30 
31 };
32 
33 
34 /******************************************************************************/
35 /******************************************************************************/
36 
37 #endif