8 gSystem->Load(
"libTable");
18 new TBrowser(
"staff",allStaff);
21 TCanvas *canva =
new TCanvas(
"Staff",
"CERN Population",600,600);
27 gStyle->SetHistFillColor(10);
28 gStyle->SetHistFillStyle(3013);
30 TH1F* h200 =
new TH1F(
"h200",
"Number of years at CERN",35,0,35);
31 h200->SetFillStyle(3013);
32 allStaff->Draw(
"service>>h200");
35 TH1F* h201 =
new TH1F(
"h201",
"Number of years at CERN",35,0,35);
36 h201->SetXTitle(
"Years at CERN");
37 h201->SetYTitle(
"Number of staff");
38 h201->SetFillStyle(3044);
40 allStaff->Draw(
"service>>h201",
"nation==NATFR",
"same");
44 TH1F* h202 =
new TH1F(
"h202",
"Number of years at CERN",35,0,35);
45 h202->SetFillStyle(1044);
46 h202->SetFillColor(kBlack);
47 allStaff->Draw(
"service>>h202",
"(nation==NATFR) && (division==DIVEP)",
"same");