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

61 lines
1.3 KiB
C++
Raw Normal View History

2019-05-09 21:41:54 +02:00
/*
output.cc - This file is part of MUSIC -
a code to generate multi-scale initial conditions
for cosmological simulations
Copyright (C) 2010 Oliver Hahn
*/
#include "output_plugin.hh"
std::map< std::string, output_plugin_creator *>&
get_output_plugin_map()
{
static std::map< std::string, output_plugin_creator* > output_plugin_map;
return output_plugin_map;
}
void print_output_plugins()
{
std::map< std::string, output_plugin_creator *>& m = get_output_plugin_map();
std::map< std::string, output_plugin_creator *>::iterator it;
it = m.begin();
2019-05-15 21:11:28 +02:00
csoca::ilog << "Available output plug-ins:\n";
2019-05-09 21:41:54 +02:00
while( it!=m.end() )
{
if( (*it).second )
csoca::ilog << "\t\'" << (*it).first << "\'\n";
2019-05-09 21:41:54 +02:00
++it;
}
}
output_plugin *select_output_plugin( ConfigFile& cf )
{
std::string formatname = cf.GetValue<std::string>( "output", "format" );
output_plugin_creator *the_output_plugin_creator
= get_output_plugin_map()[ formatname ];
if( !the_output_plugin_creator )
{
2019-05-15 21:11:28 +02:00
csoca::elog << "Error: output plug-in \'" << formatname << "\' not found." << std::endl;
2019-05-09 21:41:54 +02:00
print_output_plugins();
throw std::runtime_error("Unknown output plug-in");
}else
2019-05-15 21:11:28 +02:00
csoca::ilog << "Selecting output plug-in \'" << formatname << "\'..." << std::endl;
2019-05-09 21:41:54 +02:00
output_plugin *the_output_plugin
= the_output_plugin_creator->create( cf );
return the_output_plugin;
}