{ TCanvas * c_SinglePlot_4 = new TCanvas("c_SinglePlot_4","",1000,1000); // gives the page size Float_t alice_20 = 0.20 - 0.02 * 1.1; TLatex *alice = new TLatex(0.10-0.0225,alice_20,"ALICE Performance"); // Bo: this was modified alice->SetNDC(); alice->SetTextColor(2); alice->SetTextFont(42); alice->SetTextSize(0.02); alice->SetLineWidth(2); alice->Draw("same"); Float_t wip_20 = 0.20 - 0.02 *(1 + 1.1); TLatex *wip = new TLatex((0.10-0.011),wip_20,"work in progress"); // Bo: this was modified wip->SetNDC(); wip->SetTextColor(2); wip->SetTextFont(51); wip->SetTextSize(0.02); wip->SetLineWidth(2); wip->Draw("same"); Float_t end_x = 0.10 + 0.5; Float_t end_y = 0.20 + 0.5; TPad *myPadLogo = new TPad("myPadLogo", "Pad for ALICE Logo",0.10,0.20,end_x,end_y); // myPadLogo->SetFillColor(2); // color to first figure out where is the pad then comment ! myPadLogo->SetBorderMode(0); myPadLogo->SetBorderSize(2); myPadLogo->SetFrameBorderMode(0); myPadLogo->SetLeftMargin(0.0); myPadLogo->SetTopMargin(0.0); myPadLogo->SetBottomMargin(0.0); myPadLogo->SetRightMargin(0.0); TASImage *myAliceLogo = new TASImage("ALICE_logo.eps"); myPadLogo->Draw(); // to take out for not using a logo. myPadLogo->cd(); myAliceLogo->Draw("same"); c_SinglePlot_4->SaveAs("ALICELOGODRAW.pdf"); c_SinglePlot_4->SaveAs("ALICELOGODRAW.eps"); c_SinglePlot_4->SaveAs("ALICELOGODRAW.gif"); c_SinglePlot_4->SaveAs("ALICELOGODRAW.svg"); }