HI,
I declare a histogram in the following way:
Double_t e_nu[7]={5,7,10,14,18,22,30};
Double_t x_nu[14]={0.0001,0.03,0.06,0.1,0.15,0.20,0.25,0.30,0.40,0.50,0.60,0.70,0.80,0.90};
Double_t y_nu[9]={0.05,0.20,0.30,0.40,0.50,0.60,0.70,0.80,0.95};
TH3F *nu_reco_total = new TH3F(“nu_reco_total”,“total nu’s(reco)”,6,e_nu,13,x_nu,8,y_nu);
after filling the histogram, I try doing :
cout<<nu_reco_total->GetMinimumBin()<<" "<<nu_reco_total->GetMaximumBin()<<endl;
and I get the answer:
133 and 1030
I dont quite understand the answer, how are these numbers related to the Minimum or MaximumBin ?
Also what should I do if I want to get the minbin and maxbin in each of the x,y and z axes?
-thanks debdatta.