Log and linear plots on same page

Hi again,

I’m trying to display one log and 3 linear plots on the same page as:

c1.Divide(2,2);

c1.cd(1);
gPad->SetLogy();
nprspersub1->SetMinimum(0.7);
nprspersub1->Draw();
gPad->SetLogy(0);

c1.cd(2); tcalls->Draw();

c1.cd(3); tp->Draw();

c1.cd(4); tcalls_p->Draw();

c1->Print(“histo6.ps(”,“ps”); c1.Clear();

And I get the first plot in linear in the .ps output.

I suspect there is a simple answer, thansk
Ken

Simply remove the line
gPad->SetLogy(0);

Remember that you are setting object attributes and not a global option
that is applicable to teh following objects. You apply it to gPad.

Rene