]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructor.cxx
Update in the T0 configuration @P2.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructor.cxx
index c3a1f6de4af8162a8ec995a4cc618bd738796c6e..0834585af73a71b8b096f5fac09c6b360a251cd2 100644 (file)
@@ -22,6 +22,8 @@
 // derived from STEER/AliReconstructor. 
 // 
 // --- ROOT system ---
+#include "TGeoManager.h"
+#include "TGeoMatrix.h"
 
 // --- Standard library ---
 
@@ -46,9 +48,9 @@
 #include "AliPHOSTrackSegment.h"
 #include "AliPHOSEmcRecPoint.h"
 #include "AliPHOSRecParticle.h"
-#include "AliPHOSRawDecoder.h"
-#include "AliPHOSRawDecoderv1.h"
-#include "AliPHOSRawDecoderv2.h"
+#include "AliPHOSRawFitterv0.h"
+#include "AliPHOSRawFitterv1.h"
+#include "AliPHOSRawFitterv2.h"
 #include "AliPHOSRawDigiProducer.h"
 #include "AliPHOSPulseGenerator.h"
 
@@ -233,7 +235,8 @@ void AliPHOSReconstructor::FillESD(TTree* digitsTree, TTree* clustersTree,
     const AliPHOSDigit * dig = (const AliPHOSDigit*)fgDigitsArray->At(idig);
     if(dig->GetId() <= knEMC && 
        Calibrate(dig->GetEnergy(),dig->GetId()) > GetRecoParam()->GetEMCMinE() ){
-      phsCells.SetCell(idignew,dig->GetId(), Calibrate(dig->GetEnergy(),dig->GetId()), dig->GetTime());   
+      phsCells.SetCell(idignew,dig->GetId(), Calibrate(dig->GetEnergy(),dig->GetId()),
+                                             CalibrateT(dig->GetTime(),dig->GetId()));   
       idignew++;
     }
   }
@@ -299,7 +302,7 @@ void AliPHOSReconstructor::FillESD(TTree* digitsTree, TTree* clustersTree,
     ec->SetNExMax(emcRP->GetNExMax());          //number of local maxima
     ec->SetEmcCpvDistance(ts->GetCpvDistance("r")); //Only radius, what about separate x,z????
     ec->SetClusterChi2(-1);                     //not yet implemented
-    ec->SetTOF(emcRP->GetTime()); //Time of flight
+    ec->SetTOF(emcRP->GetTime());               //Time of flight - already calibrated in EMCRecPoint
 
     //Cells contributing to clusters
     ec->SetNCells(cellMult);
@@ -326,6 +329,10 @@ void AliPHOSReconstructor::FillESD(TTree* digitsTree, TTree* clustersTree,
   fgDigitsArray ->Delete();
   fgEMCRecPoints->Delete();
   recParticles  ->Delete();
+
+  //Store PHOS misalignment matrixes
+  FillMisalMatrixes(esd) ;
+
 }
 
 //____________________________________________________________________________
@@ -343,65 +350,64 @@ void  AliPHOSReconstructor::ConvertDigits(AliRawReader* rawReader, TTree* digits
   // Works on a single-event basis
   rawReader->Reset() ; 
 
-  AliPHOSRawDecoder * dc ;
+  AliPHOSRawFitterv0 * fitter ;
 
   const TObjArray* maps = AliPHOSRecoParam::GetMappings();
   if(!maps) AliFatal("Cannot retrieve ALTRO mappings!!");
 
-  AliAltroMapping *mapping[4];
-  for(Int_t i = 0; i < 4; i++) {
+  AliAltroMapping *mapping[20];
+  for(Int_t i = 0; i < 20; i++) {
     mapping[i] = (AliAltroMapping*)maps->At(i);
   }
 
-  if      (strcmp(GetRecoParam()->EMCDecoderVersion(),"v1")==0) 
-    dc=new AliPHOSRawDecoderv1(rawReader,mapping);
-  else if (strcmp(GetRecoParam()->EMCDecoderVersion(),"v2")==0) 
-    dc=new AliPHOSRawDecoderv2(rawReader,mapping);
+  if      (strcmp(GetRecoParam()->EMCFitterVersion(),"v1")==0) 
+    fitter=new AliPHOSRawFitterv1();
+  else if (strcmp(GetRecoParam()->EMCFitterVersion(),"v2")==0) 
+    fitter=new AliPHOSRawFitterv2();
   else
-    dc=new AliPHOSRawDecoder(rawReader,mapping);
+    fitter=new AliPHOSRawFitterv0();
 
-  dc->SubtractPedestals(GetRecoParam()->EMCSubtractPedestals());
-  dc->SetAmpOffset(GetRecoParam()->GetGlobalAltroOffset());
-  dc->SetAmpThreshold(GetRecoParam()->GetGlobalAltroThreshold());
+  fitter->SubtractPedestals(GetRecoParam()->EMCSubtractPedestals());
+  fitter->SetAmpOffset     (GetRecoParam()->GetGlobalAltroOffset());
+  fitter->SetAmpThreshold  (GetRecoParam()->GetGlobalAltroThreshold());
 
   TClonesArray *digits = new TClonesArray("AliPHOSDigit",1);
   digits->SetName("DIGITS");
   Int_t bufsize = 32000;
   digitsTree->Branch("PHOS", &digits, bufsize);
 
-  //AliPHOSRawDigiProducer pr(GetRecoParam());
-  AliPHOSRawDigiProducer pr;
+  AliPHOSRawDigiProducer rdp(rawReader,mapping);
 
-  pr.SetEmcMinAmp(GetRecoParam()->GetEMCRawDigitThreshold()); // in ADC
-  pr.SetCpvMinAmp(GetRecoParam()->GetCPVMinE());
-  pr.SetSampleQualityCut(GetRecoParam()->GetEMCSampleQualityCut());
-  pr.MakeDigits(digits,dc);
+  rdp.SetEmcMinAmp(GetRecoParam()->GetEMCRawDigitThreshold()); // in ADC
+  rdp.SetCpvMinAmp(GetRecoParam()->GetCPVMinE());
+  rdp.SetSampleQualityCut(GetRecoParam()->GetEMCSampleQualityCut());
+  rdp.MakeDigits(digits,fitter);
 
-  delete dc ;
+  delete fitter ;
 
-  //!!!!for debug!!!
-/*
-  Int_t modMax=-111;
-  Int_t colMax=-111;
-  Int_t rowMax=-111;
-  Float_t eMax=-333;
-  //!!!for debug!!!
-
-  Int_t relId[4];
-  for(Int_t iDigit=0; iDigit<digits->GetEntries(); iDigit++) {
-    AliPHOSDigit* digit = (AliPHOSDigit*)digits->At(iDigit);
-    if(digit->GetEnergy()>eMax) {
-      fGeom->AbsToRelNumbering(digit->GetId(),relId);
-      eMax=digit->GetEnergy();
-      modMax=relId[0];
-      rowMax=relId[2];
-      colMax=relId[3];
+  if (AliLog::GetGlobalDebugLevel() == 1) {
+    Int_t modMax=-111;
+    Int_t colMax=-111;
+    Int_t rowMax=-111;
+    Float_t eMax=-333;
+    //!!!for debug!!!
+    
+    Int_t relId[4];
+    for(Int_t iDigit=0; iDigit<digits->GetEntries(); iDigit++) {
+      AliPHOSDigit* digit = (AliPHOSDigit*)digits->At(iDigit);
+      if(digit->GetEnergy()>eMax) {
+       fGeom->AbsToRelNumbering(digit->GetId(),relId);
+       eMax=digit->GetEnergy();
+       modMax=relId[0];
+       rowMax=relId[2];
+       colMax=relId[3];
+      }
     }
+    
+    AliDebug(1,Form("Digit with max. energy:  modMax %d colMax %d rowMax %d  eMax %f\n\n",
+                   modMax,colMax,rowMax,eMax));
   }
 
-  AliDebug(1,Form("Digit with max. energy:  modMax %d colMax %d rowMax %d  eMax %f\n\n",
-                 modMax,colMax,rowMax,eMax));
-*/
   digitsTree->Fill();
   digits->Delete();
   delete digits;
@@ -427,5 +433,55 @@ Float_t AliPHOSReconstructor::Calibrate(Float_t amp, Int_t absId)const{
     return amp*calibration ;
   }
 }
+//==================================================================================
+Float_t AliPHOSReconstructor::CalibrateT(Float_t time, Int_t absId)const{
+  // Calibrate EMC digit, i.e. multiply its Amp by a factor read from CDB
+
+  const AliPHOSGeometry *geom = AliPHOSGeometry::GetInstance() ;
+
+  //Determine rel.position of the cell absolute ID
+  Int_t relId[4];
+  geom->AbsToRelNumbering(absId,relId);
+  Int_t module=relId[0];
+  Int_t row   =relId[2];
+  Int_t column=relId[3];
+  if(relId[1]){ //CPV
+    return 0. ;
+  }
+  else{ //EMC
+    time += fgCalibData->GetTimeShiftEmc(module,column,row);
+    return time ;
+  }
+}
+//==================================================================================
+void AliPHOSReconstructor::FillMisalMatrixes(AliESDEvent* esd)const{
+  //Store PHOS matrixes in ESD Header
+
+  //Check, if matrixes was already stored
+  for(Int_t mod=0 ;mod<5; mod++){
+    if(esd->GetPHOSMatrix(mod)!=0)
+      return ;
+  }
+
+  //Create and store matrixes
+  if(!gGeoManager){
+    AliError("Can not store misal. matrixes: no gGeoManager! \n") ;
+    return ;
+  }
+  //Note, that owner of copied marixes will be header
+  char path[255] ;
+  TGeoHMatrix * m ;
+  for(Int_t mod=0; mod<5; mod++){
+    sprintf(path,"/ALIC_1/PHOS_%d",mod+1) ; //In Geometry modules numbered 1,2,.,5
+    if (gGeoManager->cd(path)){
+      m = gGeoManager->GetCurrentMatrix() ;
+      esd->SetPHOSMatrix(new TGeoHMatrix(*m),mod) ;
+    }
+    else{
+      esd->SetPHOSMatrix(NULL,mod) ;
+    }
+  }
+
+}