Skip to content
Snippets Groups Projects
Commit 624873a0 authored by Marcin Nowak's avatar Marcin Nowak :radioactive:
Browse files

Added description for the new methods into the PersStats header

Former-commit-id: 2116ea47
parent f5f971b4
No related branches found
No related tags found
No related merge requests found
...@@ -92,15 +92,28 @@ namespace xAOD { ...@@ -92,15 +92,28 @@ namespace xAOD {
#if ROOT_VERSION_CODE >= ROOT_VERSION( 6, 14, 0 ) #if ROOT_VERSION_CODE >= ROOT_VERSION( 6, 14, 0 )
// new methods (ROOT 6.14) - need forwarding to the original TPerfStats // new methods (ROOT 6.14) - need forwarding to the original TPerfStats
/// Print the TTree basket read caching statistics
virtual void PrintBasketInfo(Option_t *option = "") const; virtual void PrintBasketInfo(Option_t *option = "") const;
/// Increase by 1 the counter of how many times a basket was cached
virtual void SetLoaded(TBranch *b, size_t basketNumber); virtual void SetLoaded(TBranch *b, size_t basketNumber);
virtual void SetLoaded(size_t bi, size_t basketNumber); virtual void SetLoaded(size_t bi, size_t basketNumber);
/// Increase by 1 the counter of how many times a basket was cached on access
virtual void SetLoadedMiss(TBranch *b, size_t basketNumber); virtual void SetLoadedMiss(TBranch *b, size_t basketNumber);
virtual void SetLoadedMiss(size_t bi, size_t basketNumber); virtual void SetLoadedMiss(size_t bi, size_t basketNumber);
/// Increase count (by 1) of not cached basket reads
virtual void SetMissed(TBranch *b, size_t basketNumber); virtual void SetMissed(TBranch *b, size_t basketNumber);
virtual void SetMissed(size_t bi, size_t basketNumber); virtual void SetMissed(size_t bi, size_t basketNumber);
/// Mark a basket as accessed
virtual void SetUsed(TBranch *b, size_t basketNumber); virtual void SetUsed(TBranch *b, size_t basketNumber);
virtual void SetUsed(size_t bi, size_t basketNumber); virtual void SetUsed(size_t bi, size_t basketNumber);
/// Update the fBranchIndexCache collection to match the current TTree given
/// the ordered list of branch names.
virtual void UpdateBranchIndices(TObjArray *branches); virtual void UpdateBranchIndices(TObjArray *branches);
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment