Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90950953
particles_factory_interface.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 6, 08:31
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Nov 8, 08:31 (2 d)
Engine
blob
Format
Raw Data
Handle
22166379
Attached To
R7554 sp4e_exercices
particles_factory_interface.hh
View Options
#ifndef __PARTICLES_FACTORY_INTERFACE__HH__
#define __PARTICLES_FACTORY_INTERFACE__HH__
/* -------------------------------------------------------------------------- */
#include "system_evolution.hh"
/* -------------------------------------------------------------------------- */
//! Abstract factory defining interface
class ParticlesFactoryInterface {
// Constructors/Destructors
protected:
//! Instance constructor (protected)
ParticlesFactoryInterface() = default;
public:
virtual ~ParticlesFactoryInterface() = default;
// Methods
public:
//! Create a whole simulation from file
virtual SystemEvolution& createSimulation(const std::string& fname,
Real timestep) = 0;
//! Create a new particle
virtual std::unique_ptr<Particle> createParticle() = 0;
//! Get singleton instance
static ParticlesFactoryInterface& getInstance();
//! get reference to the system evolution
SystemEvolution& getSystemEvolution() { return *system_evolution; };
// Members
protected:
std::vector<Particle*> list_particles;
std::unique_ptr<SystemEvolution> system_evolution = nullptr;
// Standard pointer because constructor is protected (cannot use make_unique)
static ParticlesFactoryInterface* factory;
};
/* -------------------------------------------------------------------------- */
#endif //__PARTICLES_FACTORY_INTERFACE__HH__
Event Timeline
Log In to Comment