BioCMAMC-ST
host_specific.hpp
1#ifndef __HOST_SPECIFIC_HPP__
2#define __HOST_SPECIFIC_HPP__
3
4#include <cma_utils/alias.hpp>
5#include <common/logger.hpp>
6#include <core/simulation_parameters.hpp>
7#include <dataexporter/partial_exporter.hpp>
8#include <memory>
9
10// Foward declaration
11namespace Simulation
12{
13 class SimulationUnit;
14} // namespace Simulation
15
16namespace CmaUtils
17{
18 class FlowMapTransitionner;
19}
20
35void host_process(
36 std::shared_ptr<IO::Logger> logger, /*logger is passed by value because it
37 can be set into maindataexporter*/
38 const ExecInfo& exec,
40 const Core::SimulationParameters& params,
42 Core::PartialExporter& partial_exporter);
43
44#endif //__HOST_SPECIFIC_HPP__
Exporter for each MPI worker (including host) that exports data relative to particle state.
Definition partial_exporter.hpp:28
Definition simulation.hpp:45
Definition host_specific.hpp:17
rust::Box< TransitionerWrapper > TransitionnerPtrType
Opaque type for flowmap transitioner.
Definition alias.hpp:14
Namespace that contains classes and structures related to simulation handling.
Definition host_specific.hpp:12
Definition simulation_parameters.hpp:58
Definition execinfo.hpp:12