From: nick Date: Fri, 3 Oct 2003 13:06:26 +0000 (+0000) Subject: 03-oct-2003 NvE Typos fixed in AliCalorimeter.cxx. X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=52c3ce02fc591031e2cb063ef096579edad51ea7 03-oct-2003 NvE Typos fixed in AliCalorimeter.cxx. --- diff --git a/RALICE/AliCalorimeter.cxx b/RALICE/AliCalorimeter.cxx index cab2e10d0e1..dba11d15b67 100644 --- a/RALICE/AliCalorimeter.cxx +++ b/RALICE/AliCalorimeter.cxx @@ -590,7 +590,7 @@ void AliCalorimeter::SetEdgeOn(Int_t row,Int_t col) { a=new AliAttribObj(); a->SetEdgeOn(col); - fAttributes->AddAt(a,col-1); + fAttributes->AddAt(a,row-1); } AliCalmodule* m=GetModule(row,col); @@ -787,7 +787,7 @@ void AliCalorimeter::SetGain(Int_t row,Int_t col,Float_t gain) { a=new AliAttribObj(); a->SetGain(gain,col); - fAttributes->AddAt(a,col-1); + fAttributes->AddAt(a,row-1); } AliCalmodule* m=GetModule(row,col); @@ -827,7 +827,7 @@ void AliCalorimeter::SetOffset(Int_t row,Int_t col,Float_t offset) { a=new AliAttribObj(); a->SetOffset(offset,col); - fAttributes->AddAt(a,col-1); + fAttributes->AddAt(a,row-1); } AliCalmodule* m=GetModule(row,col); diff --git a/RALICE/history.txt b/RALICE/history.txt index 738bc195f6d..116d9311bca 100644 --- a/RALICE/history.txt +++ b/RALICE/history.txt @@ -397,3 +397,4 @@ and Ali4Vector respectively. This allows to use this memberfunction also in all the derived classes (e.g. AliPosition, AliSignal, AliTrack, etc...). Therefore the Load() memberfunction has been removed from AliPositionObj. +03-oct-2003 NvE Typos fixed in AliCalorimeter.cxx.