2-D histograms with alphanumeric labels.
void hist036_TH2_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"};
c1->SetBottomMargin(0.15);
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");
}
int Int_t
Signed integer 4 bytes (int).
2-D histogram with a float per channel (see TH1 documentation)
- Date
- July 2016
- Author
- Rene Brun
Definition in file hist036_TH2_labels.C.