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

117 lines
3.4 KiB
C++
Raw Normal View History

2019-05-07 01:05:16 +02:00
#pragma once
#include <map>
#include <string>
2020-08-20 17:02:48 +02:00
#include <memory>
2019-05-07 01:05:16 +02:00
#include <general.hh>
#include <config_file.hh>
enum tf_type
{
total,
cdm,
baryon,
vtotal,
vcdm,
vbaryon,
2020-05-22 18:44:15 +02:00
deltabc,
total0,
cdm0,
baryon0,
vtotal0,
vcdm0,
vbaryon0,
2019-05-07 01:05:16 +02:00
};
class TransferFunction_plugin
{
public:
// Cosmology cosmo_; //!< cosmological parameter, read from config_file
2020-04-04 20:55:24 +02:00
config_file *pcf_; //!< pointer to config_file from which to read parameters
2019-05-07 01:05:16 +02:00
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)
bool tf_isnormalised_; //!< assume that transfer functions come already correctly normalised and need be re-normalised to a specified value
2019-05-07 01:05:16 +02:00
public:
//! constructor
2020-04-04 20:55:24 +02:00
TransferFunction_plugin(config_file &cf)
: pcf_(&cf), tf_distinct_(false), tf_withvel_(false), tf_withtotal0_(false), tf_velunits_(false), tf_isnormalised_(false)
{ }
2019-05-07 01:05:16 +02:00
//! destructor
virtual ~TransferFunction_plugin(){};
//! initialise, i.e. prepare data for later usage
virtual void intialise( void ) {}
2019-05-07 01:05:16 +02:00
//! compute value of transfer function at waven umber
2019-05-15 21:03:10 +02:00
virtual double compute(double k, tf_type type) const = 0;
2019-05-07 01:05:16 +02:00
//! return maximum wave number allowed
2019-05-15 21:03:10 +02:00
virtual double get_kmax(void) const = 0;
2019-05-07 01:05:16 +02:00
//! return minimum wave number allowed
2019-05-15 21:03:10 +02:00
virtual double get_kmin(void) const = 0;
2019-05-07 01:05:16 +02:00
//! 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
2020-04-04 20:55:24 +02:00
virtual std::unique_ptr<TransferFunction_plugin> create(config_file &cf) const = 0;
2019-05-07 01:05:16 +02:00
//! 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
2020-04-04 20:55:24 +02:00
std::unique_ptr<TransferFunction_plugin> create(config_file &cf) const
2019-05-07 01:05:16 +02:00
{
return std::make_unique<Derived>(cf);
2019-05-07 01:05:16 +02:00
}
};
// typedef TransferFunction_plugin TransferFunction;
2020-04-04 20:55:24 +02:00
std::unique_ptr<TransferFunction_plugin> select_TransferFunction_plugin(config_file &cf);