Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
1884213b
Commit
1884213b
authored
6 years ago
by
Philippe Canal
Browse files
Options
Downloads
Patches
Plain Diff
'static' lambda can't use 'this' pointer
parent
72a4bba0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tree/tree/src/TTreeCache.cxx
+6
-6
6 additions, 6 deletions
tree/tree/src/TTreeCache.cxx
with
6 additions
and
6 deletions
tree/tree/src/TTreeCache.cxx
+
6
−
6
View file @
1884213b
...
...
@@ -1132,9 +1132,9 @@ Bool_t TTreeCache::FillBuffer()
// Replace this once we have a per module and/or per class debuging level/setting.
static
constexpr
bool
showMore
=
kFALSE
;
static
const
auto
PrintAllCacheInfo
=
[
this
](
)
{
for
(
Int_t
i
=
0
;
i
<
fN
branches
;
i
++
)
{
TBranch
*
b
=
(
TBranch
*
)
fB
ranches
->
UncheckedAt
(
i
);
static
const
auto
PrintAllCacheInfo
=
[
](
TObjArray
*
branches
)
{
for
(
Int_t
i
=
0
;
i
<
branches
->
GetEntries
()
;
i
++
)
{
TBranch
*
b
=
(
TBranch
*
)
b
ranches
->
UncheckedAt
(
i
);
b
->
PrintCacheInfo
();
}
};
...
...
@@ -1159,7 +1159,7 @@ Bool_t TTreeCache::FillBuffer()
Info
(
"FillBuffer"
,
"All baskets used already, so refresh the cache early at entry %lld"
,
entry
);
}
if
(
gDebug
>
8
)
PrintAllCacheInfo
();
PrintAllCacheInfo
(
fBranches
);
}
// If the entry is in the range we previously prefetched, there is
...
...
@@ -1180,7 +1180,7 @@ Bool_t TTreeCache::FillBuffer()
Info
(
"FillBuffer"
,
"*** Will reset the branch information about baskets"
);
}
else
if
(
showMore
||
gDebug
>
6
)
{
Info
(
"FillBuffer"
,
"*** Info we have on the set of baskets"
);
PrintAllCacheInfo
();
PrintAllCacheInfo
(
fBranches
);
}
fEntryCurrentMax
=
fEntryCurrent
;
...
...
@@ -1643,7 +1643,7 @@ Bool_t TTreeCache::FillBuffer()
ranges
.
Print
();
Info
(
"FillBuffer"
,
"Requested ranges"
);
reqRanges
.
Print
();
PrintAllCacheInfo
();
PrintAllCacheInfo
(
fBranches
);
}
if
(
nReadPrefRequest
==
0
)
{
...
...
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