| 997 | } |
| 998 | |
| 999 | int ROOTData::treeEntries(long int pos) { |
| 1000 | DEBUG(Q_FUNC_INFO << ", pos = " << pos) |
| 1001 | auto it = treekeys.find(pos); |
| 1002 | if (it != treekeys.end()) { |
| 1003 | DEBUG(Q_FUNC_INFO << ", rows = " << it->second.nrows) |
| 1004 | return it->second.nrows; |
| 1005 | } else |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
| 1009 | std::vector<ROOTData::LeafInfo> ROOTData::listLeaves(long int pos) const { |
| 1010 | std::vector<LeafInfo> leaves; |
no test coverage detected