Stride Reference Manual  - generated for commit 9643b11
PublicHealthAgency.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * This is free software: you can redistribute it and/or modify it
4  * under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 3 of the License, or
6  * any later version.
7  * The software is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  * You should have received a copy of the GNU General Public License
12  * along with the software. If not, see <http://www.gnu.org/licenses/>.
13  *
14  * Copyright 2018, Willem L, Kuylen E, Broeckhove J
15  */
16 
22 #include "util/RnMan.h"
23 
24 namespace stride {
25 
26 class Population;
27 
29 {
30 public:
33 
35  void Exec(std::shared_ptr<Population> pop, util::RnMan& rnManager, unsigned short int sim_day);
36 
38  void Initialize(double detection_probability);
39 
40 private:
42  void PerformCaseFinding(std::shared_ptr<Population> pop, util::RnMan& rnMan, unsigned short int simDay);
43 
45 };
46 
47 } // namespace stride
PublicHealthAgency()
Constructs uni-initialized object.
void PerformCaseFinding(std::shared_ptr< Population > pop, util::RnMan &rnMan, unsigned short int simDay)
Public Health Strategy: look for symptomatic cases and vaccinate their household. ...
void Exec(std::shared_ptr< Population > pop, util::RnMan &rnManager, unsigned short int sim_day)
Execute.
Interface of RnMan.
void Initialize(double detection_probability)
Initialize.
Namespace for the simulator and related classes.
Definition: Calendar.cpp:28
double m_detection_probability
Detection probability of symptomatic cases.