We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3935b commit 3be9333Copy full SHA for 3be9333
include/podio/RNTupleReader.h
@@ -150,7 +150,8 @@ class RNTupleReader {
150
std::unordered_map<std::string, unsigned> m_entries{};
151
// Map category to a vector that contains at how many entries each reader starts
152
// For example, if we have 3 readers and the first one has 10 entries, the second one 20 and the third one 30
153
- // then the vector will be {0, 10, 30, 60}
+ // then the vector will be {0, 10, 30}
154
+ // 60 is not needed because anything after 30 will be in the last reader
155
std::unordered_map<std::string, std::vector<unsigned>> m_readerEntries{};
156
std::unordered_map<std::string, unsigned> m_totalEntries{};
157
0 commit comments