Skip to content

Commit 0732116

Browse files
committed
ATO-525 - make histograms - using long for the size print
1 parent 57c74b3 commit 0732116

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

STAT/AliTreePlayer.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ TObjArray * AliTreePlayer::MakeHistograms(TTree * tree, TString hisString, TStr
11721172
Int_t nExpressions=hisString.CountChar(':')+hisString.CountChar(';')+1;
11731173
TObjArray * formulaArray = new TObjArray(nExpressions); // array of all expressions - OWNER
11741174
TString queryString = "";
1175-
Int_t hisSizeFull=0;
1175+
Long_t hisSizeFull=0;
11761176
//
11771177
// 1.) Analyze formula, book list of TObjString
11781178
//
@@ -1307,7 +1307,7 @@ TObjArray * AliTreePlayer::MakeHistograms(TTree * tree, TString hisString, TStr
13071307
}
13081308
}
13091309
if (verbose&0x1) {
1310-
::Info("AliTreePlayer::MakeHistograms","Total size=%d",hisSizeFull);
1310+
::Info("AliTreePlayer::MakeHistograms","Total size=%lld",hisSizeFull);
13111311
}
13121312
}
13131313
// 2.3 fill histograms

0 commit comments

Comments
 (0)