BioCMAMC-ST
host_specific.hpp
1#ifndef __HOST_SPECIFIC_HPP__
2#define __HOST_SPECIFIC_HPP__
3
4// #include <common/common.hpp>
5
6#include <common/logger.hpp>
7#include <core/simulation_parameters.hpp>
8#include <dataexporter/partial_exporter.hpp>
9#include <memory>
10
11// Foward declaration
12namespace Simulation
13{
14 class SimulationUnit;
15} // namespace Simulation
16
17namespace CmaUtils
18{
20}
21
36void host_process(
37 std::shared_ptr<IO::Logger> logger, /*logger is passed by value because it
38 can be set into maindataexporter*/
39 const ExecInfo& exec,
41 const Core::SimulationParameters& params,
42 std::unique_ptr<CmaUtils::FlowMapTransitionner>&& transitioner,
43 Core::PartialExporter& partial_exporter);
44
45#endif //__HOST_SPECIFIC_HPP__
Manages the reading, caching, and transitioning of flowmaps for simulation timesteps.
Definition transitionner.hpp:41
Exporter for each MPI worker (including host) that exports data relative to particle state.
Definition partial_exporter.hpp:27
Definition simulation.hpp:56
Namespace to handle algorithms and structures related to reading compartment mesh.
Definition host_specific.hpp:18
Namespace that contains classes and structures related to simulation handling.
Definition host_specific.hpp:13
Definition simulation_parameters.hpp:59
Definition execinfo.hpp:12