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
6277afd1
Commit
6277afd1
authored
3 years ago
by
Jonas Rembser
Browse files
Options
Downloads
Patches
Plain Diff
[RF] Use KahanSum class in RooDataSet and remove unreachable code
parent
86faf3ff
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
roofit/roofitcore/src/RooDataSet.cxx
+7
-32
7 additions, 32 deletions
roofit/roofitcore/src/RooDataSet.cxx
with
7 additions
and
32 deletions
roofit/roofitcore/src/RooDataSet.cxx
+
7
−
32
View file @
6277afd1
...
...
@@ -94,6 +94,7 @@ For the inverse conversion, see `RooAbsData::convertToVectorStore()`.
#include
"RooTrace.h"
#include
"RooHelpers.h"
#include
"Math/Util.h"
#include
"TTree.h"
#include
"TH2.h"
#include
"TFile.h"
...
...
@@ -1064,26 +1065,6 @@ const RooArgSet* RooDataSet::get(Int_t index) const
Double_t
RooDataSet
::
sumEntries
()
const
{
return
store
()
->
sumEntries
()
;
//---------
// Shortcut for unweighted unselected datasets
if
(
!
isWeighted
())
{
return
numEntries
()
;
}
// Otherwise sum the weights in the event
Double_t
sumw
(
0
),
carry
(
0
);
Int_t
i
;
for
(
i
=
0
;
i
<
numEntries
()
;
i
++
)
{
get
(
i
)
;
Double_t
y
=
weight
()
-
carry
;
Double_t
t
=
sumw
+
y
;
carry
=
(
t
-
sumw
)
-
y
;
sumw
=
t
;
}
return
sumw
;
}
...
...
@@ -1094,9 +1075,9 @@ Double_t RooDataSet::sumEntries() const
Double_t
RooDataSet
::
sumEntries
(
const
char
*
cutSpec
,
const
char
*
cutRange
)
const
{
// Setup RooFormulaVar for cutSpec if it is present
RooFormula
*
select
=
0
;
std
::
unique_ptr
<
RooFormula
>
select
=
nullptr
;
if
(
cutSpec
&&
strlen
(
cutSpec
)
>
0
)
{
select
=
new
RooFormula
(
"select"
,
cutSpec
,
*
get
())
;
select
=
std
::
make_unique
<
RooFormula
>
(
"select"
,
cutSpec
,
*
get
())
;
}
// Shortcut for unweighted unselected datasets
...
...
@@ -1105,21 +1086,15 @@ Double_t RooDataSet::sumEntries(const char* cutSpec, const char* cutRange) const
}
// Otherwise sum the weights in the event
Double_t
sumw
(
0
),
carry
(
0
);
Int_t
i
;
for
(
i
=
0
;
i
<
numEntries
()
;
i
++
)
{
ROOT
::
Math
::
KahanSum
<
double
>
sumw
{
0.0
};
for
(
int
i
=
0
;
i
<
numEntries
()
;
i
++
)
{
get
(
i
)
;
if
(
select
&&
select
->
eval
()
==
0.
)
continue
;
if
(
cutRange
&&
!
_vars
.
allInRange
(
cutRange
))
continue
;
Double_t
y
=
weight
()
-
carry
;
Double_t
t
=
sumw
+
y
;
carry
=
(
t
-
sumw
)
-
y
;
sumw
=
t
;
sumw
+=
weight
();
}
if
(
select
)
delete
select
;
return
sumw
;
return
sumw
.
Sum
()
;
}
...
...
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