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::pair< std::vector< Long64_t >, Long64_t > | GetClustersAndEntries (std::string_view treename, std::string_view path) |
Returns the cluster boundaries and number of entries of the input tree. | |
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. | |
void | RecursiveGlob (TList &out, const std::string &glob) |
Recursively expand the glob to take care of potential wildcard specials for subdirectories in the glob. | |
std::pair< bool, std::string > | TreeUsesIndexedFriends (const TTree &tree) |
Check whether the input tree is using any TTreeIndex. | |
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 345 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 parts of the glob refer to a path that cannot be opened. |
The glob is expanded recursively, but subdirectories are only expanded when it is explicitly included in the pattern. For example, "dir/*" will only list the files in the subdirectories of "dir", but "dir/*‍/*" will list the files in the subsubdirectories of "dir".
Definition at line 508 of file InternalTreeUtils.cxx.
std::pair< std::vector< Long64_t >, Long64_t > ROOT::Internal::TreeUtils::GetClustersAndEntries | ( | std::string_view | treename, |
std::string_view | path | ||
) |
Returns the cluster boundaries and number of entries of the input tree.
[in] | treename | Name of the tree. |
[in] | filename | Path to the file. |
Definition at line 533 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::GetFileNamesFromTree | ( | const TTree & | tree | ) |
Definition at line 89 of file InternalTreeUtils.cxx.
ROOT::TreeUtils::RFriendInfo ROOT::Internal::TreeUtils::GetFriendInfo | ( | const TTree & | tree, |
bool | retrieveEntries = false |
||
) |
Definition at line 164 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 74 of file InternalTreeUtils.cxx.
std::vector< std::string > ROOT::Internal::TreeUtils::GetTreeFullPaths | ( | const TTree & | tree | ) |
Definition at line 304 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 365 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 374 of file InternalTreeUtils.cxx.
void ROOT::Internal::TreeUtils::RecursiveGlob | ( | TList & | out, |
const std::string & | glob | ||
) |
Recursively expand the glob to take care of potential wildcard specials for subdirectories in the glob.
[in] | l | The list of full paths to files. |
[in] | glob | The glob to expand. |
std::runtime_error | If the directory parts of the glob refer to a path that cannot be opened. |
If the glob contains a wildcard special for subdirectories, the three parts of the glob (directory, subdirectoryglob, remainder) are separated. Otherwise the glob is expanded to (directory, fileglob). The directory is first expanded via TSystem::ExpandPathName then opened via TSystem::OpenDirectory. If the directory can be opened, then current glob is used as regex expression (via TRegexp) to find subdirectories or store those files in the directory that match the regex.
Definition at line 427 of file InternalTreeUtils.cxx.
std::pair< bool, std::string > ROOT::Internal::TreeUtils::TreeUsesIndexedFriends | ( | const TTree & | tree | ) |
Check whether the input tree is using any TTreeIndex.
[in] | tree | The input TTree/TChain. |
Definition at line 563 of file InternalTreeUtils.cxx.