LArSoft
v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
|
Object to draft associated data interface. More...
#include "AssociatedData.h"
Public Types | |
using | assns_t = art::Assns< Main, Aux, Metadata > |
Type of art association. More... | |
using | tag = Tag |
Tag of this association proxy. More... | |
using | group_ranges_t = BoundaryList< associated_data_iterator_t > |
using | auxiliary_data_t = util::add_tag_t< typename group_ranges_t::range_t, tag > |
Type of collection of auxiliary data associated with a main item. More... | |
Public Member Functions | |
AssociatedData (group_ranges_t &&groups) | |
auto | begin () const -> decltype(auto) |
Returns an iterator pointing to the first associated data range. More... | |
auto | end () const -> decltype(auto) |
Returns an iterator pointing past the last associated data range. More... | |
auto | getRange (std::size_t i) const -> decltype(auto) |
Returns the range with the specified index (no check performed). More... | |
auto | operator[] (std::size_t index) const -> decltype(auto) |
Returns the range with the specified index (no check performed). More... | |
Static Public Member Functions | |
template<typename TestTag > | |
static constexpr bool | hasTag () |
Returns whether this data is labeled with the specified tag. More... | |
Private Types | |
using | This_t = AssociatedData< Main, Aux, Metadata, Tag > |
This type. More... | |
using | associated_data_iterator_t = assns_node_iterator< lar::util::assns_iterator_t< assns_t >> |
Private Attributes | |
group_ranges_t | fGroups |
Object to draft associated data interface.
Main | type of the main associated object (one) |
Aux | type of the additional associated objects (many) |
Metadata | type of metadata in the association (default: void ) |
Tag | tag this data is labeled with |
Allows:
Construction is not part of the interface.
The AssociatedData
object, on creation, finds the borders surrounding the associated Aux
objects for each Main
one, and keep a record of them (this is actually delegated to BoundaryList
class). The AssociatedData
object also provides a container-like view of this information, where each element in the container is associated to a single Main
and it is a container (actually, another view) of Right
. Both levels of containers are random access, so that the set of Right
objects associated to a Left
can be accessed by index, and the Right
objects within can be accessed with Right
index in the Left
.
Definition at line 750 of file AssociatedData.h.
using proxy::details::AssociatedData< Main, Aux, Metadata, Tag >::assns_t = art::Assns<Main, Aux, Metadata> |
Type of art association.
Definition at line 755 of file AssociatedData.h.
|
private |
Definition at line 758 of file AssociatedData.h.
using proxy::details::AssociatedData< Main, Aux, Metadata, Tag >::auxiliary_data_t = util::add_tag_t<typename group_ranges_t::range_t, tag> |
Type of collection of auxiliary data associated with a main item.
Definition at line 767 of file AssociatedData.h.
using proxy::details::AssociatedData< Main, Aux, Metadata, Tag >::group_ranges_t = BoundaryList<associated_data_iterator_t> |
Definition at line 764 of file AssociatedData.h.
using proxy::details::AssociatedData< Main, Aux, Metadata, Tag >::tag = Tag |
Tag of this association proxy.
Definition at line 762 of file AssociatedData.h.
|
private |
This type.
Definition at line 751 of file AssociatedData.h.
|
inline |
Definition at line 770 of file AssociatedData.h.
|
inline |
Returns an iterator pointing to the first associated data range.
Definition at line 773 of file AssociatedData.h.
|
inline |
Returns an iterator pointing past the last associated data range.
Definition at line 776 of file AssociatedData.h.
|
inline |
Returns the range with the specified index (no check performed).
Definition at line 779 of file AssociatedData.h.
|
inlinestatic |
Returns whether this data is labeled with the specified tag.
Definition at line 794 of file AssociatedData.h.
|
inline |
Returns the range with the specified index (no check performed).
Definition at line 785 of file AssociatedData.h.
|
private |
Definition at line 800 of file AssociatedData.h.