Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109896012
system.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, Apr 23, 21:28
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Apr 25, 21:28 (2 d)
Engine
blob
Format
Raw Data
Handle
25750830
Attached To
R7571 SP4E-TB-TL-FR
system.hh
View Options
#ifndef __SYSTEM__HH__
#define __SYSTEM__HH__
/* -------------------------------------------------------------------------- */
#include "my_types.hh"
#include "particle.hh"
#include <memory>
#include <vector>
/* -------------------------------------------------------------------------- */
//! Container for particles
class System {
public:
virtual ~System() = default;
// List of particle pointers
using ParticleList = std::vector<std::shared_ptr<Particle>>;
//! Remove particle from vector
void removeParticle(UInt particle){};
//! Get particle for specific id
Particle& getParticle(UInt i);
//! Add a particle to the system
void addParticle(const std::shared_ptr<Particle>& new_particle);
//! Get number of particles
UInt getNbParticles();
//! Iterator class to erase the unique pointer on Particle
struct iterator : ParticleList::iterator {
iterator(const ParticleList::iterator& it) : ParticleList::iterator(it) {}
//! Access the underlying particle
Particle& operator*() { return *ParticleList::iterator::operator*(); }
};
// Iterators
public:
auto begin() { return iterator(list_particles.begin()); }
auto end() { return iterator(list_particles.end()); }
protected:
ParticleList list_particles;
};
/* -------------------------------------------------------------------------- */
#endif //__SYSTEM__HH__
Event Timeline
Log In to Comment