1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00
monofonIC/include/transfer_function_plugin.hh
Oliver Hahn 9ba57e1c0a changed global pointer variables to smart pointers,
added more diagnostic output
2019-05-24 08:13:58 +02:00

107 lines
3.1 KiB
C++

#pragma once
#include <map>
#include <string>
#include <general.hh>
#include <config_file.hh>
enum tf_type
{
total,
cdm,
baryon,
vtotal,
vcdm,
vbaryon,
total0
};
class TransferFunction_plugin
{
public:
// Cosmology cosmo_; //!< cosmological parameter, read from config_file
ConfigFile *pcf_; //!< pointer to config_file from which to read parameters
bool tf_distinct_; //!< bool if density transfer function is distinct for baryons and DM
bool tf_withvel_; //!< bool if also have velocity transfer functions
bool tf_withtotal0_; //!< have the z=0 spectrum for normalisation purposes
bool tf_velunits_; //!< velocities are in velocity units (km/s)
public:
//! constructor
TransferFunction_plugin(ConfigFile &cf)
: pcf_(&cf), tf_distinct_(false), tf_withvel_(false), tf_withtotal0_(false), tf_velunits_(false)
{ }
//! destructor
virtual ~TransferFunction_plugin(){};
//! initialise, i.e. prepare data for later usage
virtual void intialise( void ) {}
//! compute value of transfer function at waven umber
virtual double compute(double k, tf_type type) const = 0;
//! return maximum wave number allowed
virtual double get_kmax(void) const = 0;
//! return minimum wave number allowed
virtual double get_kmin(void) const = 0;
//! return if density transfer function is distinct for baryons and DM
bool tf_is_distinct(void)
{
return tf_distinct_;
}
//! return if we also have velocity transfer functions
bool tf_has_velocities(void)
{
return tf_withvel_;
}
//! return if we also have a z=0 transfer function for normalisation
bool tf_has_total0(void)
{
return tf_withtotal0_;
}
//! return if velocity returned is in velocity or in displacement units
bool tf_velocity_units(void)
{
return tf_velunits_;
}
};
//! Implements abstract factory design pattern for transfer function plug-ins
struct TransferFunction_plugin_creator
{
//! create an instance of a transfer function plug-in
virtual std::unique_ptr<TransferFunction_plugin> create(ConfigFile &cf) const = 0;
//! destroy an instance of a plug-in
virtual ~TransferFunction_plugin_creator() {}
};
//! Write names of registered transfer function plug-ins to stdout
std::map<std::string, TransferFunction_plugin_creator *> &get_TransferFunction_plugin_map();
void print_TransferFunction_plugins(void);
//! Concrete factory pattern for transfer function plug-ins
template <class Derived>
struct TransferFunction_plugin_creator_concrete : public TransferFunction_plugin_creator
{
//! register the plug-in by its name
TransferFunction_plugin_creator_concrete(const std::string &plugin_name)
{
get_TransferFunction_plugin_map()[plugin_name] = this;
}
//! create an instance of the plug-in
std::unique_ptr<TransferFunction_plugin> create(ConfigFile &cf) const
{
return std::make_unique<Derived>(cf);
}
};
// typedef TransferFunction_plugin TransferFunction;
std::unique_ptr<TransferFunction_plugin> select_TransferFunction_plugin(ConfigFile &cf);