diff --git a/macros/izvRAN/figIZVBestFits.cxx b/macros/izvRAN/figIZVBestFits.cxx index 50c427395cf4c4892c109a5c947c05639e019799..ee05b2805ee8a0a37c1fac0cb80ee8bcbbee2600 100755 --- a/macros/izvRAN/figIZVBestFits.cxx +++ b/macros/izvRAN/figIZVBestFits.cxx @@ -551,16 +551,17 @@ void figIZVBestFits(Bool_t saveFigs = 0) c1->Update(); TText *t1[12]; - TString panel[12] = {"a)", "b)", "c)", "d)", - "e)", "f)", "g)", "h)", - "i)", "j)", "k)", "l)"}; + TString panel[12] = {"a", "b", "c", "d", + "e", "f", "g", "h", + "i", "j", "k", "l"}; for (Int_t i = 0; i < 12; i++) { c1->cd(i+1); - t1[i] = new TText(0.18,0.87,panel[i].Data()); +// t1[i] = new TText(0.18,0.87,panel[i].Data()); + t1[i] = new TText(0.5,0.92,panel[i].Data()); // t1[i] = new TText(0.5,0.95,panel[i].Data()); t1[i]->SetNDC(); - t1[i]->SetTextFont(132); + t1[i]->SetTextFont(12); t1[i]->SetTextSize(0.07); t1[i]->Draw(); } diff --git a/macros/izvRAN/figIZVCorrGS.cxx b/macros/izvRAN/figIZVCorrGS.cxx index 8e18690d71e69014594c745835d3479ef1d84bda..7c3c9e17a10975bd5784944926fbb2005cd005f7 100755 --- a/macros/izvRAN/figIZVCorrGS.cxx +++ b/macros/izvRAN/figIZVCorrGS.cxx @@ -57,7 +57,7 @@ void figIZVCorrGS(const Bool_t saveFigs = 0) c1->Divide(4, 1, .001, .001); TText *t1[4]; - TString panel[4] = {"a)", "b)", "c)", "d)"}; + TString panel[4] = {"a", "b", "c", "d"}; for (Int_t i = 0; i < 4; i++) { c1->cd(i+1); @@ -87,14 +87,16 @@ void figIZVCorrGS(const Bool_t saveFigs = 0) hExp[i]->Chi2Test(hSim[i], "P"); - t1[i] = new TText(0.18,0.87,panel[i].Data()); +// t1[i] = new TText(0.18,0.87,panel[i].Data()); + t1[i] = new TText(0.5,0.92,panel[i].Data()); t1[i]->SetNDC(); - t1[i]->SetTextFont(132); + t1[i]->SetTextFont(12); t1[i]->SetTextSize(0.07); t1[i]->Draw(); } c1->Update(); + cout << saveFigs << endl; if (saveFigs) { // c2->SaveAs("figures/PresGSepsilonTright7590.png"); diff --git a/macros/izvRAN/figIZVCorrLeftES.cxx b/macros/izvRAN/figIZVCorrLeftES.cxx index 1a8abd456a62c61c19cac5ba9c16d30e18c41b76..9457c16d457377ecd2396d6f25ab87ebc54ed515 100755 --- a/macros/izvRAN/figIZVCorrLeftES.cxx +++ b/macros/izvRAN/figIZVCorrLeftES.cxx @@ -46,7 +46,8 @@ void figIZVCorrLeftES(const Bool_t saveFigs = 0) cout << "Fig. 4" << endl; TText *t1[6]; - TString panel[6] = {"a)", "b)", "c)", "d)", "e)", "f)"}; +// TString panel[6] = {"a)", "b)", "c)", "d)", "e)", "f)"}; + TString panel[6] = {"a", "d", "c", "f", "b", "e"}; for (Int_t i = 0; i < 6; i++) { c4->cd(canMap[i]); @@ -105,10 +106,11 @@ void figIZVCorrLeftES(const Bool_t saveFigs = 0) hAlphaExp90120[i]->Chi2Test(hAlphaSim90120[i], "P"); - t1[i] = new TText(0.18,0.87,panel[i].Data()); +// t1[i] = new TText(0.18,0.87,panel[i].Data()); + t1[i] = new TText(0.5,0.92,panel[i].Data()); // t1[i] = new TText(0.5,0.95,panel[i].Data()); t1[i]->SetNDC(); - t1[i]->SetTextFont(132); + t1[i]->SetTextFont(12); t1[i]->SetTextSize(0.07); t1[i]->Draw(); diff --git a/macros/izvRAN/figIZVCorrRightGS.cxx b/macros/izvRAN/figIZVCorrRightGS.cxx index fc2c998d92361321f79ea5cd176d844a1abf4be5..457a987af8ed3c05fa710760ec65ded8b5f1c41d 100755 --- a/macros/izvRAN/figIZVCorrRightGS.cxx +++ b/macros/izvRAN/figIZVCorrRightGS.cxx @@ -68,7 +68,7 @@ void figIZVCorrRightGS(const Bool_t saveFigs = 0) cout << "Fig. 3" << endl; TText *t1[6]; - TString panel[6] = {"a)", "b)", "c)", "d)", "e)", "f)"}; + TString panel[6] = {"a", "d", "c", "f", "b", "e"}; for (Int_t i = 0; i < 6; i++) { c2->cd(canMap[i]); @@ -107,10 +107,10 @@ void figIZVCorrRightGS(const Bool_t saveFigs = 0) hCorrExp[i]->Chi2Test(hCorrSim[i], "P"); - t1[i] = new TText(0.18,0.87,panel[i].Data()); -// t1[i] = new TText(0.5,0.95,panel[i].Data()); +// t1[i] = new TText(0.18,0.87,panel[i].Data()); + t1[i] = new TText(0.5,0.92,panel[i].Data()); t1[i]->SetNDC(); - t1[i]->SetTextFont(132); + t1[i]->SetTextFont(12); t1[i]->SetTextSize(0.07); t1[i]->Draw(); } diff --git a/macros/izvRAN/figSpectraIZV.cxx b/macros/izvRAN/figSpectraIZV.cxx index ff8a5d3b27a7f58dba96d6f454c43ec4d080c71d..8fdbb638ca20a94f2a9a49b0cb3dbface97ea1af 100755 --- a/macros/izvRAN/figSpectraIZV.cxx +++ b/macros/izvRAN/figSpectraIZV.cxx @@ -76,13 +76,17 @@ void figSpectraIZV(const Bool_t saveFigs = 0) if (i==0) hSim[i]->GetYaxis()->SetRangeUser(0,13000); - t1[i] = new TText(0.18,0.87,panel[i].Data()); +// t1[i] = new TText(0.18,0.87,panel[i].Data()); + t1[i] = new TText(0.5,0.92,panel[i].Data()); t1[i]->SetNDC(); - t1[i]->SetTextFont(132); + t1[i]->SetTextFont(12); t1[i]->SetTextSize(0.07); t1[i]->Draw(); } +// c1->Update(); +// c1->Update(); + if (saveFigs) { // c2->SaveAs("figures/PresGSepsilonTright7590.png");