Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
slash.C
Go to the documentation of this file.
1 TCanvas *slash()
2 {
3  TCanvas *F = new TCanvas("script","Slash",500,100);
4 
5  TLatex Tl;
6  Tl.SetTextSize(0.3);
7  Tl.SetTextAlign(12);
8  TLatex Tt;
9  Tt.SetTextSize(0.3);
10  Tt.SetTextFont(82);
11  Tt.SetTextAlign(12);
12 
13  float y, x1, x2;
14  y = 0.50; x1 = 0.02; x2 = x1+0.7;
15 
16  Tt.DrawText(x1, y, "#slash{E}_{T}");
17  Tl.DrawLatex(x2, y, "#slash{E}_{T}");
18 
19  return F;
20 }