We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e44d167 commit 09e2409Copy full SHA for 09e2409
tree/treeplayer/inc/ROOT/TDFNodes.hxx
@@ -750,9 +750,9 @@ public:
750
/// Ranges act as filters when it comes to selecting entries that downstream nodes should process
751
bool CheckFilters(unsigned int slot, Long64_t entry) final
752
{
753
- if (fHasStopped) {
754
- return false;
755
- } else if (entry != fLastCheckedEntry) {
+ if (entry != fLastCheckedEntry) {
+ if (fHasStopped)
+ return false;
756
if (!fPrevData.CheckFilters(slot, entry)) {
757
// a filter upstream returned false, cache the result
758
fLastResult = false;
0 commit comments