Class podio::GenericParameters
-
class GenericParameters
GenericParameters objects allow one to store generic named parameters of type int, float and string or vectors of these types.
They can be used to store (user) meta data that is run, event or collection dependent. (based on lcio::LCParameters)
- Author
F. Gaede, DESY
- Date
Apr 2020
Public Functions
-
GenericParameters()
-
GenericParameters(const GenericParameters&)
GenericParameters are copyable.
Note
This is currently mainly done to keep the ROOT I/O happy, because that needs a copy constructor
-
GenericParameters &operator=(const GenericParameters&) = delete
-
GenericParameters(GenericParameters&&) = default
GenericParameters are default moveable.
-
GenericParameters &operator=(GenericParameters&&) = default
-
~GenericParameters() = default
-
template<typename T, typename = EnableIfValidGenericDataType<T>>
std::optional<T> get(const std::string &key) const
-
template<typename T, typename = EnableIfValidGenericDataType<T>>
void set(const std::string &key, T value) Store (a copy of) the passed value under the given key.
-
inline void set(const std::string &key, std::string value)
Overload for catching const char* setting for string values.
-
inline void set(const std::string &key, std::vector<std::string> values)
Overload for catching initializer list setting of string vector values.
-
template<typename T, typename = std::enable_if_t<detail::isInTuple<T, SupportedGenericDataTypes>>>
inline void set(const std::string &key, std::initializer_list<T> &&values) Overload for catching initializer list setting for vector values.
-
template<typename T, template<typename...> typename VecLike>
void loadFrom(VecLike<std::string> keys, VecLike<std::vector<T>> values) Load multiple key value pairs simultaneously.
-
template<typename T, typename = EnableIfValidGenericDataType<T>>
size_t getN(const std::string &key) const Get the number of elements stored under the given key for a type.
-
template<typename T, typename = EnableIfValidGenericDataType<T>>
std::vector<std::string> getKeys() const Get all available keys for a given type.
-
template<typename T, typename = EnableIfValidGenericDataType<T>>
std::tuple<std::vector<std::string>, std::vector<std::vector<T>>> getKeysAndValues() const Get all the available values for a given type.
-
inline void clear()
erase all elements
-
void print(std::ostream &os = std::cout, bool flush = true) const
-
inline bool empty() const
Check if no parameter is stored (i.e. if all internal maps are empty)
Public Members
- friend ROOTReader