Forward iterator browsing all geometry elements in the detector. More...
#include <GeometryCore.h>
Public Types | |
using | id_iterator_t = GEOIDITER |
using | iterator = geometry_element_iterator< id_iterator_t > |
this type More... | |
using | Element_t = typename std::remove_pointer< ElementPtr_t >::type |
Geometry class pointed by the iterator. More... | |
Types mirrored from the ID iterator | |
using | LocalID_t = typename id_iterator_t::LocalID_t |
using | GeoID_t = typename id_iterator_t::GeoID_t |
using | UndefinedPos_t = typename id_iterator_t::UndefinedPos_t |
using | BeginPos_t = typename id_iterator_t::BeginPos_t |
using | EndPos_t = typename id_iterator_t::EndPos_t |
using | ElementPtr_t = typename id_iterator_t::ElementPtr_t |
Iterator traits | |
using | difference_type = std::ptrdiff_t |
using | value_type = Element_t |
using | reference = value_type const & |
using | pointer = value_type const * |
using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
geometry_element_iterator ()=default | |
Default constructor; effect not defined: assign to it before using! More... | |
geometry_element_iterator (geo::GeometryCore const *geom) | |
Constructor: points to begin. More... | |
geometry_element_iterator (id_iterator_t const &iter) | |
Constructor: points to the same element as the specified ID iterator. More... | |
geometry_element_iterator (id_iterator_t &&iter) | |
Constructor: points to the same element as the specified ID iterator. More... | |
geometry_element_iterator (geo::GeometryCore const *geom, GeoID_t const &start_from) | |
Constructor: points to the specified geometry element. More... | |
geometry_element_iterator (geo::GeometryCore const *geom, BeginPos_t const pos) | |
Constructor: points to beginning. More... | |
geometry_element_iterator (geo::GeometryCore const *geom, EndPos_t const pos) | |
Constructor: points to end. More... | |
bool | operator== (iterator const &as) const |
Returns true if the two iterators point to the same object. More... | |
bool | operator!= (iterator const &as) const |
Returns true if the two iterators point to different objects. More... | |
reference | operator* () const |
Returns the geometry element the iterator points to. More... | |
pointer | operator-> () const |
Returns a pointer to the element the iterator points to (or nullptr) More... | |
iterator & | operator++ () |
Prefix increment: returns this iterator pointing to the next element. More... | |
iterator | operator++ (int) |
Postfix increment: returns the current iterator, then increments it. More... | |
operator bool () const | |
Returns whether the iterator is pointing to a valid geometry element. More... | |
ElementPtr_t | get () const |
Returns a pointer to the geometry element, or nullptr if invalid. More... | |
LocalID_t const & | ID () const |
Returns the ID of the pointed geometry element. More... | |
Protected Member Functions | |
id_iterator_t const & | id_iterator () const |
Access to the base ID iterator. More... | |
id_iterator_t & | id_iterator () |
Private Attributes | |
id_iterator_t | id_iter |
iterator performing the job More... | |
Friends | |
bool | geo::details::operator== (iterator const &iter, id_iterator_t const &id_iter) |
bool | geo::details::operator== (id_iterator_t const &id_iter, iterator const &iter) |
bool | geo::details::operator!= (iterator const &iter, id_iterator_t const &id_iter) |
bool | geo::details::operator!= (id_iterator_t const &id_iter, iterator const &iter) |
Additional Inherited Members | |
Static Public Attributes inherited from geo::details::geometry_iterator_types | |
static constexpr BeginPos_t | begin_pos = {} |
static constexpr EndPos_t | end_pos = {} |
static constexpr UndefinedPos_t | undefined_pos = {} |
Forward iterator browsing all geometry elements in the detector.
GEOITER | type of geometry ID iterator |
This iterator works as the corresponding ID iterator in the template argument. The difference is the dereferenciation operator: this one obtains the geometry element directly, or throws on failure. The boolean conversion operator checks that it can obtain a pointer to the geometry element.
In particular, get() and ID() methods still return the pointer to the geometry element and its ID, respectively.
It can also be initialized and compare with the corresponding ID iterator.
Definition at line 727 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::BeginPos_t = typename id_iterator_t::BeginPos_t |
Definition at line 793 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::difference_type = std::ptrdiff_t |
Definition at line 811 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::Element_t = typename std::remove_pointer<ElementPtr_t>::type |
Geometry class pointed by the iterator.
Definition at line 806 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::ElementPtr_t = typename id_iterator_t::ElementPtr_t |
Definition at line 795 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::EndPos_t = typename id_iterator_t::EndPos_t |
Definition at line 794 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::GeoID_t = typename id_iterator_t::GeoID_t |
Definition at line 791 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::id_iterator_t = GEOIDITER |
Definition at line 778 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::iterator = geometry_element_iterator<id_iterator_t> |
this type
Definition at line 786 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::iterator_category = std::forward_iterator_tag |
Definition at line 815 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::LocalID_t = typename id_iterator_t::LocalID_t |
Definition at line 790 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::pointer = value_type const* |
Definition at line 814 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::reference = value_type const& |
Definition at line 813 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::UndefinedPos_t = typename id_iterator_t::UndefinedPos_t |
Definition at line 792 of file GeometryCore.h.
using geo::details::geometry_element_iterator< GEOIDITER >::value_type = Element_t |
Definition at line 812 of file GeometryCore.h.
|
default |
Default constructor; effect not defined: assign to it before using!
|
inline |
Constructor: points to begin.
Definition at line 823 of file GeometryCore.h.
|
inline |
Constructor: points to the same element as the specified ID iterator.
Definition at line 827 of file GeometryCore.h.
|
inline |
Constructor: points to the same element as the specified ID iterator.
Definition at line 830 of file GeometryCore.h.
|
inline |
Constructor: points to the specified geometry element.
Definition at line 834 of file GeometryCore.h.
|
inline |
Constructor: points to beginning.
Definition at line 840 of file GeometryCore.h.
|
inline |
Constructor: points to end.
Definition at line 846 of file GeometryCore.h.
|
inline |
Returns a pointer to the geometry element, or nullptr if invalid.
Definition at line 888 of file GeometryCore.h.
|
inline |
Returns the ID of the pointed geometry element.
Definition at line 891 of file GeometryCore.h.
|
inlineprotected |
Access to the base ID iterator.
Definition at line 905 of file GeometryCore.h.
|
inlineprotected |
Definition at line 906 of file GeometryCore.h.
|
inline |
Returns whether the iterator is pointing to a valid geometry element.
Definition at line 884 of file GeometryCore.h.
|
inline |
Returns true if the two iterators point to different objects.
Definition at line 855 of file GeometryCore.h.
|
inline |
Returns the geometry element the iterator points to.
cet::exception | (category "geometry_iterator") if no valid geometry element is currently pointed by the iterator |
Definition at line 864 of file GeometryCore.h.
|
inline |
Prefix increment: returns this iterator pointing to the next element.
Definition at line 877 of file GeometryCore.h.
|
inline |
Postfix increment: returns the current iterator, then increments it.
Definition at line 880 of file GeometryCore.h.
|
inline |
Returns a pointer to the element the iterator points to (or nullptr)
Definition at line 874 of file GeometryCore.h.
|
inline |
Returns true if the two iterators point to the same object.
Definition at line 851 of file GeometryCore.h.
|
friend |
|
friend |
|
friend |
|
friend |
|
private |
iterator performing the job
Definition at line 910 of file GeometryCore.h.