|
EDM4eic
EIC data model
|
#include <TrackCollection.h>
Public Types | |
| using | value_type = Track |
| using | mutable_type = MutableTrack |
| using | const_iterator = TrackCollectionIterator |
| using | iterator = TrackMutableCollectionIterator |
| using | difference_type = ptrdiff_t |
| using | size_type = size_t |
| using | const_reverse_iterator = std::reverse_iterator<const_iterator> |
| using | reverse_iterator = std::reverse_iterator<iterator> |
Public Member Functions | |
| TrackCollection () | |
| TrackCollection (TrackCollectionData &&data, bool isSubsetColl) | |
| TrackCollection (const TrackCollection &)=delete | |
| TrackCollection & | operator= (const TrackCollection &)=delete |
| TrackCollection (TrackCollection &&)=default | |
| TrackCollection & | operator= (TrackCollection &&)=default |
| ~TrackCollection () override | |
| void | clear () final |
| void | print (std::ostream &os=std::cout, bool flush=true) const final |
| Print this collection to the passed stream. | |
| TrackCollection * | operator-> () |
| operator to allow pointer like calling of members a la LCIO | |
| MutableTrack | create () |
| Append a new object to the collection, and return this object. | |
| template<typename... Args> | |
| MutableTrack | create (Args &&... args) |
| std::size_t | size () const final |
| number of elements in the collection | |
| std::size_t | max_size () const final |
| maximal number of elements in the collection | |
| bool | empty () const final |
| Is the collection empty. | |
| const std::string_view | getTypeName () const final |
| fully qualified type name | |
| const std::string_view | getValueTypeName () const final |
| fully qualified type name of elements - with namespace | |
| const std::string_view | getDataTypeName () const final |
| fully qualified type name of stored POD elements - with namespace | |
| podio::SchemaVersionT | getSchemaVersion () const final |
| schema version | |
| bool | isSubsetCollection () const final |
| void | setSubsetCollection (bool setSubset=true) final |
| Track | operator[] (std::size_t index) const |
| Returns the const object of given index. | |
| MutableTrack | operator[] (std::size_t index) |
| Returns the object of a given index. | |
| Track | at (std::size_t index) const |
| Returns the const object of given index. | |
| MutableTrack | at (std::size_t index) |
| Returns the object of given index. | |
| void | push_back (const MutableTrack &object) |
| Append object to the collection. | |
| void | push_back (const Track &object) |
| Append an object to the (subset) collection. | |
| void | prepareForWrite () const final |
| void | prepareAfterRead () final |
| bool | setReferences (const podio::ICollectionProvider *collectionProvider) final |
| podio::CollectionWriteBuffers | getBuffers () final |
| Get the collection buffers for this collection. | |
| void | setID (uint32_t ID) final |
| uint32_t | getID () const final |
| bool | isValid () const final |
| size_t | getDatamodelRegistryIndex () const final |
| iterator | begin () |
| const_iterator | begin () const |
| const_iterator | cbegin () const |
| iterator | end () |
| const_iterator | end () const |
| const_iterator | cend () const |
| reverse_iterator | rbegin () |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | crbegin () const |
| reverse_iterator | rend () |
| const_reverse_iterator | rend () const |
| const_reverse_iterator | crend () const |
| std::vector< std::int32_t > | type (const size_t nElem=0) const |
| std::vector< edm4hep::Vector3f > | position (const size_t nElem=0) const |
| std::vector< edm4hep::Vector3f > | momentum (const size_t nElem=0) const |
| std::vector< edm4eic::Cov6f > | positionMomentumCovariance (const size_t nElem=0) const |
| std::vector< float > | time (const size_t nElem=0) const |
| std::vector< float > | timeError (const size_t nElem=0) const |
| std::vector< float > | charge (const size_t nElem=0) const |
| std::vector< float > | chi2 (const size_t nElem=0) const |
| std::vector< std::uint32_t > | ndf (const size_t nElem=0) const |
| std::vector< std::int32_t > | pdg (const size_t nElem=0) const |
Static Public Attributes | |
| static constexpr std::string_view | typeName = "edm4eic::TrackCollection" |
| static constexpr std::string_view | valueTypeName = "edm4eic::Track" |
| static constexpr std::string_view | dataTypeName = "edm4eic::TrackData" |
Friends | |
| class | TrackCollectionData |
A Collection is identified by an ID.
| using edm4eic::TrackCollection::const_reverse_iterator = std::reverse_iterator<const_iterator> |
| using edm4eic::TrackCollection::difference_type = ptrdiff_t |
| using edm4eic::TrackCollection::reverse_iterator = std::reverse_iterator<iterator> |
| using edm4eic::TrackCollection::size_type = size_t |
| edm4eic::TrackCollection::TrackCollection | ( | ) |
| edm4eic::TrackCollection::TrackCollection | ( | TrackCollectionData && | data, |
| bool | isSubsetColl ) |
|
delete |
|
default |
|
override |
| MutableTrack edm4eic::TrackCollection::at | ( | std::size_t | index | ) |
Returns the object of given index.
| Track edm4eic::TrackCollection::at | ( | std::size_t | index | ) | const |
Returns the const object of given index.
|
inline |
|
inline |
|
inline |
|
inline |
| std::vector< float > edm4eic::TrackCollection::charge | ( | const size_t | nElem = 0 | ) | const |
| std::vector< float > edm4eic::TrackCollection::chi2 | ( | const size_t | nElem = 0 | ) | const |
|
final |
|
inline |
| MutableTrack edm4eic::TrackCollection::create | ( | ) |
Append a new object to the collection, and return this object.
| MutableTrack edm4eic::TrackCollection::create | ( | Args &&... | args | ) |
Append a new object to the collection, and return this object. Initialized with the parameters given
|
inline |
|
final |
Is the collection empty.
|
inline |
|
inline |
|
final |
Get the collection buffers for this collection.
|
final |
|
inlinefinal |
fully qualified type name of stored POD elements - with namespace
|
inlinefinal |
|
final |
schema version
|
inlinefinal |
fully qualified type name
|
inlinefinal |
fully qualified type name of elements - with namespace
|
inlinefinal |
|
inlinefinal |
|
final |
maximal number of elements in the collection
| std::vector< edm4hep::Vector3f > edm4eic::TrackCollection::momentum | ( | const size_t | nElem = 0 | ) | const |
| std::vector< std::uint32_t > edm4eic::TrackCollection::ndf | ( | const size_t | nElem = 0 | ) | const |
|
inline |
operator to allow pointer like calling of members a la LCIO
|
delete |
|
default |
| MutableTrack edm4eic::TrackCollection::operator[] | ( | std::size_t | index | ) |
Returns the object of a given index.
| Track edm4eic::TrackCollection::operator[] | ( | std::size_t | index | ) | const |
Returns the const object of given index.
| std::vector< std::int32_t > edm4eic::TrackCollection::pdg | ( | const size_t | nElem = 0 | ) | const |
| std::vector< edm4hep::Vector3f > edm4eic::TrackCollection::position | ( | const size_t | nElem = 0 | ) | const |
| std::vector< edm4eic::Cov6f > edm4eic::TrackCollection::positionMomentumCovariance | ( | const size_t | nElem = 0 | ) | const |
|
final |
|
final |
|
final |
Print this collection to the passed stream.
| void edm4eic::TrackCollection::push_back | ( | const MutableTrack & | object | ) |
Append object to the collection.
| void edm4eic::TrackCollection::push_back | ( | const Track & | object | ) |
Append an object to the (subset) collection.
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinefinal |
|
final |
|
final |
|
final |
number of elements in the collection
| std::vector< float > edm4eic::TrackCollection::time | ( | const size_t | nElem = 0 | ) | const |
| std::vector< float > edm4eic::TrackCollection::timeError | ( | const size_t | nElem = 0 | ) | const |
| std::vector< std::int32_t > edm4eic::TrackCollection::type | ( | const size_t | nElem = 0 | ) | const |
|
friend |
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |