{ gROOT->Reset(); TH1F *his1 = new TH1F("his1","Title",10,0.,10.); TH1F *his2 = new TH1F("his2","Title",10,0.,10.); Double_t y1[11] = {0,1,2,3,4,5,5,4,3,2,1}; Double_t y2[11] = {0,4,3,2,2.5,2,1.5,2,0.5,0,0}; his1->SetContent(y1); his2->SetContent(y2); his1->SetFillColor(1); his2->SetFillColor(1); his1->SetFillStyle(3004); his2->SetFillStyle(3005); his1->Draw(); his2->Draw("same"); c1->Print("his.eps"); }