Skip to content

Commit

Permalink
Fix comments on documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed May 16, 2024
1 parent e216855 commit bdfe08b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions include/podio/Frame.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,10 @@ class Frame {

/// Retrieve parameters via key from the internal store.
///
/// The return type will either be a const reference or a value depending on
/// the desired type. See podio::GenericParameters for more details.
///
/// @tparam T The desired type of the parameter (can also be std::vector<T>)
/// @param key The key under which the value is stored
///
/// @returns An optional holding the value if it was present
/// @returns An optional holding the value if it is present
template <typename T, typename = podio::EnableIfValidGenericDataType<T>>
inline auto getParameter(const std::string& key) const {
return m_self->parameters().get<T>(key);
Expand Down

0 comments on commit bdfe08b

Please sign in to comment.