From 007ba5fc20bf2f70e327384214cdc83e7133d0ed Mon Sep 17 00:00:00 2001 From: misko Date: Fri, 13 Nov 2009 17:18:39 +0000 Subject: [PATCH] Bug fix - the array ax was too short. Thanks to Andrei Gheata. --- PWG2/UNICOR/AliUnicorAnalHighpt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWG2/UNICOR/AliUnicorAnalHighpt.cxx b/PWG2/UNICOR/AliUnicorAnalHighpt.cxx index 157209af769..846d2ccd196 100644 --- a/PWG2/UNICOR/AliUnicorAnalHighpt.cxx +++ b/PWG2/UNICOR/AliUnicorAnalHighpt.cxx @@ -40,7 +40,7 @@ AliUnicorAnalHighpt::AliUnicorAnalHighpt(Char_t *nam, Double_t emi, Double_t ema Double_t ewi = ema-emi; // width of the pseudorapidity range double pi = TMath::Pi(); - TAxis *ax[8]; + TAxis *ax[9]; ax[0] = new TAxis(2,-0.5,1.5); ax[0]->SetTitle("trumix"); ax[1] = new TAxis(2,-0.5,1.5); ax[1]->SetTitle("weigth"); // 1 or ass pt ax[2] = new TAxis(5,0,0.5); ax[2]->SetTitle("centrality"); -- 2.43.0