Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Sherwood
athena
Commits
624873a0
Commit
624873a0
authored
6 years ago
by
Marcin Nowak
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Event/xAOD/xAODCore/xAODCore/tools/PerfStats.h
+13
-0
13 additions, 0 deletions
Event/xAOD/xAODCore/xAODCore/tools/PerfStats.h
with
13 additions
and
0 deletions
Event/xAOD/xAODCore/xAODCore/tools/PerfStats.h
+
13
−
0
View file @
624873a0
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment