From e32f6715208c780f841e482c120175108622f516 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Wed, 30 Aug 2023 18:38:56 +0200 Subject: [PATCH] Initialize all branches index based for 00-16 series --- src/ROOTFrameReader.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ROOTFrameReader.cc b/src/ROOTFrameReader.cc index f098ad204..9490a099e 100644 --- a/src/ROOTFrameReader.cc +++ b/src/ROOTFrameReader.cc @@ -155,7 +155,7 @@ void ROOTFrameReader::initCategory(CategoryInfo& catInfo, const std::string& cat // For backwards compatibility make it possible to read the index based files // from older versions - if (m_fileVersion <= podio::version::Version{0, 16, 6}) { + if (m_fileVersion < podio::version::Version{0, 16, 99}) { std::tie(catInfo.branches, catInfo.storedClasses) = createCollectionBranchesIndexBased(catInfo.chain.get(), *catInfo.table, *collInfo); } else {