Skip to content

Commit

Permalink
[TDF] Rename TLoopManager::CleanUp -> CleanUpNodes
Browse files Browse the repository at this point in the history
  • Loading branch information
eguiraud authored and dpiparo committed Aug 8, 2017
1 parent 01ad20d commit 2b1a31c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tree/treeplayer/inc/ROOT/TDFNodes.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class TLoopManager : public std::enable_shared_from_this<TLoopManager> {
void RunAndCheckFilters(unsigned int slot, Long64_t entry);
void InitNodeSlots(TTreeReader *r, unsigned int slot);
void InitNodes();
void CleanUp();
void CleanUpNodes();
void JitActions();
void EvalChildrenCounts();

Expand Down
4 changes: 2 additions & 2 deletions tree/treeplayer/src/TDFNodes.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ void TLoopManager::InitNodes()
}

/// Perform clean-up operations. To be called at the end of each event loop.
void TLoopManager::CleanUp()
void TLoopManager::CleanUpNodes()
{
fHasRunAtLeastOnce = true;

Expand Down Expand Up @@ -323,7 +323,7 @@ void TLoopManager::Run()
}
#endif // R__USE_IMT

CleanUp();
CleanUpNodes();
}

TLoopManager *TLoopManager::GetImplPtr()
Expand Down

0 comments on commit 2b1a31c

Please sign in to comment.