{ TH1D* hrho; hrho = new TH1D("hrho","",5,0.5,5.5); hrho->SetStats(kFALSE); hrho->GetXaxis()->SetBinLabel(1,"Nominal A"); hrho->GetXaxis()->SetBinLabel(2,"Nominal B"); hrho->GetXaxis()->SetBinLabel(3,"Low Field"); hrho->GetXaxis()->SetBinLabel(4,"High Field"); hrho->GetXaxis()->SetBinLabel(5,"Cloud"); hrho->GetXaxis()->SetLabelSize(0.1); hrho->GetXaxis()->SetTitle("Data Set"); hrho->GetXaxis()->CenterTitle(); hrho->GetXaxis()->SetTitleSize(0.1); hrho->GetYaxis()->SetLabelSize(0.1); hrho->GetYaxis()->SetTitle("#rho"); hrho->GetYaxis()->CenterTitle(); hrho->GetYaxis()->SetTitleSize(0.1); hrho->GetYaxis()->SetTitleOffset(0.9); hrho->GetYaxis()->SetNdivisions(505,kTRUE); hrho->SetMinimum(0.745); hrho->SetMaximum(0.755); hrho->SetLineWidth(3); hrho->SetBinContent(1,0.75134); hrho->SetBinError(1,0.00098); hrho->SetBinContent(2,0.74937); hrho->SetBinError(2,0.00085); hrho->SetBinContent(3,0.75027); hrho->SetBinError(3,0.00085); hrho->SetBinContent(4,0.75248); hrho->SetBinError(4,0.00092); hrho->SetBinContent(5,0.75157); hrho->SetBinError(5,0.00093); TCanvas *crho; crho = new TCanvas("crho","rho",600,300); crho->SetFillColor(0); crho->SetBorderSize(0.0); crho->SetBorderMode(0.0); crho->SetLeftMargin(0.17); crho->SetRightMargin(0.01); crho->SetTopMargin(0.01); crho->SetBottomMargin(0.2); hrho->Draw(); TH1D* hdelta; hdelta = new TH1D("hdelta","",4,0.5,4.5); hdelta->SetStats(kFALSE); hdelta->GetXaxis()->SetBinLabel(1,"Nominal A"); hdelta->GetXaxis()->SetBinLabel(2,"Nominal B"); hdelta->GetXaxis()->SetBinLabel(3,"Low Field"); hdelta->GetXaxis()->SetBinLabel(4,"High Field"); hdelta->GetXaxis()->SetBinLabel(5,"Cloud"); hdelta->GetXaxis()->SetLabelSize(0.1); hdelta->GetXaxis()->SetTitle("Data Set"); hdelta->GetXaxis()->CenterTitle(); hdelta->GetXaxis()->SetTitleSize(0.1); hdelta->GetYaxis()->SetLabelSize(0.1); hdelta->GetYaxis()->SetTitle("#delta"); hdelta->GetYaxis()->CenterTitle(); hdelta->GetYaxis()->SetTitleSize(0.1); hdelta->GetYaxis()->SetTitleOffset(0.9); hdelta->GetYaxis()->SetNdivisions(505,kTRUE); hdelta->SetMinimum(0.745); hdelta->SetMaximum(0.755); hdelta->SetLineWidth(3); hdelta->SetBinContent(1,0.75087); hdelta->SetBinError(1,0.00172); hdelta->SetBinContent(2,0.74979); hdelta->SetBinError(2,0.00136); hdelta->SetBinContent(3,0.74918); hdelta->SetBinError(3,0.00142); hdelta->SetBinContent(4,0.74908); hdelta->SetBinError(4,0.00147); TCanvas *cdelta; cdelta = new TCanvas("cdelta","delta",600,300); cdelta->SetFillColor(0); cdelta->SetBorderSize(0.0); cdelta->SetBorderMode(0.0); cdelta->SetLeftMargin(0.17); cdelta->SetRightMargin(0.01); cdelta->SetTopMargin(0.01); cdelta->SetBottomMargin(0.2); hdelta->Draw(); }