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

Fix a CINT warning:

Warning: wrong member access operator '->' FILE:dt_MakeRef.C LINE:172
Warning: wrong member access operator '->' FILE:dt_MakeRef.C LINE:250


git-svn-id: http://root.cern.ch/svn/root/trunk@7093 27541ba8-7e3a-0410-8455-c3a389f83636
parent 16a25e1c
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,7 @@ void MakeHisto(TTree *tree, TDirectory* To) { ...@@ -169,7 +169,7 @@ void MakeHisto(TTree *tree, TDirectory* To) {
Int_t ncx = refTriggerBits->GetXaxis()->GetNbins(); Int_t ncx = refTriggerBits->GetXaxis()->GetNbins();
Int_t nextbit = -1; Int_t nextbit = -1;
while(1) { while(1) {
nextbit = bits->FirstSetBit(nextbit+1); nextbit = bits.FirstSetBit(nextbit+1);
if (nextbit >= nbits) break; if (nextbit >= nbits) break;
if (nextbit > ncx) refTriggerBits->Fill(ncx+1); if (nextbit > ncx) refTriggerBits->Fill(ncx+1);
else refTriggerBits->Fill(nextbit); else refTriggerBits->Fill(nextbit);
...@@ -247,7 +247,7 @@ void MakeHisto(TTree *tree, TDirectory* To) { ...@@ -247,7 +247,7 @@ void MakeHisto(TTree *tree, TDirectory* To) {
Int_t ncx = refTrackTrigger->GetXaxis()->GetNbins(); Int_t ncx = refTrackTrigger->GetXaxis()->GetNbins();
Int_t nextbit = -1; Int_t nextbit = -1;
while(1) { while(1) {
nextbit = bits->FirstSetBit(nextbit+1); nextbit = bits.FirstSetBit(nextbit+1);
if (nextbit >= nbits) break; if (nextbit >= nbits) break;
if (nextbit > ncx) refTrackTrigger->Fill(ncx+1); if (nextbit > ncx) refTrackTrigger->Fill(ncx+1);
else refTrackTrigger->Fill(nextbit); else refTrackTrigger->Fill(nextbit);
......
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