diff --git a/include/podio/DataSource.h b/include/podio/DataSource.h index fe0dbfe82..ba00fe4e4 100644 --- a/include/podio/DataSource.h +++ b/include/podio/DataSource.h @@ -85,6 +85,10 @@ class DataSource : public ROOT::RDF::RDataSource { /// std::string GetTypeName(std::string_view columnName) const override; + std::string GetLabel() override { + return "PODIO Datasource"; + }; + protected: /// /// @brief Type-erased vector of pointers to pointers to column diff --git a/src/GenericParameters.cc b/src/GenericParameters.cc index f6aaf21c0..d78bd6cc7 100644 --- a/src/GenericParameters.cc +++ b/src/GenericParameters.cc @@ -17,7 +17,7 @@ GenericParameters::GenericParameters(const GenericParameters& other) : m_stringMtx(std::make_unique()), m_doubleMtx(std::make_unique()) { { - // acquire all three locks at once to make sure all three internal maps are + // acquire all locks at once to make sure all internal maps are // copied at the same "state" of the GenericParameters auto& intMtx = other.getMutex(); auto& floatMtx = other.getMutex();