v3_ptShifted_3.C 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. void v3_ptShifted_3()
  2. {
  3. //=========Macro generated from canvas: canv3/Canvas 3
  4. //========= (Wed Jun 5 22:33:17 2019) by ROOT version 6.17/01
  5. TCanvas *canv3 = new TCanvas("canv3", "Canvas 3",0,0,1500,900);
  6. gStyle->SetOptStat(0);
  7. gStyle->SetOptTitle(0);
  8. canv3->Range(0,0,1,1);
  9. canv3->SetFillColor(10);
  10. canv3->SetBorderMode(0);
  11. canv3->SetBorderSize(2);
  12. canv3->SetTickx(1);
  13. canv3->SetTicky(1);
  14. canv3->SetLeftMargin(0.15);
  15. canv3->SetBottomMargin(0.15);
  16. canv3->SetFrameLineWidth(3);
  17. // ------------>Primitives in pad: padL30
  18. TPad *padL30 = new TPad("padL30", "pion 3 0",0,0.5454,0.375,1);
  19. padL30->Draw();
  20. padL30->cd();
  21. padL30->Range(-0.705,-0.029,3.42,0.171);
  22. padL30->SetFillColor(0);
  23. padL30->SetBorderMode(0);
  24. padL30->SetBorderSize(0);
  25. padL30->SetTickx(1);
  26. padL30->SetTicky(1);
  27. padL30->SetLeftMargin(0.2);
  28. padL30->SetRightMargin(0);
  29. padL30->SetTopMargin(0.01);
  30. padL30->SetBottomMargin(0);
  31. padL30->SetFrameFillColor(10);
  32. padL30->SetFrameLineWidth(3);
  33. padL30->SetFrameFillColor(10);
  34. padL30->SetFrameLineWidth(3);
  35. Double_t Graph0_fx1037[14] = {
  36. 0.4,
  37. 0.6,
  38. 0.8,
  39. 1,
  40. 1.2,
  41. 1.4,
  42. 1.6,
  43. 1.8,
  44. 2,
  45. 2.2,
  46. 2.4,
  47. 2.6,
  48. 2.8,
  49. 3};
  50. Double_t Graph0_fy1037[14] = {
  51. 0.007487063,
  52. 0.01726974,
  53. 0.02893556,
  54. 0.04242352,
  55. 0.05623588,
  56. 0.06567322,
  57. 0.07395581,
  58. 0.07971118,
  59. 0.0825503,
  60. 0.08710442,
  61. 0.09335874,
  62. 0.09194021,
  63. 0.09373604,
  64. 0.1062628};
  65. Double_t Graph0_fex1037[14] = {
  66. 0.06,
  67. 0.06,
  68. 0.06,
  69. 0.06,
  70. 0.06,
  71. 0.06,
  72. 0.06,
  73. 0.06,
  74. 0.06,
  75. 0.06,
  76. 0.06,
  77. 0.06,
  78. 0.06,
  79. 0.06};
  80. Double_t Graph0_fey1037[14] = {
  81. 0.0003743531,
  82. 0.0008634871,
  83. 0.001446778,
  84. 0.002121176,
  85. 0.002811794,
  86. 0.003283661,
  87. 0.00369779,
  88. 0.003985559,
  89. 0.004127515,
  90. 0.004355221,
  91. 0.004667937,
  92. 0.00459701,
  93. 0.004686802,
  94. 0.005313141};
  95. TGraphErrors *gre = new TGraphErrors(14,Graph0_fx1037,Graph0_fy1037,Graph0_fex1037,Graph0_fey1037);
  96. gre->SetName("Graph0");
  97. gre->SetTitle("Graph");
  98. Int_t ci; // for color index setting
  99. TColor *color; // for color definition with alpha
  100. ci = TColor::GetColor("#333333");
  101. gre->SetFillColor(ci);
  102. gre->SetFillStyle(3001);
  103. gre->SetLineWidth(3);
  104. gre->SetMarkerSize(0);
  105. TH1F *Graph_Graph01037 = new TH1F("Graph_Graph01037","Graph",100,0.12,3.42);
  106. Graph_Graph01037->SetMinimum(-0.029);
  107. Graph_Graph01037->SetMaximum(0.169);
  108. Graph_Graph01037->SetDirectory(0);
  109. Graph_Graph01037->SetStats(0);
  110. ci = TColor::GetColor("#ff0000");
  111. Graph_Graph01037->SetLineColor(ci);
  112. Graph_Graph01037->SetLineWidth(3);
  113. Graph_Graph01037->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  114. Graph_Graph01037->GetXaxis()->SetLabelSize(0.06);
  115. Graph_Graph01037->GetXaxis()->SetTitleSize(0.0502079);
  116. Graph_Graph01037->GetXaxis()->SetTitleOffset(1.25);
  117. Graph_Graph01037->GetYaxis()->SetTitle("v_{3}");
  118. Graph_Graph01037->GetYaxis()->SetLabelOffset(0.01);
  119. Graph_Graph01037->GetYaxis()->SetLabelSize(0.085);
  120. Graph_Graph01037->GetYaxis()->SetTitleSize(0.1095445);
  121. Graph_Graph01037->GetYaxis()->SetTitleOffset(0.9);
  122. Graph_Graph01037->GetZaxis()->SetLabelSize(0.05);
  123. Graph_Graph01037->GetZaxis()->SetTitleSize(0.06);
  124. Graph_Graph01037->GetZaxis()->SetTitleOffset(1);
  125. gre->SetHistogram(Graph_Graph01037);
  126. gre->Draw("a2");
  127. Double_t Graph1_fx1038[14] = {
  128. 0.4,
  129. 0.6,
  130. 0.8,
  131. 1,
  132. 1.2,
  133. 1.4,
  134. 1.6,
  135. 1.8,
  136. 2,
  137. 2.2,
  138. 2.4,
  139. 2.6,
  140. 2.8,
  141. 3};
  142. Double_t Graph1_fy1038[14] = {
  143. 0.007487063,
  144. 0.01726974,
  145. 0.02893556,
  146. 0.04242352,
  147. 0.05623588,
  148. 0.06567322,
  149. 0.07395581,
  150. 0.07971118,
  151. 0.0825503,
  152. 0.08710442,
  153. 0.09335874,
  154. 0.09194021,
  155. 0.09373604,
  156. 0.1062628};
  157. Double_t Graph1_fex1038[14] = {
  158. 0,
  159. 0,
  160. 0,
  161. 0,
  162. 0,
  163. 0,
  164. 0,
  165. 0,
  166. 0,
  167. 0,
  168. 0,
  169. 0,
  170. 0,
  171. 0};
  172. Double_t Graph1_fey1038[14] = {
  173. 6.26382e-05,
  174. 8.369378e-05,
  175. 0.0001274799,
  176. 0.0001539146,
  177. 0.0002787776,
  178. 0.0003764945,
  179. 0.0005069173,
  180. 0.0008984012,
  181. 0.0006830937,
  182. 0.001207717,
  183. 0.001649746,
  184. 0.002325977,
  185. 0.003314533,
  186. 0.004907826};
  187. gre = new TGraphErrors(14,Graph1_fx1038,Graph1_fy1038,Graph1_fex1038,Graph1_fey1038);
  188. gre->SetName("Graph1");
  189. gre->SetTitle("Graph");
  190. gre->SetFillStyle(1000);
  191. gre->SetLineWidth(3);
  192. gre->SetMarkerStyle(20);
  193. gre->SetMarkerSize(1.6);
  194. TH1F *Graph_Graph11038 = new TH1F("Graph_Graph11038","Graph",100,0.14,3.26);
  195. Graph_Graph11038->SetMinimum(-0.029);
  196. Graph_Graph11038->SetMaximum(0.169);
  197. Graph_Graph11038->SetDirectory(0);
  198. Graph_Graph11038->SetStats(0);
  199. ci = TColor::GetColor("#ff0000");
  200. Graph_Graph11038->SetLineColor(ci);
  201. Graph_Graph11038->SetLineWidth(3);
  202. Graph_Graph11038->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  203. Graph_Graph11038->GetXaxis()->SetLabelSize(0.05);
  204. Graph_Graph11038->GetXaxis()->SetTitleSize(0.06);
  205. Graph_Graph11038->GetXaxis()->SetTitleOffset(1);
  206. Graph_Graph11038->GetYaxis()->SetTitle("v_{3}");
  207. Graph_Graph11038->GetYaxis()->SetLabelOffset(0.01);
  208. Graph_Graph11038->GetYaxis()->SetLabelSize(0.05);
  209. Graph_Graph11038->GetYaxis()->SetTitleSize(0.06);
  210. Graph_Graph11038->GetYaxis()->SetTitleOffset(1.3);
  211. Graph_Graph11038->GetZaxis()->SetLabelSize(0.05);
  212. Graph_Graph11038->GetZaxis()->SetTitleSize(0.06);
  213. Graph_Graph11038->GetZaxis()->SetTitleOffset(1);
  214. gre->SetHistogram(Graph_Graph11038);
  215. gre->Draw("p");
  216. Double_t _fx3010[23] = {
  217. 0.405699,
  218. 0.593969,
  219. 0.79382,
  220. 0.993862,
  221. 1.19403,
  222. 1.39407,
  223. 1.5945,
  224. 1.79459,
  225. 1.9946,
  226. 2.19503,
  227. 2.39502,
  228. 2.59533,
  229. 2.79575,
  230. 2.99589,
  231. 3.19627,
  232. 3.39666,
  233. 3.59657,
  234. 3.79698,
  235. 4.085,
  236. 4.48648,
  237. 4.88692,
  238. 5.28891,
  239. 5.68944};
  240. Double_t _fy3010[23] = {
  241. 0.0125995,
  242. 0.0235174,
  243. 0.0352899,
  244. 0.0471666,
  245. 0.0578578,
  246. 0.0690165,
  247. 0.0786482,
  248. 0.0866824,
  249. 0.0914592,
  250. 0.0972359,
  251. 0.103348,
  252. 0.103768,
  253. 0.105534,
  254. 0.107203,
  255. 0.106805,
  256. 0.103065,
  257. 0.0996371,
  258. 0.0940363,
  259. 0.0899229,
  260. 0.0902273,
  261. 0.0666662,
  262. 0.0665904,
  263. 0.0625276};
  264. Double_t _felx3010[23] = {
  265. 0,
  266. 0,
  267. 0,
  268. 0,
  269. 0,
  270. 0,
  271. 0,
  272. 0,
  273. 0,
  274. 0,
  275. 0,
  276. 0,
  277. 0,
  278. 0,
  279. 0,
  280. 0,
  281. 0,
  282. 0,
  283. 0,
  284. 0,
  285. 0,
  286. 0,
  287. 0};
  288. Double_t _fely3010[23] = {
  289. 0.003156964,
  290. 0.003145048,
  291. 0.003143891,
  292. 0.003149873,
  293. 0.003165102,
  294. 0.003188524,
  295. 0.003223634,
  296. 0.00327808,
  297. 0.003356516,
  298. 0.003451041,
  299. 0.003584242,
  300. 0.003758672,
  301. 0.003974104,
  302. 0.004229889,
  303. 0.00455438,
  304. 0.004923835,
  305. 0.005377831,
  306. 0.00593377,
  307. 0.005519412,
  308. 0.00669535,
  309. 0.008197107,
  310. 0.0100103,
  311. 0.01201829};
  312. Double_t _fehx3010[23] = {
  313. 0,
  314. 0,
  315. 0,
  316. 0,
  317. 0,
  318. 0,
  319. 0,
  320. 0,
  321. 0,
  322. 0,
  323. 0,
  324. 0,
  325. 0,
  326. 0,
  327. 0,
  328. 0,
  329. 0,
  330. 0,
  331. 0,
  332. 0,
  333. 0,
  334. 0,
  335. 0};
  336. Double_t _fehy3010[23] = {
  337. 0.003156964,
  338. 0.003145048,
  339. 0.003143891,
  340. 0.003149873,
  341. 0.003165102,
  342. 0.003188524,
  343. 0.003223634,
  344. 0.00327808,
  345. 0.003356516,
  346. 0.003451041,
  347. 0.003584242,
  348. 0.003758672,
  349. 0.003974104,
  350. 0.004229889,
  351. 0.00455438,
  352. 0.004923835,
  353. 0.005377831,
  354. 0.00593377,
  355. 0.005519412,
  356. 0.00669535,
  357. 0.008197107,
  358. 0.0100103,
  359. 0.01201829};
  360. TGraphAsymmErrors *grae = new TGraphAsymmErrors(23,_fx3010,_fy3010,_felx3010,_fehx3010,_fely3010,_fehy3010);
  361. grae->SetName("");
  362. grae->SetTitle("");
  363. grae->SetFillStyle(1000);
  364. grae->SetLineColor(2);
  365. grae->SetLineWidth(3);
  366. grae->SetMarkerColor(2);
  367. grae->SetMarkerStyle(21);
  368. grae->SetMarkerSize(1.6);
  369. TH1F *Graph_Graph3010 = new TH1F("Graph_Graph3010","",100,0,6.217814);
  370. Graph_Graph3010->SetMinimum(0.008498282);
  371. Graph_Graph3010->SetMaximum(0.1216319);
  372. Graph_Graph3010->SetDirectory(0);
  373. Graph_Graph3010->SetStats(0);
  374. ci = TColor::GetColor("#ff0000");
  375. Graph_Graph3010->SetLineColor(ci);
  376. Graph_Graph3010->SetLineWidth(3);
  377. Graph_Graph3010->GetXaxis()->SetLabelSize(0.05);
  378. Graph_Graph3010->GetXaxis()->SetTitleSize(0.06);
  379. Graph_Graph3010->GetXaxis()->SetTitleOffset(1);
  380. Graph_Graph3010->GetYaxis()->SetLabelOffset(0.01);
  381. Graph_Graph3010->GetYaxis()->SetLabelSize(0.05);
  382. Graph_Graph3010->GetYaxis()->SetTitleSize(0.06);
  383. Graph_Graph3010->GetYaxis()->SetTitleOffset(1.3);
  384. Graph_Graph3010->GetZaxis()->SetLabelSize(0.05);
  385. Graph_Graph3010->GetZaxis()->SetTitleSize(0.06);
  386. Graph_Graph3010->GetZaxis()->SetTitleOffset(1);
  387. grae->SetHistogram(Graph_Graph3010);
  388. grae->Draw("p");
  389. TLatex * tex = new TLatex(0.32,0.88,"Au+Au #sqrt{s_{NN}}=200 GeV");
  390. tex->SetNDC();
  391. tex->SetTextSize(0.08);
  392. tex->SetLineWidth(2);
  393. tex->Draw();
  394. tex = new TLatex(0.23,0.75,"#pi^{#pm}");
  395. tex->SetNDC();
  396. tex->SetTextSize(0.1);
  397. tex->SetLineWidth(2);
  398. tex->Draw();
  399. TLegend *leg = new TLegend(0.22,0.015,0.89,0.15,NULL,"brNDC");
  400. leg->SetBorderSize(0);
  401. leg->SetTextFont(62);
  402. leg->SetTextSize(0.07);
  403. leg->SetLineColor(1);
  404. leg->SetLineStyle(1);
  405. leg->SetLineWidth(3);
  406. leg->SetFillColor(0);
  407. leg->SetFillStyle(1001);
  408. TLegendEntry *entry=leg->AddEntry("Graph1","v_{2}(EP,#Delta#eta-gap=0.1)","p");
  409. entry->SetLineColor(1);
  410. entry->SetLineStyle(1);
  411. entry->SetLineWidth(1);
  412. entry->SetMarkerColor(1);
  413. entry->SetMarkerStyle(20);
  414. entry->SetMarkerSize(1.6);
  415. entry->SetTextFont(62);
  416. leg->Draw();
  417. padL30->Modified();
  418. canv3->cd();
  419. // ------------>Primitives in pad: padM30
  420. TPad *padM30 = new TPad("padM30", "kaon 3 0",0.375,0.5454,0.6875,1);
  421. padM30->Draw();
  422. padM30->cd();
  423. padM30->Range(0.12,-0.029,3.42,0.171);
  424. padM30->SetFillColor(0);
  425. padM30->SetBorderMode(0);
  426. padM30->SetBorderSize(0);
  427. padM30->SetTickx(1);
  428. padM30->SetTicky(1);
  429. padM30->SetLeftMargin(0);
  430. padM30->SetRightMargin(0);
  431. padM30->SetTopMargin(0.01);
  432. padM30->SetBottomMargin(0);
  433. padM30->SetFrameFillColor(10);
  434. padM30->SetFrameLineWidth(3);
  435. padM30->SetFrameFillColor(10);
  436. padM30->SetFrameLineWidth(3);
  437. Double_t Graph0_fx1039[14] = {
  438. 0.4,
  439. 0.6,
  440. 0.8,
  441. 1,
  442. 1.2,
  443. 1.4,
  444. 1.6,
  445. 1.8,
  446. 2,
  447. 2.2,
  448. 2.4,
  449. 2.6,
  450. 2.8,
  451. 3};
  452. Double_t Graph0_fy1039[14] = {
  453. 0.002914519,
  454. 0.009505857,
  455. 0.01915024,
  456. 0.03274155,
  457. 0.04555643,
  458. 0.055074,
  459. 0.06434523,
  460. 0.07032296,
  461. 0.0717638,
  462. 0.07916871,
  463. 0.08333475,
  464. 0.0941258,
  465. 0.08601411,
  466. 0.09010463};
  467. Double_t Graph0_fex1039[14] = {
  468. 0.06,
  469. 0.06,
  470. 0.06,
  471. 0.06,
  472. 0.06,
  473. 0.06,
  474. 0.06,
  475. 0.06,
  476. 0.06,
  477. 0.06,
  478. 0.06,
  479. 0.06,
  480. 0.06,
  481. 0.06};
  482. Double_t Graph0_fey1039[14] = {
  483. 0.000145726,
  484. 0.0004752929,
  485. 0.0009575119,
  486. 0.001637078,
  487. 0.002277822,
  488. 0.0027537,
  489. 0.003217261,
  490. 0.003516148,
  491. 0.00358819,
  492. 0.003958435,
  493. 0.004166737,
  494. 0.00470629,
  495. 0.004300706,
  496. 0.004505232};
  497. gre = new TGraphErrors(14,Graph0_fx1039,Graph0_fy1039,Graph0_fex1039,Graph0_fey1039);
  498. gre->SetName("Graph0");
  499. gre->SetTitle("Graph");
  500. ci = TColor::GetColor("#333333");
  501. gre->SetFillColor(ci);
  502. gre->SetFillStyle(3001);
  503. gre->SetLineWidth(3);
  504. gre->SetMarkerSize(0);
  505. TH1F *Graph_Graph01039 = new TH1F("Graph_Graph01039","Graph",100,0.12,3.42);
  506. Graph_Graph01039->SetMinimum(-0.029);
  507. Graph_Graph01039->SetMaximum(0.169);
  508. Graph_Graph01039->SetDirectory(0);
  509. Graph_Graph01039->SetStats(0);
  510. ci = TColor::GetColor("#ff0000");
  511. Graph_Graph01039->SetLineColor(ci);
  512. Graph_Graph01039->SetLineWidth(3);
  513. Graph_Graph01039->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  514. Graph_Graph01039->GetXaxis()->SetLabelSize(0.05);
  515. Graph_Graph01039->GetXaxis()->SetTitleSize(0.06);
  516. Graph_Graph01039->GetXaxis()->SetTitleOffset(1);
  517. Graph_Graph01039->GetYaxis()->SetTitle("v_{3}");
  518. Graph_Graph01039->GetYaxis()->SetLabelOffset(0.01);
  519. Graph_Graph01039->GetYaxis()->SetLabelSize(0.05);
  520. Graph_Graph01039->GetYaxis()->SetTitleSize(0.06);
  521. Graph_Graph01039->GetYaxis()->SetTitleOffset(1.3);
  522. Graph_Graph01039->GetZaxis()->SetLabelSize(0.05);
  523. Graph_Graph01039->GetZaxis()->SetTitleSize(0.06);
  524. Graph_Graph01039->GetZaxis()->SetTitleOffset(1);
  525. gre->SetHistogram(Graph_Graph01039);
  526. gre->Draw("a2");
  527. Double_t Graph1_fx1040[14] = {
  528. 0.4,
  529. 0.6,
  530. 0.8,
  531. 1,
  532. 1.2,
  533. 1.4,
  534. 1.6,
  535. 1.8,
  536. 2,
  537. 2.2,
  538. 2.4,
  539. 2.6,
  540. 2.8,
  541. 3};
  542. Double_t Graph1_fy1040[14] = {
  543. 0.002914519,
  544. 0.009505857,
  545. 0.01915024,
  546. 0.03274155,
  547. 0.04555643,
  548. 0.055074,
  549. 0.06434523,
  550. 0.07032296,
  551. 0.0717638,
  552. 0.07916871,
  553. 0.08333475,
  554. 0.0941258,
  555. 0.08601411,
  556. 0.09010463};
  557. Double_t Graph1_fex1040[14] = {
  558. 0,
  559. 0,
  560. 0,
  561. 0,
  562. 0,
  563. 0,
  564. 0,
  565. 0,
  566. 0,
  567. 0,
  568. 0,
  569. 0,
  570. 0,
  571. 0};
  572. Double_t Graph1_fey1040[14] = {
  573. 0.0003043268,
  574. 0.000267767,
  575. 0.00031333,
  576. 0.0003162502,
  577. 0.0005266497,
  578. 0.0006988945,
  579. 0.0009427404,
  580. 0.001681781,
  581. 0.001291553,
  582. 0.002297779,
  583. 0.003135244,
  584. 0.00436418,
  585. 0.006168933,
  586. 0.009021009};
  587. gre = new TGraphErrors(14,Graph1_fx1040,Graph1_fy1040,Graph1_fex1040,Graph1_fey1040);
  588. gre->SetName("Graph1");
  589. gre->SetTitle("Graph");
  590. gre->SetFillStyle(1000);
  591. gre->SetLineWidth(3);
  592. gre->SetMarkerStyle(20);
  593. gre->SetMarkerSize(1.6);
  594. TH1F *Graph_Graph11040 = new TH1F("Graph_Graph11040","Graph",100,0.14,3.26);
  595. Graph_Graph11040->SetMinimum(-0.029);
  596. Graph_Graph11040->SetMaximum(0.169);
  597. Graph_Graph11040->SetDirectory(0);
  598. Graph_Graph11040->SetStats(0);
  599. ci = TColor::GetColor("#ff0000");
  600. Graph_Graph11040->SetLineColor(ci);
  601. Graph_Graph11040->SetLineWidth(3);
  602. Graph_Graph11040->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  603. Graph_Graph11040->GetXaxis()->SetLabelSize(0.05);
  604. Graph_Graph11040->GetXaxis()->SetTitleSize(0.06);
  605. Graph_Graph11040->GetXaxis()->SetTitleOffset(1);
  606. Graph_Graph11040->GetYaxis()->SetTitle("v_{3}");
  607. Graph_Graph11040->GetYaxis()->SetLabelOffset(0.01);
  608. Graph_Graph11040->GetYaxis()->SetLabelSize(0.05);
  609. Graph_Graph11040->GetYaxis()->SetTitleSize(0.06);
  610. Graph_Graph11040->GetYaxis()->SetTitleOffset(1.3);
  611. Graph_Graph11040->GetZaxis()->SetLabelSize(0.05);
  612. Graph_Graph11040->GetZaxis()->SetTitleSize(0.06);
  613. Graph_Graph11040->GetZaxis()->SetTitleOffset(1);
  614. gre->SetHistogram(Graph_Graph11040);
  615. gre->Draw("p");
  616. Double_t _fx3011[18] = {
  617. 0.432718,
  618. 0.602588,
  619. 0.797838,
  620. 0.996625,
  621. 1.19614,
  622. 1.39539,
  623. 1.59558,
  624. 1.79546,
  625. 1.99508,
  626. 2.19541,
  627. 2.39532,
  628. 2.59488,
  629. 2.79488,
  630. 2.9951,
  631. 3.19652,
  632. 3.3945,
  633. 3.59507,
  634. 3.79651};
  635. Double_t _fy3011[18] = {
  636. 0.00369341,
  637. 0.0109263,
  638. 0.0216568,
  639. 0.0336091,
  640. 0.0464036,
  641. 0.0568704,
  642. 0.0676926,
  643. 0.0760837,
  644. 0.084266,
  645. 0.0905217,
  646. 0.094738,
  647. 0.0995685,
  648. 0.0985816,
  649. 0.104007,
  650. 0.0967349,
  651. 0.0966264,
  652. 0.101498,
  653. 0.0944468};
  654. Double_t _felx3011[18] = {
  655. 0,
  656. 0,
  657. 0,
  658. 0,
  659. 0,
  660. 0,
  661. 0,
  662. 0,
  663. 0,
  664. 0,
  665. 0,
  666. 0,
  667. 0,
  668. 0,
  669. 0,
  670. 0,
  671. 0,
  672. 0};
  673. Double_t _fely3011[18] = {
  674. 0.003295744,
  675. 0.003108395,
  676. 0.003094671,
  677. 0.003129859,
  678. 0.003208055,
  679. 0.003327162,
  680. 0.003482932,
  681. 0.003682668,
  682. 0.003923074,
  683. 0.004201645,
  684. 0.004517144,
  685. 0.004879328,
  686. 0.005282032,
  687. 0.005729515,
  688. 0.006251517,
  689. 0.00682733,
  690. 0.007478882,
  691. 0.008255875};
  692. Double_t _fehx3011[18] = {
  693. 0,
  694. 0,
  695. 0,
  696. 0,
  697. 0,
  698. 0,
  699. 0,
  700. 0,
  701. 0,
  702. 0,
  703. 0,
  704. 0,
  705. 0,
  706. 0,
  707. 0,
  708. 0,
  709. 0,
  710. 0};
  711. Double_t _fehy3011[18] = {
  712. 0.003295744,
  713. 0.003108395,
  714. 0.003094671,
  715. 0.003129859,
  716. 0.003208055,
  717. 0.003327162,
  718. 0.003482932,
  719. 0.003682668,
  720. 0.003923074,
  721. 0.004201645,
  722. 0.004517144,
  723. 0.004879328,
  724. 0.005282032,
  725. 0.005729515,
  726. 0.006251517,
  727. 0.00682733,
  728. 0.007478882,
  729. 0.008255875};
  730. grae = new TGraphAsymmErrors(18,_fx3011,_fy3011,_felx3011,_fehx3011,_fely3011,_fehy3011);
  731. grae->SetName("");
  732. grae->SetTitle("");
  733. grae->SetFillStyle(1000);
  734. grae->SetLineColor(2);
  735. grae->SetLineWidth(3);
  736. grae->SetMarkerColor(2);
  737. grae->SetMarkerStyle(21);
  738. grae->SetMarkerSize(1.6);
  739. TH1F *Graph_Graph3011 = new TH1F("Graph_Graph3011","",100,0.0963388,4.132889);
  740. Graph_Graph3011->SetMinimum(0.0003578996);
  741. Graph_Graph3011->SetMaximum(0.1206704);
  742. Graph_Graph3011->SetDirectory(0);
  743. Graph_Graph3011->SetStats(0);
  744. ci = TColor::GetColor("#ff0000");
  745. Graph_Graph3011->SetLineColor(ci);
  746. Graph_Graph3011->SetLineWidth(3);
  747. Graph_Graph3011->GetXaxis()->SetLabelSize(0.05);
  748. Graph_Graph3011->GetXaxis()->SetTitleSize(0.06);
  749. Graph_Graph3011->GetXaxis()->SetTitleOffset(1);
  750. Graph_Graph3011->GetYaxis()->SetLabelOffset(0.01);
  751. Graph_Graph3011->GetYaxis()->SetLabelSize(0.05);
  752. Graph_Graph3011->GetYaxis()->SetTitleSize(0.06);
  753. Graph_Graph3011->GetYaxis()->SetTitleOffset(1.3);
  754. Graph_Graph3011->GetZaxis()->SetLabelSize(0.05);
  755. Graph_Graph3011->GetZaxis()->SetTitleSize(0.06);
  756. Graph_Graph3011->GetZaxis()->SetTitleOffset(1);
  757. grae->SetHistogram(Graph_Graph3011);
  758. grae->Draw("p");
  759. tex = new TLatex(0.03,0.75,"K^{#pm}");
  760. tex->SetNDC();
  761. tex->SetTextSize(0.1);
  762. tex->SetLineWidth(2);
  763. tex->Draw();
  764. tex = new TLatex(0.42,0.88,"20-30%");
  765. tex->SetNDC();
  766. tex->SetTextSize(0.1);
  767. tex->SetLineWidth(2);
  768. tex->Draw();
  769. leg = new TLegend(0.22,0.015,0.89,0.15,NULL,"brNDC");
  770. leg->SetBorderSize(0);
  771. leg->SetTextFont(62);
  772. leg->SetTextSize(0.07);
  773. leg->SetLineColor(1);
  774. leg->SetLineStyle(1);
  775. leg->SetLineWidth(3);
  776. leg->SetFillColor(0);
  777. leg->SetFillStyle(1001);
  778. entry=leg->AddEntry("","v_{2}(SP,ALICE)","p");
  779. entry->SetLineColor(1);
  780. entry->SetLineStyle(1);
  781. entry->SetLineWidth(1);
  782. entry->SetMarkerColor(2);
  783. entry->SetMarkerStyle(21);
  784. entry->SetMarkerSize(1.6);
  785. entry->SetTextFont(62);
  786. leg->Draw();
  787. padM30->Modified();
  788. canv3->cd();
  789. // ------------>Primitives in pad: padR30
  790. TPad *padR30 = new TPad("padR30", "proton 3 0",0.6875,0.5454,1,1);
  791. padR30->Draw();
  792. padR30->cd();
  793. padR30->Range(0.12,-0.029,3.453333,0.171);
  794. padR30->SetFillColor(0);
  795. padR30->SetBorderMode(0);
  796. padR30->SetBorderSize(0);
  797. padR30->SetTickx(1);
  798. padR30->SetTicky(1);
  799. padR30->SetLeftMargin(0);
  800. padR30->SetRightMargin(0.01);
  801. padR30->SetTopMargin(0.01);
  802. padR30->SetBottomMargin(0);
  803. padR30->SetFrameFillColor(10);
  804. padR30->SetFrameLineWidth(3);
  805. padR30->SetFrameFillColor(10);
  806. padR30->SetFrameLineWidth(3);
  807. Double_t Graph0_fx1041[15] = {
  808. 0.4,
  809. 0.6,
  810. 0.8,
  811. 1,
  812. 1.2,
  813. 1.4,
  814. 1.6,
  815. 1.8,
  816. 2,
  817. 2.2,
  818. 2.4,
  819. 2.6,
  820. 2.8,
  821. 3,
  822. 3.2};
  823. Double_t Graph0_fy1041[15] = {
  824. -0.0008103451,
  825. 0.003424246,
  826. 0.009168065,
  827. 0.0224639,
  828. 0.03929735,
  829. 0.05153478,
  830. 0.0672125,
  831. 0.0755634,
  832. 0.08539272,
  833. 0.1027305,
  834. 0.1093076,
  835. 0.1200599,
  836. 0.1259744,
  837. 0.1483802,
  838. 0.1400103};
  839. Double_t Graph0_fex1041[15] = {
  840. 0.06,
  841. 0.06,
  842. 0.06,
  843. 0.06,
  844. 0.06,
  845. 0.06,
  846. 0.06,
  847. 0.06,
  848. 0.06,
  849. 0.06,
  850. 0.06,
  851. 0.06,
  852. 0.06,
  853. 0.06,
  854. 0.06};
  855. Double_t Graph0_fey1041[15] = {
  856. -4.051726e-05,
  857. 0.0001712123,
  858. 0.0004584033,
  859. 0.001123195,
  860. 0.001964868,
  861. 0.002576739,
  862. 0.003360625,
  863. 0.00377817,
  864. 0.004269636,
  865. 0.005136527,
  866. 0.005465378,
  867. 0.006002993,
  868. 0.006298721,
  869. 0.00741901,
  870. 0.007000513};
  871. gre = new TGraphErrors(15,Graph0_fx1041,Graph0_fy1041,Graph0_fex1041,Graph0_fey1041);
  872. gre->SetName("Graph0");
  873. gre->SetTitle("Graph");
  874. ci = TColor::GetColor("#333333");
  875. gre->SetFillColor(ci);
  876. gre->SetFillStyle(3001);
  877. gre->SetLineWidth(3);
  878. gre->SetMarkerSize(0);
  879. TH1F *Graph_Graph01041 = new TH1F("Graph_Graph01041","Graph",100,0.12,3.42);
  880. Graph_Graph01041->SetMinimum(-0.029);
  881. Graph_Graph01041->SetMaximum(0.169);
  882. Graph_Graph01041->SetDirectory(0);
  883. Graph_Graph01041->SetStats(0);
  884. ci = TColor::GetColor("#ff0000");
  885. Graph_Graph01041->SetLineColor(ci);
  886. Graph_Graph01041->SetLineWidth(3);
  887. Graph_Graph01041->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  888. Graph_Graph01041->GetXaxis()->SetLabelSize(0.05);
  889. Graph_Graph01041->GetXaxis()->SetTitleSize(0.06);
  890. Graph_Graph01041->GetXaxis()->SetTitleOffset(1);
  891. Graph_Graph01041->GetYaxis()->SetTitle("v_{3}");
  892. Graph_Graph01041->GetYaxis()->SetLabelOffset(0.01);
  893. Graph_Graph01041->GetYaxis()->SetLabelSize(0.05);
  894. Graph_Graph01041->GetYaxis()->SetTitleSize(0.06);
  895. Graph_Graph01041->GetYaxis()->SetTitleOffset(1.3);
  896. Graph_Graph01041->GetZaxis()->SetLabelSize(0.05);
  897. Graph_Graph01041->GetZaxis()->SetTitleSize(0.06);
  898. Graph_Graph01041->GetZaxis()->SetTitleOffset(1);
  899. gre->SetHistogram(Graph_Graph01041);
  900. gre->Draw("a2");
  901. Double_t Graph1_fx1042[15] = {
  902. 0.4,
  903. 0.6,
  904. 0.8,
  905. 1,
  906. 1.2,
  907. 1.4,
  908. 1.6,
  909. 1.8,
  910. 2,
  911. 2.2,
  912. 2.4,
  913. 2.6,
  914. 2.8,
  915. 3,
  916. 3.2};
  917. Double_t Graph1_fy1042[15] = {
  918. -0.0008103451,
  919. 0.003424246,
  920. 0.009168065,
  921. 0.0224639,
  922. 0.03929735,
  923. 0.05153478,
  924. 0.0672125,
  925. 0.0755634,
  926. 0.08539272,
  927. 0.1027305,
  928. 0.1093076,
  929. 0.1200599,
  930. 0.1259744,
  931. 0.1483802,
  932. 0.1400103};
  933. Double_t Graph1_fex1042[15] = {
  934. 0,
  935. 0,
  936. 0,
  937. 0,
  938. 0,
  939. 0,
  940. 0,
  941. 0,
  942. 0,
  943. 0,
  944. 0,
  945. 0,
  946. 0,
  947. 0,
  948. 0};
  949. Double_t Graph1_fey1042[15] = {
  950. 0.0007221116,
  951. 0.0003968405,
  952. 0.0003516716,
  953. 0.000318979,
  954. 0.0004801225,
  955. 0.0005611812,
  956. 0.0006784395,
  957. 0.00112953,
  958. 0.0008178127,
  959. 0.00138137,
  960. 0.0018554,
  961. 0.00259715,
  962. 0.003727536,
  963. 0.005589155,
  964. 0.009382453};
  965. gre = new TGraphErrors(15,Graph1_fx1042,Graph1_fy1042,Graph1_fex1042,Graph1_fey1042);
  966. gre->SetName("Graph1");
  967. gre->SetTitle("Graph");
  968. gre->SetFillStyle(1000);
  969. gre->SetLineWidth(3);
  970. gre->SetMarkerStyle(20);
  971. gre->SetMarkerSize(1.6);
  972. TH1F *Graph_Graph11042 = new TH1F("Graph_Graph11042","Graph",100,0.12,3.48);
  973. Graph_Graph11042->SetMinimum(-0.029);
  974. Graph_Graph11042->SetMaximum(0.169);
  975. Graph_Graph11042->SetDirectory(0);
  976. Graph_Graph11042->SetStats(0);
  977. ci = TColor::GetColor("#ff0000");
  978. Graph_Graph11042->SetLineColor(ci);
  979. Graph_Graph11042->SetLineWidth(3);
  980. Graph_Graph11042->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  981. Graph_Graph11042->GetXaxis()->SetLabelSize(0.05);
  982. Graph_Graph11042->GetXaxis()->SetTitleSize(0.06);
  983. Graph_Graph11042->GetXaxis()->SetTitleOffset(1);
  984. Graph_Graph11042->GetYaxis()->SetTitle("v_{3}");
  985. Graph_Graph11042->GetYaxis()->SetLabelOffset(0.01);
  986. Graph_Graph11042->GetYaxis()->SetLabelSize(0.05);
  987. Graph_Graph11042->GetYaxis()->SetTitleSize(0.06);
  988. Graph_Graph11042->GetYaxis()->SetTitleOffset(1.3);
  989. Graph_Graph11042->GetZaxis()->SetLabelSize(0.05);
  990. Graph_Graph11042->GetZaxis()->SetTitleSize(0.06);
  991. Graph_Graph11042->GetZaxis()->SetTitleOffset(1);
  992. gre->SetHistogram(Graph_Graph11042);
  993. gre->Draw("p");
  994. Double_t _fx3012[23] = {
  995. 0.523065,
  996. 0.702382,
  997. 0.897963,
  998. 1.09642,
  999. 1.29563,
  1000. 1.49606,
  1001. 1.69551,
  1002. 1.89542,
  1003. 2.0953,
  1004. 2.29599,
  1005. 2.49571,
  1006. 2.69551,
  1007. 2.89568,
  1008. 3.09536,
  1009. 3.29569,
  1010. 3.49635,
  1011. 3.6966,
  1012. 3.89389,
  1013. 4.17954,
  1014. 4.58488,
  1015. 4.98416,
  1016. 5.38658,
  1017. 5.73584};
  1018. Double_t _fy3012[23] = {
  1019. -0.00141419,
  1020. 0.00150134,
  1021. 0.00671786,
  1022. 0.0145913,
  1023. 0.0258332,
  1024. 0.0386239,
  1025. 0.0516592,
  1026. 0.0656587,
  1027. 0.0805772,
  1028. 0.09372,
  1029. 0.109325,
  1030. 0.114537,
  1031. 0.125864,
  1032. 0.128702,
  1033. 0.140323,
  1034. 0.138731,
  1035. 0.151587,
  1036. 0.142515,
  1037. 0.134319,
  1038. 0.123995,
  1039. 0.117352,
  1040. 0.0848394,
  1041. 0.0987809};
  1042. Double_t _felx3012[23] = {
  1043. 0,
  1044. 0,
  1045. 0,
  1046. 0,
  1047. 0,
  1048. 0,
  1049. 0,
  1050. 0,
  1051. 0,
  1052. 0,
  1053. 0,
  1054. 0,
  1055. 0,
  1056. 0,
  1057. 0,
  1058. 0,
  1059. 0,
  1060. 0,
  1061. 0,
  1062. 0,
  1063. 0,
  1064. 0,
  1065. 0};
  1066. Double_t _fely3012[23] = {
  1067. 0.004276869,
  1068. 0.003548704,
  1069. 0.003431757,
  1070. 0.003309862,
  1071. 0.003274206,
  1072. 0.003308473,
  1073. 0.003364515,
  1074. 0.003449438,
  1075. 0.003570734,
  1076. 0.003734811,
  1077. 0.003958226,
  1078. 0.004268266,
  1079. 0.004695093,
  1080. 0.005216613,
  1081. 0.005878442,
  1082. 0.006756135,
  1083. 0.00774102,
  1084. 0.008946116,
  1085. 0.008208253,
  1086. 0.01052302,
  1087. 0.01342427,
  1088. 0.01651395,
  1089. 0.02252932};
  1090. Double_t _fehx3012[23] = {
  1091. 0,
  1092. 0,
  1093. 0,
  1094. 0,
  1095. 0,
  1096. 0,
  1097. 0,
  1098. 0,
  1099. 0,
  1100. 0,
  1101. 0,
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 0,
  1106. 0,
  1107. 0,
  1108. 0,
  1109. 0,
  1110. 0,
  1111. 0,
  1112. 0,
  1113. 0};
  1114. Double_t _fehy3012[23] = {
  1115. 0.004276869,
  1116. 0.003548704,
  1117. 0.003431757,
  1118. 0.003309862,
  1119. 0.003274206,
  1120. 0.003308473,
  1121. 0.003364515,
  1122. 0.003449438,
  1123. 0.003570734,
  1124. 0.003734811,
  1125. 0.003958226,
  1126. 0.004268266,
  1127. 0.004695093,
  1128. 0.005216613,
  1129. 0.005878442,
  1130. 0.006756135,
  1131. 0.00774102,
  1132. 0.008946116,
  1133. 0.008208253,
  1134. 0.01052302,
  1135. 0.01342427,
  1136. 0.01651395,
  1137. 0.02252932};
  1138. grae = new TGraphAsymmErrors(23,_fx3012,_fy3012,_felx3012,_fehx3012,_fely3012,_fehy3012);
  1139. grae->SetName("");
  1140. grae->SetTitle("");
  1141. grae->SetFillStyle(1000);
  1142. grae->SetLineColor(2);
  1143. grae->SetLineWidth(3);
  1144. grae->SetMarkerColor(2);
  1145. grae->SetMarkerStyle(21);
  1146. grae->SetMarkerSize(1.6);
  1147. TH1F *Graph_Graph3012 = new TH1F("Graph_Graph3012","",100,0.0017875,6.257117);
  1148. Graph_Graph3012->SetMinimum(-0.02219297);
  1149. Graph_Graph3012->SetMaximum(0.1758299);
  1150. Graph_Graph3012->SetDirectory(0);
  1151. Graph_Graph3012->SetStats(0);
  1152. ci = TColor::GetColor("#ff0000");
  1153. Graph_Graph3012->SetLineColor(ci);
  1154. Graph_Graph3012->SetLineWidth(3);
  1155. Graph_Graph3012->GetXaxis()->SetLabelSize(0.05);
  1156. Graph_Graph3012->GetXaxis()->SetTitleSize(0.06);
  1157. Graph_Graph3012->GetXaxis()->SetTitleOffset(1);
  1158. Graph_Graph3012->GetYaxis()->SetLabelOffset(0.01);
  1159. Graph_Graph3012->GetYaxis()->SetLabelSize(0.05);
  1160. Graph_Graph3012->GetYaxis()->SetTitleSize(0.06);
  1161. Graph_Graph3012->GetYaxis()->SetTitleOffset(1.3);
  1162. Graph_Graph3012->GetZaxis()->SetLabelSize(0.05);
  1163. Graph_Graph3012->GetZaxis()->SetTitleSize(0.06);
  1164. Graph_Graph3012->GetZaxis()->SetTitleOffset(1);
  1165. grae->SetHistogram(Graph_Graph3012);
  1166. grae->Draw("p");
  1167. tex = new TLatex(0.03,0.85,"STAR Preliminary");
  1168. tex->SetNDC();
  1169. tex->SetTextSize(0.1);
  1170. tex->SetLineWidth(2);
  1171. tex->Draw();
  1172. tex = new TLatex(0.03,0.75,"p+#bar{p}");
  1173. tex->SetNDC();
  1174. tex->SetTextSize(0.1);
  1175. tex->SetLineWidth(2);
  1176. tex->Draw();
  1177. padR30->Modified();
  1178. canv3->cd();
  1179. // ------------>Primitives in pad: padL31
  1180. TPad *padL31 = new TPad("padL31", "pion 3 1",0,0,0.375,0.5454);
  1181. padL31->Draw();
  1182. padL31->cd();
  1183. padL31->Range(-0.705,-1.225,3.42,2.65);
  1184. padL31->SetFillColor(0);
  1185. padL31->SetBorderMode(0);
  1186. padL31->SetBorderSize(0);
  1187. padL31->SetTickx(1);
  1188. padL31->SetTicky(1);
  1189. padL31->SetLeftMargin(0.2);
  1190. padL31->SetRightMargin(0);
  1191. padL31->SetTopMargin(0);
  1192. padL31->SetBottomMargin(0.2);
  1193. padL31->SetFrameFillColor(10);
  1194. padL31->SetFrameLineWidth(3);
  1195. padL31->SetFrameFillColor(10);
  1196. padL31->SetFrameLineWidth(3);
  1197. Double_t Graph0_fx1043[14] = {
  1198. 0.4,
  1199. 0.6,
  1200. 0.8,
  1201. 1,
  1202. 1.2,
  1203. 1.4,
  1204. 1.6,
  1205. 1.8,
  1206. 2,
  1207. 2.2,
  1208. 2.4,
  1209. 2.6,
  1210. 2.8,
  1211. 3};
  1212. Double_t Graph0_fy1043[14] = {
  1213. 1,
  1214. 1,
  1215. 1,
  1216. 1,
  1217. 1,
  1218. 1,
  1219. 1,
  1220. 1,
  1221. 1,
  1222. 1,
  1223. 1,
  1224. 1,
  1225. 1,
  1226. 1};
  1227. Double_t Graph0_fex1043[14] = {
  1228. 0,
  1229. 0,
  1230. 0,
  1231. 0,
  1232. 0,
  1233. 0,
  1234. 0,
  1235. 0,
  1236. 0,
  1237. 0,
  1238. 0,
  1239. 0,
  1240. 0,
  1241. 0};
  1242. Double_t Graph0_fey1043[14] = {
  1243. 0.01183158,
  1244. 0.006853657,
  1245. 0.006230529,
  1246. 0.005130836,
  1247. 0.007010669,
  1248. 0.008107469,
  1249. 0.009693483,
  1250. 0.01593918,
  1251. 0.01170244,
  1252. 0.0196083,
  1253. 0.02499063,
  1254. 0.03577791,
  1255. 0.050007,
  1256. 0.06531649};
  1257. gre = new TGraphErrors(14,Graph0_fx1043,Graph0_fy1043,Graph0_fex1043,Graph0_fey1043);
  1258. gre->SetName("Graph0");
  1259. gre->SetTitle("Graph");
  1260. gre->SetFillStyle(1000);
  1261. gre->SetLineWidth(0);
  1262. gre->SetMarkerStyle(20);
  1263. gre->SetMarkerSize(1.6);
  1264. TH1F *Graph_Graph01043 = new TH1F("Graph_Graph01043","Graph",100,0.12,3.42);
  1265. Graph_Graph01043->SetMinimum(-0.45);
  1266. Graph_Graph01043->SetMaximum(2.65);
  1267. Graph_Graph01043->SetDirectory(0);
  1268. Graph_Graph01043->SetStats(0);
  1269. ci = TColor::GetColor("#ff0000");
  1270. Graph_Graph01043->SetLineColor(ci);
  1271. Graph_Graph01043->SetLineWidth(3);
  1272. Graph_Graph01043->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  1273. Graph_Graph01043->GetXaxis()->SetLabelSize(0.07);
  1274. Graph_Graph01043->GetXaxis()->SetTitleSize(0.065);
  1275. Graph_Graph01043->GetXaxis()->SetTitleOffset(1.25);
  1276. Graph_Graph01043->GetYaxis()->SetTitle("v_{3}(ALICE)/v_{3}(STAR)");
  1277. Graph_Graph01043->GetYaxis()->SetLabelOffset(0.01);
  1278. Graph_Graph01043->GetYaxis()->SetLabelSize(0.075);
  1279. Graph_Graph01043->GetYaxis()->SetTitleSize(0.08215839);
  1280. Graph_Graph01043->GetYaxis()->SetTitleOffset(1.1);
  1281. Graph_Graph01043->GetZaxis()->SetLabelSize(0.05);
  1282. Graph_Graph01043->GetZaxis()->SetTitleSize(0.06);
  1283. Graph_Graph01043->GetZaxis()->SetTitleOffset(1);
  1284. gre->SetHistogram(Graph_Graph01043);
  1285. gre->Draw("al");
  1286. Double_t Graph1_fx1044[14] = {
  1287. 0.4,
  1288. 0.6,
  1289. 0.8,
  1290. 1,
  1291. 1.2,
  1292. 1.4,
  1293. 1.6,
  1294. 1.8,
  1295. 2,
  1296. 2.2,
  1297. 2.4,
  1298. 2.6,
  1299. 2.8,
  1300. 3};
  1301. Double_t Graph1_fy1044[14] = {
  1302. 1.638396,
  1303. 1.382035,
  1304. 1.23248,
  1305. 1.119857,
  1306. 1.034665,
  1307. 1.055667,
  1308. 1.066807,
  1309. 1.089533,
  1310. 1.109438,
  1311. 1.118316,
  1312. 1.107786,
  1313. 1.128738,
  1314. 1.12637,
  1315. 1.009038};
  1316. Double_t Graph1_fex1044[14] = {
  1317. 0,
  1318. 0,
  1319. 0,
  1320. 0,
  1321. 0,
  1322. 0,
  1323. 0,
  1324. 0,
  1325. 0,
  1326. 0,
  1327. 0,
  1328. 0,
  1329. 0,
  1330. 0};
  1331. Double_t Graph1_fey1044[14] = {
  1332. 0.4218786,
  1333. 0.1822364,
  1334. 0.1087871,
  1335. 0.07435936,
  1336. 0.05651584,
  1337. 0.0489271,
  1338. 0.04419773,
  1339. 0.04291871,
  1340. 0.04168377,
  1341. 0.04254569,
  1342. 0.04309484,
  1343. 0.04986725,
  1344. 0.05817058,
  1345. 0.0612892};
  1346. gre = new TGraphErrors(14,Graph1_fx1044,Graph1_fy1044,Graph1_fex1044,Graph1_fey1044);
  1347. gre->SetName("Graph1");
  1348. gre->SetTitle("Graph");
  1349. gre->SetFillStyle(1000);
  1350. gre->SetLineColor(2);
  1351. gre->SetLineWidth(3);
  1352. gre->SetMarkerColor(2);
  1353. gre->SetMarkerStyle(21);
  1354. gre->SetMarkerSize(1.6);
  1355. TH1F *Graph_Graph11044 = new TH1F("Graph_Graph11044","Graph",100,0.14,3.26);
  1356. Graph_Graph11044->SetMinimum(0.8364964);
  1357. Graph_Graph11044->SetMaximum(2.171528);
  1358. Graph_Graph11044->SetDirectory(0);
  1359. Graph_Graph11044->SetStats(0);
  1360. ci = TColor::GetColor("#ff0000");
  1361. Graph_Graph11044->SetLineColor(ci);
  1362. Graph_Graph11044->SetLineWidth(3);
  1363. Graph_Graph11044->GetXaxis()->SetLabelSize(0.05);
  1364. Graph_Graph11044->GetXaxis()->SetTitleSize(0.06);
  1365. Graph_Graph11044->GetXaxis()->SetTitleOffset(1);
  1366. Graph_Graph11044->GetYaxis()->SetLabelOffset(0.01);
  1367. Graph_Graph11044->GetYaxis()->SetLabelSize(0.05);
  1368. Graph_Graph11044->GetYaxis()->SetTitleSize(0.06);
  1369. Graph_Graph11044->GetYaxis()->SetTitleOffset(1.3);
  1370. Graph_Graph11044->GetZaxis()->SetLabelSize(0.05);
  1371. Graph_Graph11044->GetZaxis()->SetTitleSize(0.06);
  1372. Graph_Graph11044->GetZaxis()->SetTitleOffset(1);
  1373. gre->SetHistogram(Graph_Graph11044);
  1374. gre->Draw("p");
  1375. TLine *line = new TLine(0.12,1,3.42,1);
  1376. line->SetLineWidth(3);
  1377. line->Draw();
  1378. line = new TLine(0.12,0.9,3.42,0.9);
  1379. line->SetLineStyle(2);
  1380. line->SetLineWidth(2);
  1381. line->Draw();
  1382. line = new TLine(0.12,1.1,3.42,1.1);
  1383. line->SetLineStyle(2);
  1384. line->SetLineWidth(2);
  1385. line->Draw();
  1386. padL31->Modified();
  1387. canv3->cd();
  1388. // ------------>Primitives in pad: padM31
  1389. TPad *padM31 = new TPad("padM31", "kaon 3 1",0.375,0,0.6875,0.5454);
  1390. padM31->Draw();
  1391. padM31->cd();
  1392. padM31->Range(0.12,-1.225,3.42,2.65);
  1393. padM31->SetFillColor(0);
  1394. padM31->SetBorderMode(0);
  1395. padM31->SetBorderSize(0);
  1396. padM31->SetTickx(1);
  1397. padM31->SetTicky(1);
  1398. padM31->SetLeftMargin(0);
  1399. padM31->SetRightMargin(0);
  1400. padM31->SetTopMargin(0);
  1401. padM31->SetBottomMargin(0.2);
  1402. padM31->SetFrameFillColor(10);
  1403. padM31->SetFrameLineWidth(3);
  1404. padM31->SetFrameFillColor(10);
  1405. padM31->SetFrameLineWidth(3);
  1406. Double_t Graph0_fx1045[14] = {
  1407. 0.4,
  1408. 0.6,
  1409. 0.8,
  1410. 1,
  1411. 1.2,
  1412. 1.4,
  1413. 1.6,
  1414. 1.8,
  1415. 2,
  1416. 2.2,
  1417. 2.4,
  1418. 2.6,
  1419. 2.8,
  1420. 3};
  1421. Double_t Graph0_fy1045[14] = {
  1422. 1,
  1423. 1,
  1424. 1,
  1425. 1,
  1426. 1,
  1427. 1,
  1428. 1,
  1429. 1,
  1430. 1,
  1431. 1,
  1432. 1,
  1433. 1,
  1434. 1,
  1435. 1};
  1436. Double_t Graph0_fex1045[14] = {
  1437. 0,
  1438. 0,
  1439. 0,
  1440. 0,
  1441. 0,
  1442. 0,
  1443. 0,
  1444. 0,
  1445. 0,
  1446. 0,
  1447. 0,
  1448. 0,
  1449. 0,
  1450. 0};
  1451. Double_t Graph0_fey1045[14] = {
  1452. 0.1476686,
  1453. 0.03983646,
  1454. 0.02313891,
  1455. 0.01365987,
  1456. 0.01634885,
  1457. 0.01794651,
  1458. 0.02072005,
  1459. 0.03382106,
  1460. 0.025452,
  1461. 0.04104589,
  1462. 0.05320595,
  1463. 0.06557057,
  1464. 0.1014274,
  1465. 0.1415869};
  1466. gre = new TGraphErrors(14,Graph0_fx1045,Graph0_fy1045,Graph0_fex1045,Graph0_fey1045);
  1467. gre->SetName("Graph0");
  1468. gre->SetTitle("Graph");
  1469. gre->SetFillStyle(1000);
  1470. gre->SetLineWidth(0);
  1471. gre->SetMarkerStyle(20);
  1472. gre->SetMarkerSize(1.6);
  1473. TH1F *Graph_Graph01045 = new TH1F("Graph_Graph01045","Graph",100,0.12,3.42);
  1474. Graph_Graph01045->SetMinimum(-0.45);
  1475. Graph_Graph01045->SetMaximum(2.65);
  1476. Graph_Graph01045->SetDirectory(0);
  1477. Graph_Graph01045->SetStats(0);
  1478. ci = TColor::GetColor("#ff0000");
  1479. Graph_Graph01045->SetLineColor(ci);
  1480. Graph_Graph01045->SetLineWidth(3);
  1481. Graph_Graph01045->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  1482. Graph_Graph01045->GetXaxis()->SetLabelSize(0.07);
  1483. Graph_Graph01045->GetXaxis()->SetTitleSize(0.065);
  1484. Graph_Graph01045->GetXaxis()->SetTitleOffset(1.25);
  1485. Graph_Graph01045->GetYaxis()->SetTitle("v_{3}(ALICE)/v_{3}(STAR)");
  1486. Graph_Graph01045->GetYaxis()->SetLabelOffset(0.01);
  1487. Graph_Graph01045->GetYaxis()->SetLabelSize(0.075);
  1488. Graph_Graph01045->GetYaxis()->SetTitleSize(0.08215839);
  1489. Graph_Graph01045->GetYaxis()->SetTitleOffset(1.1);
  1490. Graph_Graph01045->GetZaxis()->SetLabelSize(0.05);
  1491. Graph_Graph01045->GetZaxis()->SetTitleSize(0.06);
  1492. Graph_Graph01045->GetZaxis()->SetTitleOffset(1);
  1493. gre->SetHistogram(Graph_Graph01045);
  1494. gre->Draw("al");
  1495. Double_t Graph1_fx1046[14] = {
  1496. 0.4,
  1497. 0.6,
  1498. 0.8,
  1499. 1,
  1500. 1.2,
  1501. 1.4,
  1502. 1.6,
  1503. 1.8,
  1504. 2,
  1505. 2.2,
  1506. 2.4,
  1507. 2.6,
  1508. 2.8,
  1509. 3};
  1510. Double_t Graph1_fy1046[14] = {
  1511. 0.9153154,
  1512. 1.135804,
  1513. 1.137407,
  1514. 1.033127,
  1515. 1.023501,
  1516. 1.037089,
  1517. 1.055342,
  1518. 1.084538,
  1519. 1.176832,
  1520. 1.144712,
  1521. 1.138394,
  1522. 1.057964,
  1523. 1.147161,
  1524. 1.154057};
  1525. Double_t Graph1_fex1046[14] = {
  1526. 0,
  1527. 0,
  1528. 0,
  1529. 0,
  1530. 0,
  1531. 0,
  1532. 0,
  1533. 0,
  1534. 0,
  1535. 0,
  1536. 0,
  1537. 0,
  1538. 0,
  1539. 0};
  1540. Double_t Graph1_fey1046[14] = {
  1541. 1.134834,
  1542. 0.3285593,
  1543. 0.1626677,
  1544. 0.0961123,
  1545. 0.07140647,
  1546. 0.06182948,
  1547. 0.05629395,
  1548. 0.05843902,
  1549. 0.05862599,
  1550. 0.06261366,
  1551. 0.06908315,
  1552. 0.07136808,
  1553. 0.1026651,
  1554. 0.1318826};
  1555. gre = new TGraphErrors(14,Graph1_fx1046,Graph1_fy1046,Graph1_fex1046,Graph1_fey1046);
  1556. gre->SetName("Graph1");
  1557. gre->SetTitle("Graph");
  1558. gre->SetFillStyle(1000);
  1559. gre->SetLineColor(2);
  1560. gre->SetLineWidth(3);
  1561. gre->SetMarkerColor(2);
  1562. gre->SetMarkerStyle(21);
  1563. gre->SetMarkerSize(1.6);
  1564. TH1F *Graph_Graph11046 = new TH1F("Graph_Graph11046","Graph",100,0.14,3.26);
  1565. Graph_Graph11046->SetMinimum(-0.4464848);
  1566. Graph_Graph11046->SetMaximum(2.277116);
  1567. Graph_Graph11046->SetDirectory(0);
  1568. Graph_Graph11046->SetStats(0);
  1569. ci = TColor::GetColor("#ff0000");
  1570. Graph_Graph11046->SetLineColor(ci);
  1571. Graph_Graph11046->SetLineWidth(3);
  1572. Graph_Graph11046->GetXaxis()->SetLabelSize(0.05);
  1573. Graph_Graph11046->GetXaxis()->SetTitleSize(0.06);
  1574. Graph_Graph11046->GetXaxis()->SetTitleOffset(1);
  1575. Graph_Graph11046->GetYaxis()->SetLabelOffset(0.01);
  1576. Graph_Graph11046->GetYaxis()->SetLabelSize(0.05);
  1577. Graph_Graph11046->GetYaxis()->SetTitleSize(0.06);
  1578. Graph_Graph11046->GetYaxis()->SetTitleOffset(1.3);
  1579. Graph_Graph11046->GetZaxis()->SetLabelSize(0.05);
  1580. Graph_Graph11046->GetZaxis()->SetTitleSize(0.06);
  1581. Graph_Graph11046->GetZaxis()->SetTitleOffset(1);
  1582. gre->SetHistogram(Graph_Graph11046);
  1583. gre->Draw("p");
  1584. line = new TLine(0.12,1,3.42,1);
  1585. line->SetLineWidth(3);
  1586. line->Draw();
  1587. line = new TLine(0.12,0.9,3.42,0.9);
  1588. line->SetLineStyle(2);
  1589. line->SetLineWidth(2);
  1590. line->Draw();
  1591. line = new TLine(0.12,1.1,3.42,1.1);
  1592. line->SetLineStyle(2);
  1593. line->SetLineWidth(2);
  1594. line->Draw();
  1595. padM31->Modified();
  1596. canv3->cd();
  1597. // ------------>Primitives in pad: padR31
  1598. TPad *padR31 = new TPad("padR31", "proton 3 1",0.6875,0,1,0.5454);
  1599. padR31->Draw();
  1600. padR31->cd();
  1601. padR31->Range(0.12,-1.225,3.453333,2.65);
  1602. padR31->SetFillColor(0);
  1603. padR31->SetBorderMode(0);
  1604. padR31->SetBorderSize(0);
  1605. padR31->SetTickx(1);
  1606. padR31->SetTicky(1);
  1607. padR31->SetLeftMargin(0);
  1608. padR31->SetRightMargin(0.01);
  1609. padR31->SetTopMargin(0);
  1610. padR31->SetBottomMargin(0.2);
  1611. padR31->SetFrameFillColor(10);
  1612. padR31->SetFrameLineWidth(3);
  1613. padR31->SetFrameFillColor(10);
  1614. padR31->SetFrameLineWidth(3);
  1615. Double_t Graph0_fx1047[14] = {
  1616. 0.6,
  1617. 0.8,
  1618. 1,
  1619. 1.2,
  1620. 1.4,
  1621. 1.6,
  1622. 1.8,
  1623. 2,
  1624. 2.2,
  1625. 2.4,
  1626. 2.6,
  1627. 2.8,
  1628. 3,
  1629. 3.2};
  1630. Double_t Graph0_fy1047[14] = {
  1631. 1,
  1632. 1,
  1633. 1,
  1634. 1,
  1635. 1,
  1636. 1,
  1637. 1,
  1638. 1,
  1639. 1,
  1640. 1,
  1641. 1,
  1642. 1,
  1643. 1,
  1644. 1};
  1645. Double_t Graph0_fex1047[14] = {
  1646. 0,
  1647. 0,
  1648. 0,
  1649. 0,
  1650. 0,
  1651. 0,
  1652. 0,
  1653. 0,
  1654. 0,
  1655. 0,
  1656. 0,
  1657. 0,
  1658. 0,
  1659. 0};
  1660. Double_t Graph0_fey1047[14] = {
  1661. 0.1638951,
  1662. 0.05424687,
  1663. 0.02008131,
  1664. 0.01727841,
  1665. 0.01539989,
  1666. 0.014275,
  1667. 0.02113981,
  1668. 0.01354403,
  1669. 0.01901628,
  1670. 0.02400504,
  1671. 0.03059244,
  1672. 0.04184605,
  1673. 0.0532703,
  1674. 0.09477015};
  1675. gre = new TGraphErrors(14,Graph0_fx1047,Graph0_fy1047,Graph0_fex1047,Graph0_fey1047);
  1676. gre->SetName("Graph0");
  1677. gre->SetTitle("Graph");
  1678. gre->SetFillStyle(1000);
  1679. gre->SetLineWidth(0);
  1680. gre->SetMarkerStyle(20);
  1681. gre->SetMarkerSize(1.6);
  1682. TH1F *Graph_Graph01047 = new TH1F("Graph_Graph01047","Graph",100,0.12,3.42);
  1683. Graph_Graph01047->SetMinimum(-0.45);
  1684. Graph_Graph01047->SetMaximum(2.65);
  1685. Graph_Graph01047->SetDirectory(0);
  1686. Graph_Graph01047->SetStats(0);
  1687. ci = TColor::GetColor("#ff0000");
  1688. Graph_Graph01047->SetLineColor(ci);
  1689. Graph_Graph01047->SetLineWidth(3);
  1690. Graph_Graph01047->GetXaxis()->SetTitle("p_{T} [GeV/c]");
  1691. Graph_Graph01047->GetXaxis()->SetLabelSize(0.07);
  1692. Graph_Graph01047->GetXaxis()->SetTitleSize(0.065);
  1693. Graph_Graph01047->GetXaxis()->SetTitleOffset(1.25);
  1694. Graph_Graph01047->GetYaxis()->SetTitle("v_{3}(ALICE)/v_{3}(STAR)");
  1695. Graph_Graph01047->GetYaxis()->SetLabelOffset(0.01);
  1696. Graph_Graph01047->GetYaxis()->SetLabelSize(0.075);
  1697. Graph_Graph01047->GetYaxis()->SetTitleSize(0.08215839);
  1698. Graph_Graph01047->GetYaxis()->SetTitleOffset(1.1);
  1699. Graph_Graph01047->GetZaxis()->SetLabelSize(0.05);
  1700. Graph_Graph01047->GetZaxis()->SetTitleSize(0.06);
  1701. Graph_Graph01047->GetZaxis()->SetTitleOffset(1);
  1702. gre->SetHistogram(Graph_Graph01047);
  1703. gre->Draw("al");
  1704. Double_t Graph1_fx1048[14] = {
  1705. 0.6,
  1706. 0.8,
  1707. 1,
  1708. 1.2,
  1709. 1.4,
  1710. 1.6,
  1711. 1.8,
  1712. 2,
  1713. 2.2,
  1714. 2.4,
  1715. 2.6,
  1716. 2.8,
  1717. 3,
  1718. 3.2};
  1719. Double_t Graph1_fy1048[14] = {
  1720. -0.1095371,
  1721. 0.4179176,
  1722. 0.4613331,
  1723. 0.5116789,
  1724. 0.6291193,
  1725. 0.6750655,
  1726. 0.777592,
  1727. 0.86296,
  1728. 0.8478637,
  1729. 0.9391462,
  1730. 0.9341409,
  1731. 0.9584026,
  1732. 0.856398,
  1733. 0.9669702};
  1734. Double_t Graph1_fex1048[14] = {
  1735. 0,
  1736. 0,
  1737. 0,
  1738. 0,
  1739. 0,
  1740. 0,
  1741. 0,
  1742. 0,
  1743. 0,
  1744. 0,
  1745. 0,
  1746. 0,
  1747. 0,
  1748. 0};
  1749. Double_t Graph1_fey1048[14] = {
  1750. 1.036424,
  1751. 0.3746595,
  1752. 0.147487,
  1753. 0.08355295,
  1754. 0.06456333,
  1755. 0.05051953,
  1756. 0.04710616,
  1757. 0.04262435,
  1758. 0.03810112,
  1759. 0.03956536,
  1760. 0.04089285,
  1761. 0.04683256,
  1762. 0.04771413,
  1763. 0.07721233};
  1764. gre = new TGraphErrors(14,Graph1_fx1048,Graph1_fy1048,Graph1_fex1048,Graph1_fey1048);
  1765. gre->SetName("Graph1");
  1766. gre->SetTitle("Graph");
  1767. gre->SetFillStyle(1000);
  1768. gre->SetLineColor(2);
  1769. gre->SetLineWidth(3);
  1770. gre->SetMarkerColor(2);
  1771. gre->SetMarkerStyle(21);
  1772. gre->SetMarkerSize(1.6);
  1773. TH1F *Graph_Graph11048 = new TH1F("Graph_Graph11048","Graph",100,0.34,3.46);
  1774. Graph_Graph11048->SetMinimum(-1.364975);
  1775. Graph_Graph11048->SetMaximum(1.263197);
  1776. Graph_Graph11048->SetDirectory(0);
  1777. Graph_Graph11048->SetStats(0);
  1778. ci = TColor::GetColor("#ff0000");
  1779. Graph_Graph11048->SetLineColor(ci);
  1780. Graph_Graph11048->SetLineWidth(3);
  1781. Graph_Graph11048->GetXaxis()->SetLabelSize(0.05);
  1782. Graph_Graph11048->GetXaxis()->SetTitleSize(0.06);
  1783. Graph_Graph11048->GetXaxis()->SetTitleOffset(1);
  1784. Graph_Graph11048->GetYaxis()->SetLabelOffset(0.01);
  1785. Graph_Graph11048->GetYaxis()->SetLabelSize(0.05);
  1786. Graph_Graph11048->GetYaxis()->SetTitleSize(0.06);
  1787. Graph_Graph11048->GetYaxis()->SetTitleOffset(1.3);
  1788. Graph_Graph11048->GetZaxis()->SetLabelSize(0.05);
  1789. Graph_Graph11048->GetZaxis()->SetTitleSize(0.06);
  1790. Graph_Graph11048->GetZaxis()->SetTitleOffset(1);
  1791. gre->SetHistogram(Graph_Graph11048);
  1792. gre->Draw("p");
  1793. line = new TLine(0.12,1,3.42,1);
  1794. line->SetLineWidth(3);
  1795. line->Draw();
  1796. line = new TLine(0.12,0.9,3.42,0.9);
  1797. line->SetLineStyle(2);
  1798. line->SetLineWidth(2);
  1799. line->Draw();
  1800. line = new TLine(0.12,1.1,3.42,1.1);
  1801. line->SetLineStyle(2);
  1802. line->SetLineWidth(2);
  1803. line->Draw();
  1804. padR31->Modified();
  1805. canv3->cd();
  1806. canv3->Modified();
  1807. canv3->cd();
  1808. canv3->SetSelected(canv3);
  1809. }