1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00
MUSIC/plugins/random_music.cc

21 lines
297 B
C++
Raw Normal View History

2013-10-24 11:27:09 +02:00
#include "random.hh"
class RNG_music : public RNG_plugin{
public:
explicit RNG_music( config_file& cf )
: RNG_plugin( cf )
{ }
2013-10-24 11:27:09 +02:00
~RNG_music() { }
2013-10-24 11:27:09 +02:00
bool is_multiscale() const
{ return true; }
2013-10-24 11:27:09 +02:00
};
namespace{
RNG_plugin_creator_concrete< RNG_music > creator("MUSIC");
}