Skip to content

Commit

Permalink
ATO-525 - make histograms - using long for the size print
Browse files Browse the repository at this point in the history
  • Loading branch information
miranov25 committed Mar 22, 2021
1 parent 57c74b3 commit 0732116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions STAT/AliTreePlayer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ TObjArray * AliTreePlayer::MakeHistograms(TTree * tree, TString hisString, TStr
Int_t nExpressions=hisString.CountChar(':')+hisString.CountChar(';')+1;
TObjArray * formulaArray = new TObjArray(nExpressions); // array of all expressions - OWNER
TString queryString = "";
Int_t hisSizeFull=0;
Long_t hisSizeFull=0;
//
// 1.) Analyze formula, book list of TObjString
//
Expand Down Expand Up @@ -1307,7 +1307,7 @@ TObjArray * AliTreePlayer::MakeHistograms(TTree * tree, TString hisString, TStr
}
}
if (verbose&0x1) {
::Info("AliTreePlayer::MakeHistograms","Total size=%d",hisSizeFull);
::Info("AliTreePlayer::MakeHistograms","Total size=%lld",hisSizeFull);
}
}
// 2.3 fill histograms
Expand Down

0 comments on commit 0732116

Please sign in to comment.