Class podio::Frame
-
class Frame
The Frame is a generalized (event) data container that aggregates all relevant data.
It is possible to store collections as well as parameters / meta data in a Frame and all I/O facilities of podio operate on Frames.
Public Functions
-
inline Frame()
Empty Frame constructor.
-
template<typename FrameDataT>
Frame(std::unique_ptr<FrameDataT>) Frame constructor from (almost) arbitrary raw data.
- Template Parameters:
FrameDataT – Arbitrary data container that provides access to the collection buffers as well as the metadata, when requested by the Frame. The unique_ptr has to be checked for validity before calling this construtor.
- Throws:
std::invalid_argument – if the passed pointer is a nullptr.
-
template<typename FrameDataT, typename = EnableIfRValue<FrameDataT>>
Frame(FrameDataT&&) Frame constructor from (almost) arbitrary raw data.
This r-value overload is mainly present for enabling the python bindings, where cppyy seems to strip the std::unique_ptr somewhere in the process
- Template Parameters:
FrameDataT – Arbitrary data container that provides access to the collection buffers as well as the metadata, when requested by the Frame.
-
~Frame() = default
Frame destructor.
Note
Since the Frame owns all the collections that have been put into it, or that can be obtained from it, this invalidates all references to these collections.
-
template<typename CollT, typename = EnableIfCollection<CollT>>
const CollT &get(const std::string &name) const Get a collection from the Frame by name.
- Template Parameters:
CollT – The type of the desired collection
- Parameters:
name – The name of the collection
- Returns:
A const reference to the collection if it is available or to an empty (static) collection
-
inline const podio::CollectionBase *get(const std::string &name) const
Get a collection pointer from the Frame by name.
This is a type-erased version that is also used by the python bindings.
- Returns:
A const pointer to a collection if it is available or a nullptr if it is not
-
template<typename CollT, typename = EnableIfCollectionRValue<CollT>>
const CollT &put(CollT &&coll, const std::string &name) (Destructively) move a collection into the Frame and get a reference to the inserted collection back for further use.
The collection that is passed into the Frame has to be moved into it explicitly and the moved-from collection will be in the typical valid but undefined state in c++.
- Template Parameters:
CollT – The type of the collection
- Parameters:
coll – An rvalue reference to the collection to put into the Frame.
name – The name under which this collection should be stored in the Frame
- Returns:
A const reference to the collection that has just been inserted
-
inline void put(std::unique_ptr<podio::CollectionBase> coll, const std::string &name)
(Destructively) move a collection into the Frame.
- Parameters:
coll – The collection that should be moved into the Frame
name – The name under which this collection should be stored in the Frame
-
template<typename T, typename = podio::EnableIfValidGenericDataType<T>>
inline void putParameter(const std::string &key, T value) Add a value to the parameters of the Frame (if the type is supported).
- Template Parameters:
T – The type of the parameter. Has to be one of the types that is supported by GenericParameters
- Parameters:
key – The name under which this parameter should be stored
value – The value of the parameter. A copy will be put into the Frame
-
inline void putParameter(const std::string &key, std::string value)
Add a string value to the parameters of the Frame.
This is a dedicated overload for enabling on-the-fly conversion from string literals.
- Parameters:
key – The name under which this parameter should be stored
value – The value of the parameter. A copy will be put into the Frame
-
inline void putParameter(const std::string &key, std::vector<std::string> values)
Add a vector of strings value the parameters of the Frame.
This is a dedicated overload for enabling on-the-fly conversion from an initializer_list of string literals
- Parameters:
key – The name under which this parameter should be stored
values – The values of the parameter. A copy will be put into the Frame
-
template<typename T, typename = std::enable_if_t<detail::isInTuple<T, SupportedGenericDataTypes>>>
inline void putParameter(const std::string &key, std::initializer_list<T> &&values) Add a vector of values to the parameters of the Frame (if the type is supported).
This is a dedicated overload for enabling on-the-fly conversions of initializer_list of values
- Template Parameters:
T – The type of the parameter. Has to be one of the types that is supported by GenericParameters
- Parameters:
key – The name under which this parameter should be stored
values – The values of the parameter. A copy will be put into the Frame
-
template<typename T, typename = podio::EnableIfValidGenericDataType<T>>
inline auto getParameter(const std::string &key) const Retrieve parameters via key from the internal store.
- Template Parameters:
T – The desired type of the parameter (can also be std::vector<T>)
- Parameters:
key – The key under which the value is stored
- Returns:
An optional holding the value if it is present
-
inline const podio::GenericParameters &getParameters() const
Retrieve all parameters stored in this Frame.
This is mainly intended for I/O purposes and we encourage to use the Frame functionality of getParameter or getParameterKeys in general.
- Returns:
The internally used GenericParameters
-
template<typename T, typename = podio::EnableIfValidGenericDataType<T>>
inline std::vector<std::string> getParameterKeys() const Get the keys of all stored parameters for a given type.
- Template Parameters:
T – The desired parameter type
- Returns:
A vector of keys for this parameter type
-
inline std::vector<std::string> getAvailableCollections() const
Get all currently available collection names.
- Returns:
The names of all collections, including those that might still need unpacking from the internal FrameData
-
inline std::optional<std::string> getName(const podio::CollectionBase &coll) const
Get the name of the passed collection.
- Parameters:
coll – The collection for which the name should be obtained
- Returns:
The name of the collection or an empty optional if this collection is not known to the Frame
-
inline std::optional<std::string> getName(const uint32_t collectionID) const
Get the name for the passed collectionID.
- Parameters:
collectionID – The collection ID of the collection for which the name should be obtained
- Returns:
The name of the collection or an empty optional if this collectionID is not known to the Frame
-
inline const podio::CollectionBase *getCollectionForWrite(const std::string &name) const
Get a collection for writing.
Note
This method is intended for I/O purposes only and should not be used in other code.
- Returns:
The collection pointer in a prepared and “ready-to-write” state
-
inline podio::CollectionIDTable getCollectionIDTableForWrite() const
Get the internal CollectionIDTable for writing.
Note
This method is intended for I/O purposes only and should not be used in other code.
- Returns:
A copy of the internal collection id table
-
inline Frame()