Setting alphanumeric labels.
void labels2()
{
const char *month[nx] = {"January","February","March","April",
"May","June","July","August","September","October",
"November","December"};
const char *people[ny] = {"Jean","Pierre","Marie","Odile",
"Sebastien","Fons","Rene","Nicolas","Xavier","Greg",
"Bjarne","Anton","Otto","Eddy","Peter","Pasha",
"Philippe","Suzanne","Jeff","Valery"};
10,10,800,800);
c1->SetBottomMargin(0.15);
TH2F *
h =
new TH2F(
"h",
"test",nx,0,nx,ny,0,ny);
}
for (
i=1;
i<=nx;
i++)
h->GetXaxis()->SetBinLabel(
i,month[
i-1]);
for (
i=1;
i<=ny;
i++)
h->GetYaxis()->SetBinLabel(
i,people[
i-1]);
pt->AddText(
"Use the axis Context Menu LabelsOption");
pt->AddText(
" \"a\" to sort by alphabetic order");
pt->AddText(
" \">\" to sort by decreasing values");
pt->AddText(
" \"<\" to sort by increasing values");
}
R__EXTERN TRandom * gRandom
2-D histogram with a float per channel (see TH1 documentation)
A Pave (see TPave) with text, lines or/and boxes inside.
- Author
- Rene Brun
Definition in file labels2.C.