]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSEsdCluster.cxx
Removing warnings on gcc 4.3
[u/mrichter/AliRoot.git] / PHOS / AliPHOSEsdCluster.cxx
index 3a7d87cb7967dcca7536777e0b8a25190d7f9d32..c443afd012c5fb395d449ed30f6a0e9f165f4950 100644 (file)
@@ -57,6 +57,8 @@ AliPHOSEsdCluster::~AliPHOSEsdCluster()
 //____________________________________________________________________________
 void AliPHOSEsdCluster::Recalibrate(AliPHOSCalibData * calibData,AliESDCaloCells *phsCells){
   //If not done yet, apply recalibration coefficients to energies list
+  //NOTE that after recalibration fCellsAmpFraction contains not FRACTION but FULL energy 
+  
   if(fRecalibrated)
    return ;
   
@@ -73,18 +75,8 @@ void AliPHOSEsdCluster::Recalibrate(AliPHOSCalibData * calibData,AliESDCaloCells
     Int_t   module = relId[0];
     Int_t   column = relId[3];
     Int_t   row    = relId[2];
-    Short_t pos ;
-    for(pos=0 ; pos<phsCells->GetNumberOfCells(); pos++){ 
-     if(fCellsAbsId[i]==phsCells->GetCellNumber(pos))
-       break ;
-    }
-    if(pos<phsCells->GetNumberOfCells()){
-//       Double_t energy = phsCells->GetAmplitude(pos) ;
-      fCellsAmpFraction[i]*=calibData->GetADCchannelEmc (module,column,row);
-    }
-    else{
-      AliFatal(Form("Digit %d is not in Cell List\n",fDigitIndex->At(i))) ;
-    }
+    Double_t energy = phsCells->GetCellAmplitude(fCellsAbsId[i]) ;
+    fCellsAmpFraction[i]*=energy*calibData->GetADCchannelEmc(module,column,row);
   }
   fRecalibrated=kTRUE; 
 }
@@ -170,7 +162,6 @@ void AliPHOSEsdCluster::EvalCoord(Float_t logWeight, TVector3 &vtx)
   Double_t dzz  = 0.;
   Double_t dxz  = 0.;
   for(Int_t iDigit=0; iDigit < fNCells; iDigit++) {
-    Int_t relid[4] ;
     Float_t xi ;
     Float_t zi ;
     phosgeom->AbsToRelNumbering(fCellsAbsId[iDigit], relid) ;