1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00
monofonIC/include/ic_generator.hh

21 lines
468 B
C++
Raw Normal View History

#pragma once
#include <memory>
#include <config_file.hh>
#include <random_plugin.hh>
#include <output_plugin.hh>
#include <cosmology_calculator.hh>
namespace ic_generator{
2020-04-04 20:55:24 +02:00
int Run( config_file& the_config );
2020-04-04 20:55:24 +02:00
int Initialise( config_file& the_config );
extern std::unique_ptr<RNG_plugin> the_random_number_generator;
extern std::unique_ptr<output_plugin> the_output_plugin;
extern std::unique_ptr<cosmology::calculator> the_cosmo_calc;
}