Skip to content
Snippets Groups Projects
Commit fdbdf650 authored by Rene Brun's avatar Rene Brun
Browse files

From Wouter:

Fix one more fabs problem.


git-svn-id: http://root.cern.ch/svn/root/trunk@21316 27541ba8-7e3a-0410-8455-c3a389f83636
parent 17efa2aa
No related branches found
No related tags found
No related merge requests found
......@@ -587,7 +587,7 @@ RooNDKeysPdf::loadWeightSet() const
for (Int_t i=0; i<_nEventsM; i++) {
_data.get(_idx[i]);
if ( nWObs>0 ) { *weightObs = *values; } // update _weight
if ( fabs(_weight)>_minWeight ) {
if ( TMath::Abs(_weight)>_minWeight ) {
_wMap[i] = _weight;
}
}
......
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