covid-sim
InfStat.h
1 #ifndef COVIDSIM_INFSTAT_H_INCLUDED_
2 #define COVIDSIM_INFSTAT_H_INCLUDED_
3 
5 enum InfStat {
6  InfStat_Susceptible = 0,
7  InfStat_Latent = 1,
8  InfStat_InfectiousAlmostSymptomatic =-1,
9  InfStat_InfectiousAsymptomaticNotCase = 2,
10  InfStat_Case = -2,
11  InfStat_RecoveredFromAsymp = 3,
12  InfStat_RecoveredFromSymp = -3,
13  InfStat_Recovered = 3,
14  InfStat_ImmuneAtStart = 4,
15  InfStat_Dead_WasAsymp = 5,
16  InfStat_Dead_WasSymp = -5,
17  InfStat_Dead = 5
18 };
19 
20 // SeverityClass defintions / labels (numbers arbitrary but must be different to each other).
21 enum Severity {
22  Severity_Asymptomatic = -1,
23  Severity_Mild = 0,
24  Severity_ILI = 1,
25  Severity_SARI = 2,
26  Severity_Critical = 3,
27  Severity_RecoveringFromCritical = 4,
28  Severity_Dead = 5,
29  Severity_Recovered = 6
30 };
31 
32 #endif // COVIDSIM_INFSTAT_H_INCLUDED_