covid-sim
Update.h
1 #ifndef COVIDSIM_UPDATE_H_INCLUDED_
2 #define COVIDSIM_UPDATE_H_INCLUDED_
3 
4 void DoImmune(int);
5 void DoInfect(int, double, int, int); //added int as argument to InfectSweep to record run number: ggilani - 15/10/14
6 void DoIncub(int, unsigned short int, int, int); //added int as argument to record run number: ggilani - 23/10/14
7 void DoDetectedCase(int, double, unsigned short int, int);
8 void DoCase(int, double, unsigned short int, int);
9 void DoFalseCase(int, double, unsigned short int, int);
10 void DoRecover(int, int, int); //added int as argument to record run number: ggilani - 23/10/14. Added thread number to record Severity categories in StateT.
11 void DoDeath(int, int, int); //added int as argument to record run number: ggilani - 23/10/14
12 void DoPlaceClose(int, int, unsigned short int, int, int);
13 void DoPlaceOpen(int, int, unsigned short int, int);
14 void DoTreatCase(int, unsigned short int, int);
15 void DoProph(int, unsigned short int, int);
16 void DoProphNoDelay(int, unsigned short int, int, int);
17 int DoVacc(int, unsigned short int);
18 void DoVaccNoDelay(int, unsigned short int);
19 //SEVERITY ANALYSIS
20 void DoMild(int, int);
21 void DoSARI(int, int);
22 void DoCritical(int, int);
23 void DoRecoveringFromCritical(int, int);
24 void DoRecover_FromSeverity(int, int);
25 void DoDeath_FromCriticalorSARIorILI(int, int);
26 
27 #endif // COVIDSIM_UPDATE_H_INCLUDED_