Suppose one has filled an array of histograms: TH1F* hist[8];
and has divided a canvas into 8 pads : page->Divide(2,4);
Is there a simple way to plot histograms in a loop with each histogram placed
on its own pad? To the moment it seems to me to be kind of cumbersome
operation.
Alternatively one could think of creating an array of pads, for example
"page_pad[2][4]" or "page_pad[8]" when dividing a canvas. This would
allow to loop over the pads.
Thanks, Pasha.