2-D histograms with alphanumeric labels.
{
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"};
TH2F *h =
new TH2F(
"h",
"test",3,0,3,2,0,2);
for (
Int_t i=0;i<15000;i++) {
h->
Fill(people[ry],month[rx],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");
}
- Author
- Rene Brun
Definition in file hlabels2.C.