Namespace hosting functions and classes to retrieve tree information for internal use. More...
Classes | |
class | RNoCleanupNotifier |
class | RNoCleanupNotifierHelper |
Functions | |
void | ClearMustCleanupBits (TObjArray &branches) |
Reset the kMustCleanup bit of a TObjArray of TBranch objects (e.g. | |
std::vector< std::string > | ExpandGlob (const std::string &glob) |
Expands input glob into a collection of full paths to files. | |
std::vector< std::string > | GetFileNamesFromTree (const TTree &tree) |
ROOT::TreeUtils::RFriendInfo | GetFriendInfo (const TTree &tree, bool retrieveEntries=false) |
std::vector< std::string > | GetTopLevelBranchNames (TTree &t) |
Get all the top-level branches names, including the ones of the friend trees. | |
std::vector< std::string > | GetTreeFullPaths (const TTree &tree) |
std::unique_ptr< TChain > | MakeChainForMT (const std::string &name, const std::string &title) |
Create a TChain object with options that avoid common causes of thread contention. | |
std::vector< std::unique_ptr< TChain > > | MakeFriends (const ROOT::TreeUtils::RFriendInfo &finfo) |
Create friends from the main TTree. | |
Namespace hosting functions and classes to retrieve tree information for internal use.
void ROOT::Internal::TreeUtils::ClearMustCleanupBits | ( | TObjArray & | branches | ) |
Reset the kMustCleanup bit of a TObjArray of TBranch objects (e.g.
returned by TTree::GetListOfBranches).
In some rare cases, all branches in a TTree can have their kMustCleanup bit set, which causes a large amount of contention at teardown due to concurrent calls to RecursiveRemove (which needs to take the global lock). This helper function checks the first branch of the array and if it has the kMustCleanup bit set, it resets it for all branches in the array, recursively going through sub-branches and leaves.
Definition at line 344 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::ExpandGlob | ( | const std::string & | glob | ) |
Expands input glob into a collection of full paths to files.
[in] | glob | The glob to expand. |
std::runtime_error | If the directory part of the glob refers to a path that cannot be opened. |
The two parts of the glob (directory, fileglob) are separated. The directory is first expanded via TSystem::ExpandPathName then opened via TSystem::OpenDirectory. If the directory can be opened, then the remaining fileglob is used as regex expression (via TRegexp) and the function stores those files in the directory that match the regex.
Definition at line 424 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::GetFileNamesFromTree | ( | const TTree & | tree | ) |
Definition at line 88 of file InternalTreeUtils.cxx.
ROOT::TreeUtils::RFriendInfo ROOT::Internal::TreeUtils::GetFriendInfo | ( | const TTree & | tree, |
bool | retrieveEntries = false |
||
) |
Definition at line 163 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::GetTopLevelBranchNames | ( | TTree & | t | ) |
Get all the top-level branches names, including the ones of the friend trees.
Definition at line 73 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::GetTreeFullPaths | ( | const TTree & | tree | ) |
Definition at line 303 of file InternalTreeUtils.cxx.
std::unique_ptr< TChain > ROOT::Internal::TreeUtils::MakeChainForMT | ( | const std::string & | name, |
const std::string & | title | ||
) |
Create a TChain object with options that avoid common causes of thread contention.
In particular, set its kWithoutGlobalRegistration mode and reset its kMustCleanup bit.
Definition at line 364 of file InternalTreeUtils.cxx.
std::vector< std::unique_ptr< TChain > > ROOT::Internal::TreeUtils::MakeFriends | ( | const ROOT::TreeUtils::RFriendInfo & | finfo | ) |
Create friends from the main TTree.
Definition at line 373 of file InternalTreeUtils.cxx.