I often draw many histogram sets simultaneously, and each needs different style. I encountered problems with changing the style properly. Sometimes the style doesn’t change immediately, but only after drawing one histogram with the old style, and sometimes the style changes also in already drawn histograms.
I want the statbox appear on the even histograms (0, 2, 4…), and that the title height changes from 0.1 to 1.0. If I run the macro the title height changes as I wanted, but the statbox is present only in the odd histograms (1, 3, 5…). Another funny thing is that if I comment out the “SetOptStat” line, then all 10 histograms have title height equal 1!
Using DrawClone(), or DrawCopy() instead of Draw() doesn’t help. I also tried using h[i]->UseCurrentStyle(), but then the statbox is never drawn.
Style should be used to set global settings, not individual ones like in your macro.
For individual settings you should change the attribute directly on the object you want to modify. Any way your macro seems to work as it should. I the the attached picture.
[quote=“couet”]Style should be used to set global settings, not individual ones like in your macro.
For individual settings you should change the attribute directly on the object you want to modify.[/quote]
But I don’t see any method in TH1D to modify (for example) the size of the title… How should I do this?
No it doesn’t. I want the statbox appear on the the even histograms (0, 2, 4, 6, 8 ). On your picture (which look the same as mine) the statbox is on histograms 1, 3, 5, 7. This is why I started to wonder if I write the commands in proper order… but I couldn’t find a combination that would work as I want.