Holiday Greetings

Dear Root Forum Friends

Just wanted to wish you all a very Happy and Blessed Christmas!!

You are a wonderful, dedicated and diligent bunch. I am delighted to be a part of this forum.

1 Like
{
  TCanvas *c = new TCanvas("c","c",300,600);
  Double_t x[11] = {.60, .60, .90, .65, .80, .50, .20, .35, .10, .40, .40};
  Double_t y[11] = {0.00, 0.13, 0.13, 0.40, 0.40, 0.80, 0.40, 0.40, 0.13, 0.13, 0.00};
  TGraph *g = new TGraph(11,x,y);
  TLatex *l = new TLatex(.22,.85,"Happy Holidays");
  l->SetTextFont(42);
  l->SetTextSize(.09);
  g->SetFillColor(kGreen);
  g->SetFillStyle(3144);
  g->Draw("ELF");   // :-)
  l->Draw();
}
1 Like