Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
plot_bjet_raa.C
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file plot_bjet_raa.C
1 /*
2 Here are preliminary results for the RAA of b-jets
3 I have used the parameterization of Cesar (had convert it to d^2pT)
4 I have used 10% g and 90 % b quarks
5  3 radii 0.2, 0.4 and 0.6 - there are names 2, 4, 6 in the name of files
6 two different couplings g= 2 (labeled g41.0) and g=2.2 labeled g41.5
7 I suggest using g=2.2 as default
8 since ichi is exponential parameterizations and things will start falling steeply,
9 I sugest not using results beyond 60 GeV
10 This should give you a good sense of the expected suppression and p-T dependence
11 as a function of radius and coupling between the jet and the media,
12 Ivan Vitev, May 12, 2017
13  */
15 {
16  TGraph* gdef = new TGraph("R_SigR4.W0.0g41.5.SPEHIXdat");
17  TGraph* ggeq2 = new TGraph("R_SigR4.W0.0g41.0.SPEHIXdat");
18  gdef->SetLineColor(kBlack);
19  gdef->SetLineWidth(4);
20  ggeq2->SetLineWidth(4);
21  ggeq2->SetLineColor(kBlue);
22  TCanvas *c1 = new TCanvas("c1", "c1",10,45,700,502);
23  gStyle->SetOptTitle(1);
24  c1->SetHighLightColor(0);
25  c1->Range(-9.413793,-0.2360656,62.7931,1.321311);
26  c1->SetFillColor(0);
27  c1->SetBorderMode(0);
28  c1->SetBorderSize(0);
29  c1->SetLeftMargin(0.1303725);
30  c1->SetRightMargin(0.03868195);
31  c1->SetTopMargin(0.07789474);
32  c1->SetBottomMargin(0.1515789);
33  c1->SetFrameBorderMode(0);
34 
35  TH2F* hframe = new TH2F("hframe","Jet radii = 0.4;p_{T} [GeV/c];R_{AA}",
36  100,0,60,100,0,1.2);
37  hframe->GetXaxis()->SetLabelFont(132);
38  hframe->GetXaxis()->SetLabelSize(0.06);
39  hframe->GetXaxis()->SetTitleSize(0.07);
40  hframe->GetXaxis()->SetTitleOffset(0.9);
41  hframe->GetXaxis()->SetTitleFont(132);
42  hframe->GetYaxis()->SetTitle("R_{AA}");
43  hframe->GetYaxis()->SetNdivisions(310);
44  hframe->GetYaxis()->SetLabelFont(132);
45  hframe->GetYaxis()->SetLabelSize(0.06);
46  hframe->GetYaxis()->SetTitleSize(0.08);
47  hframe->GetYaxis()->SetTitleOffset(0.65);
48  hframe->GetYaxis()->SetTitleFont(132);
49  hframe->SetTitleFont(132);
50  hframe->SetTitleSize(0.06315789);
51  hframe->Draw();
52 
53  gdef->Draw("L");
54  ggeq2->Draw("L");
55 
56  TLegend* l = new TLegend(0.3323782,0.6221053,0.6332378,0.9231579,
57  "Au+Au#rightarrow b-jet @ #sqrt{s_{NN}}=200 GeV");
58  l->SetBorderSize(0);
59  l->SetFillStyle(0);
60  l->SetTextFont(132);
61  l->SetTextSize(0.06315789);
62  l->AddEntry(ggeq2,"coupling g=2.0","L");
63  l->AddEntry(gdef,"coupling g=2.2","L");
64  l->Draw();
65 
66 }