]> git.uio.no Git - u/mrichter/AliRoot.git/blame - prod/acrcaf/qa_pp/plot_macros/plotSectorQPtRatio.C
adding LED Ref FEE channels to PED DA and execute LED DA for calibration events only
[u/mrichter/AliRoot.git] / prod / acrcaf / qa_pp / plot_macros / plotSectorQPtRatio.C
CommitLineData
08cff48a 1{
2gROOT->SetStyle("Plain");
3gStyle->SetOptStat(0);
4gStyle->SetPalette(1);
5
6//open files and get lists
7TList *l;
8TFile f0("QAsym.proof.root");
9l = (TList *)f0.Get("QAsymHists");
10
11
12TH1F* fHpos[18];
13
14for(Int_t sector=0;sector<18;sector++){
15 fHpos[sector]= (TH1F*) l->FindObject(Form("fRecQPtTpcSector%02d", sector));
16}
17
18TH1F* fHposref =(TH1F*) l->FindObject("fQPt");
19
20TLegend *legp;
21legp= new TLegend(0.9,0.65,0.65,0.9);
22legp->SetFillColor(kWhite);
23
24TF1 *fun0, *fun1;
25fun0= new TF1("fun0","gaus",-5.0,5.0);
26fun1= new TF1("fun1","gaus",-5.0,5.0);
27fun0->SetLineColor(kBlack);
28fun1->SetLineColor(kRed);
29
30legp->AddEntry(fun0,"positive","l");
31legp->AddEntry(fun1,"negative","l");
32
33
34
35for(Int_t i=0; i<18;i++){
36 fHpos[i]->SetLineColor(kRed);
37 // fHpos[i]->SetLineWidth(2);
38}
39
40
41TCanvas * dca = new TCanvas("pt", "pt", 100, 100, 1020, 820);
42dca->Divide(6,3);
43for(Int_t i=0; i<18;i++){
44 fHpos[i]->Divide(fHposref);
45 dca->cd(i+1);
46
47 fHpos[i]->Draw();
48
49 fHpos[i]->SetMaximum(0.3);
50 fHpos[i]->SetMinimum(-0.1);
51// fHpos[i]->SetMaximum(100);
52// fHpos[i]->SetMinimum(1)
53 ;
54
55 fHpos[i]->SetTitle("");
56 fHpos[i]->SetXTitle(Form("(Q/p_{T})_{%d}/(Q/p_{T})_{all}",i));
57 //fHpos[i]->SetXTitle(Form("Q/p_{T} sector %2d",i));
58
59 gPad->SetLeftMargin(0.20);
60 gPad->SetBottomMargin(0.17);
61
62 fHpos[i]->SetTitleOffset(1., "X");
63 fHpos[i]->SetTitleOffset(.8, "Y");
64 fHpos[i]->SetTitleSize(0.08, "X");
65 fHpos[i]->SetTitleSize(0.05, "Y");
66 fHpos[i]->SetLabelSize(0.1, "X");
67 fHpos[i]->SetLabelSize(0.1, "Y");
68 fHpos[i]->GetYaxis()->SetNdivisions(5);
69 fHpos[i]->GetXaxis()->SetNdivisions(5);
70
71
72 //gPad->SetLogy();
73
74}
75
76
77
78}