Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90965727
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, Nov 6, 11:36
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Nov 8, 11:36 (2 d)
Engine
blob
Format
Raw Data
Handle
22163973
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
{
/*
* No need for constructor/destructor with std::unique_ptr
*/
// List of particle pointers
using
ParticleList
=
std
::
vector
<
std
::
shared_ptr
<
Particle
>>
;
// Methods
public
:
//! 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
());
}
private
:
ParticleList
list_particles
;
};
/* -------------------------------------------------------------------------- */
#endif
//__SYSTEM__HH__
Event Timeline
Log In to Comment