Problems with ntuples
Jacek M. Holeczek (holeczek@us.edu.pl)
Sat, 27 Mar 1999 12:09:41 +0100 (MET)
Hi,
On this occasion I noticed a potential bug in :
Int_t TTree::GetEvent(Int_t event, Int_t getall)
there is :
if (event < 0 || event > fEntries) return 0;
should be :
if (event < 0 || event > fEntries-1 ) return 0;
Right ?
Jacek.