From 8e9c8c6d2180d84a60e1134dc85d3d9838c576a7 Mon Sep 17 00:00:00 2001 From: Enrico Guiraud <enrico.guiraud@cern.ch> Date: Thu, 13 Jul 2017 19:11:44 +0200 Subject: [PATCH] [TDF] Delete GetDefaultBranchNames Now unused --- tree/treeplayer/inc/ROOT/TDFInterface.hxx | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/tree/treeplayer/inc/ROOT/TDFInterface.hxx b/tree/treeplayer/inc/ROOT/TDFInterface.hxx index 8b0f9ca523f..ae7e8efae45 100644 --- a/tree/treeplayer/inc/ROOT/TDFInterface.hxx +++ b/tree/treeplayer/inc/ROOT/TDFInterface.hxx @@ -1157,26 +1157,6 @@ protected: return df; } - const ColumnNames_t GetDefaultBranchNames(unsigned int nExpectedBranches, std::string_view actionNameForErr) - { - auto df = GetDataFrameChecked(); - const ColumnNames_t &defaultBranches = df->GetDefaultColumnNames(); - const auto dBSize = defaultBranches.size(); - if (nExpectedBranches > dBSize) { - std::string msg("Trying to deduce the branches from the default list in order to "); - msg += actionNameForErr; - msg += ". A set of branches of size "; - msg += std::to_string(dBSize); - msg += " was found. "; - msg += std::to_string(nExpectedBranches); - msg += 1 != nExpectedBranches ? " are" : " is"; - msg += " needed. Please specify the branches explicitly."; - throw std::runtime_error(msg); - } - auto bnBegin = defaultBranches.begin(); - return ColumnNames_t(bnBegin, bnBegin + nExpectedBranches); - } - TInterface(const std::shared_ptr<Proxied> &proxied, const std::weak_ptr<TLoopManager> &impl) : fProxiedPtr(proxied), fImplWeakPtr(impl) { -- GitLab