14 |
|
sameCanv_cuts = false; |
15 |
|
|
16 |
|
showLegend = false; |
17 |
+ |
logY = true; |
18 |
+ |
|
19 |
|
|
20 |
|
} |
21 |
|
|
112 |
|
|
113 |
|
if( ! pads_[currPadName.str()] || ! gROOT->FindObject(currPadName.str().c_str()) ) { |
114 |
|
pads_[currPadName.str()] = new TCanvas(currPadName.str().c_str(), currPadName.str().c_str()); |
115 |
+ |
if(logY) pads_[currPadName.str()]->SetLogy(1); |
116 |
|
} else { |
117 |
|
pads_[currPadName.str()]->cd(); |
118 |
|
currOpt += "SAMES"; |
291 |
|
thisCanvas->SetBottomMargin(0.2); |
292 |
|
thisCanvas->SetTopMargin(0.1); |
293 |
|
|
294 |
+ |
if(logY) thisCanvas->SetLogy(1); |
295 |
+ |
else thisCanvas->SetLogy(0); |
296 |
|
|
297 |
|
if(showLegend) thisLeg = new TLegend(); |
298 |
|
|