From: schutz Date: Thu, 24 Jan 2002 09:20:55 +0000 (+0000) Subject: Cosmetics X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=786222b30f8b83a03756f679d60094129e4c2e0f;ds=sidebyside Cosmetics --- diff --git a/PHOS/AliPHOSDigit.h b/PHOS/AliPHOSDigit.h index ca9348ee9e1..491918abec1 100644 --- a/PHOS/AliPHOSDigit.h +++ b/PHOS/AliPHOSDigit.h @@ -52,7 +52,7 @@ class AliPHOSDigit : public AliDigitNew { void SetAmp(Int_t Amp) { // sets the amplitude data member fAmp=Amp ; } - void SetTime(Float_t Time) {fTime = Time ;} + void SetTime(Float_t Time) {fTime = Time ;} void ShiftPrimary(Int_t shift); // shift to separate different TreeK in merging private: diff --git a/PHOS/AliPHOSGeometry.cxx b/PHOS/AliPHOSGeometry.cxx index 1bdda1701f7..5e0b93df728 100644 --- a/PHOS/AliPHOSGeometry.cxx +++ b/PHOS/AliPHOSGeometry.cxx @@ -416,12 +416,12 @@ void AliPHOSGeometry::RelPosInModule(const Int_t * relid, Float_t & x, Float_t & // Converts the relative numbering into the local PHOS-module (x, z) coordinates // Note: sign of z differs from that in the previous version (Yu.Kharlov, 12 Oct 2000) - Int_t row = relid[2] ; //offset along x axiz - Int_t column = relid[3] ; //offset along z axiz + Int_t row = relid[2] ; //offset along x axis + Int_t column = relid[3] ; //offset along z axis if ( relid[1] == 0 ) { // its a PbW04 crystal - x = - ( GetNPhi()/2. - row + 0.5 ) * GetCrystalSize(0) ; // position ox Xtal with respect + x = - ( GetNPhi()/2. - row + 0.5 ) * GetCrystalSize(0) ; // position of Xtal with respect z = ( GetNZ() /2. - column + 0.5 ) * GetCrystalSize(2) ; // of center of PHOS module } else {