Reference documentation for deal.II version 9.3.3
|
#include <deal.II/particles/particle_iterator.h>
Public Types | |
using | iterator_category = std::bidirectional_iterator_tag |
using | value_type = ParticleAccessor< dim, spacedim > |
using | difference_type = std::ptrdiff_t |
using | pointer = ParticleAccessor< dim, spacedim > * |
using | reference = ParticleAccessor< dim, spacedim > & |
Public Member Functions | |
ParticleIterator ()=default | |
ParticleIterator (const std::multimap< internal::LevelInd, Particle< dim, spacedim > > &map, const typename std::multimap< internal::LevelInd, Particle< dim, spacedim > >::iterator &particle) | |
const ParticleAccessor< dim, spacedim > & | operator* () const |
ParticleAccessor< dim, spacedim > & | operator* () |
const ParticleAccessor< dim, spacedim > * | operator-> () const |
ParticleAccessor< dim, spacedim > * | operator-> () |
bool | operator== (const ParticleIterator< dim, spacedim > &) const |
bool | operator!= (const ParticleIterator< dim, spacedim > &) const |
ParticleIterator & | operator++ () |
ParticleIterator | operator++ (int) |
ParticleIterator & | operator-- () |
ParticleIterator | operator-- (int) |
Private Attributes | |
ParticleAccessor< dim, spacedim > | accessor |
A class that is used to iterate over particles. Together with the ParticleAccessor class this is used to hide the internal implementation of the particle class and the particle container.
Definition at line 39 of file particle_iterator.h.
using Particles::ParticleIterator< dim, spacedim >::iterator_category = std::bidirectional_iterator_tag |
Mark the class as bidirectional iterator and declare some alias which are standard for iterators and are used by algorithms to enquire about the specifics of the iterators they work on.
Definition at line 130 of file particle_iterator.h.
using Particles::ParticleIterator< dim, spacedim >::value_type = ParticleAccessor<dim, spacedim> |
Definition at line 131 of file particle_iterator.h.
using Particles::ParticleIterator< dim, spacedim >::difference_type = std::ptrdiff_t |
Definition at line 132 of file particle_iterator.h.
using Particles::ParticleIterator< dim, spacedim >::pointer = ParticleAccessor<dim, spacedim> * |
Definition at line 133 of file particle_iterator.h.
using Particles::ParticleIterator< dim, spacedim >::reference = ParticleAccessor<dim, spacedim> & |
Definition at line 134 of file particle_iterator.h.
|
default |
Empty constructor. Such an object is not usable!
|
inline |
Constructor of the iterator. Takes a reference to the particle container, and an iterator to the cell-particle pair.
Definition at line 148 of file particle_iterator.h.
|
inline |
Dereferencing operator, returns a reference to an accessor. Usage is thus like (*i).get_id ();
Definition at line 177 of file particle_iterator.h.
|
inline |
Dereferencing operator, non-const
version.
Definition at line 158 of file particle_iterator.h.
|
inline |
Dereferencing operator, returns a pointer of the particle pointed to. Usage is thus like i->get_id ();
There is a const
and a non-const
version.
Definition at line 186 of file particle_iterator.h.
|
inline |
Dereferencing operator, non-const
version.
Definition at line 167 of file particle_iterator.h.
|
inline |
Compare for equality.
Definition at line 205 of file particle_iterator.h.
|
inline |
Compare for inequality.
Definition at line 195 of file particle_iterator.h.
|
inline |
Prefix ++
operator: ++iterator
. This operator advances the iterator to the next element and returns a reference to *this
.
Definition at line 215 of file particle_iterator.h.
|
inline |
Postfix ++
operator: iterator++
. This operator advances the iterator to the next element, but returns an iterator to the element previously pointed to.
Definition at line 225 of file particle_iterator.h.
|
inline |
Prefix --
operator: --iterator
. This operator moves the iterator to the previous element and returns a reference to *this
.
Definition at line 237 of file particle_iterator.h.
|
inline |
Postfix --
operator: iterator--
. This operator moves the iterator to the previous element, but returns an iterator to the element previously pointed to.
Definition at line 247 of file particle_iterator.h.
|
private |
The accessor to the actual particle.
Definition at line 140 of file particle_iterator.h.