Hi,
I’m having a very weird problem that I can’t track down. Basically, I have nearly identical code being run in two separate python scripts, in which I eventually call:
stack = THStack(‘TheStack’, ‘Title of the Stack’)
stack.Draw()
Notice that I don’t pass any options to Draw(). In the correct case, I get this:
And in the other script, I get this:
In both cases, I don’t even touch gStyle. Does anybody know how if it is possible that Draw() under certain circumstances uses ‘P’ as a default option? Anyone has an idea how this can happen?
I unfortunately can’t provide a simple example in which this also happens. I have a plotting framework containing a rather sophisticated wrapper for 1D histograms which has never produced this kind of behavior before. I can provide the code if really, really necessary.