]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructioner.cxx
the MIXT geometry (IHEP+GPS2) has been introduced
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructioner.cxx
index b532e092a03aaf654c96af88df91a43a0a077004..0d6dee6d6a91792aff6e543b920cdd8d779adc49 100644 (file)
@@ -19,7 +19,7 @@
 //  Algorithm class for the reconstruction: clusterizer
 //                                          track segment maker
 //                                          particle identifier   
-//                  
+//*--
 //*-- Author: Gines Martinez & Yves Schutz (SUBATECH)
 
 
 
 // --- Standard library ---
 
-#include <iomanip>
+#include <iomanip.h>
 
 // --- AliRoot header files ---
 
 #include "AliPHOSReconstructioner.h"
 #include "AliPHOSClusterizer.h"
+#include "AliPHOSFastRecParticle.h"
+#include "AliPHOSCpvRecPoint.h"
 
 ClassImp(AliPHOSReconstructioner)
 
@@ -57,6 +59,8 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
                                                 AliPHOSTrackSegmentMaker * Tracker,
                                                 AliPHOSPID * Pid)
 {
+  // Initialisation
+
   fClusterizer        = Clusterizer ;
   fTrackSegmentMaker  = Tracker ;
   fPID                = Pid ; 
@@ -64,13 +68,28 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
 } 
 
 //____________________________________________________________________________
- void AliPHOSReconstructioner::Make(DigitsList * dl, RecPointsList * emccl, RecPointsList * ppsdl, 
-                                    TrackSegmentsList * trsl, RecParticlesList * rpl)
+ void AliPHOSReconstructioner::Make(DigitsList * dl, 
+                                   AliPHOSRecPoint::RecPointsList * emccl, 
+                                   AliPHOSRecPoint::RecPointsList * ppsdl, 
+                                   AliPHOSRecPoint::RecPointsList * cpvcl, 
+                                   AliPHOSTrackSegment::TrackSegmentsList * trsl, 
+                                   AliPHOSRecParticle::RecParticlesList * rpl)
 {
   // Launches the Reconstruction process in the sequence: Make the reconstructed poins (clusterize)
   //                                                      Make the track segments 
   //                                                      Make the reconstructed particles
-  Int_t index ; 
+  Int_t index ;   
+  if  (fDebugReconstruction)
+    cout << "\n\nDebugReconstruction>>> " << "Start making reconstructed points (clusterizing!!)" << endl;
+  
+  fClusterizer->MakeClusters(dl, emccl, ppsdl, cpvcl);
+
+  if  (fDebugReconstruction){
+    cout << "DebugReconstruction>>> " << "AliPHOSReconstructioner: Digit list entries is " << dl->GetEntries() << endl ;
+    cout << "AliPHOSReconstructioner: Emc  list entries is " << emccl->GetEntries() << endl ;
+    cout << "AliPHOSReconstructioner: Ppsd list entries is " << ppsdl->GetEntries() << endl ;
+  }
+
   // Digit Debuging
   if  (fDebugReconstruction)     {
     cout << ">>>>>>>>>>>>>>>>>>>>>> DebugReconstruction  <<<<<<<<<<<<<<<<<<<<<<<<<<"  << endl ;
@@ -79,34 +98,29 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
     Bool_t calorimeter ;
     Float_t factor;
     cout << "DebugReconstruction>>>    Vol Id " << 
-      " Ene(MeV, KeV) "             <<                         
-      " Index "                    << 
-      " Nprim "                     << 
-      " Prim1 "                      << 
-      " Prim2 "                      << 
-      " Prim3 "                      <<  endl;      
+      " Ene(MeV, KeV) "              <<                         
+      " Index "                      << 
+      " Nprim "                      << 
+      " Primaries list "             <<  endl;      
     for (index = 0 ; index < dl->GetEntries() ; index++) {
       digit = (AliPHOSDigit * )  dl->At(index) ;
       calorimeter = fClusterizer->IsInEmc(digit);
       if (calorimeter) factor =1000. ; else factor=1000000.;
       cout << "DebugReconstruction>>>  " << 
-       setw(8)  <<  digit->GetId() << " "  <<
-       setw(3)  <<  calorimeter <<  
-       setw(10) <<  factor*fClusterizer->Calibrate(digit->GetAmp()) <<       "  "  <<                   
+        setw(8)  <<  digit->GetId() << " "  <<
+       setw(3)  <<  (Int_t) calorimeter <<  
+       setw(10) <<  factor*fClusterizer->Calibrate(digit->GetAmp()) << "  "  <<                   
        setw(6)  <<  digit->GetIndexInList() << "  "  << 
-       setw(5)  <<  digit->GetNprimary() <<"  "  << 
-       setw(5)  <<  digit->GetPrimary(1) <<"  "  << 
-       setw(5)  <<  digit->GetPrimary(2) <<"  "  << 
-       setw(5)  <<  digit->GetPrimary(3) << endl;       
+       setw(5)  <<  digit->GetNprimary() <<"  ";
+      for (Int_t iprimary=0; iprimary<digit->GetNprimary(); iprimary++)
+       cout << setw(5)  <<  digit->GetPrimary(iprimary+1) << " ";
+      cout << endl;     
     }
     
   }
 
-
-
   // Making Clusters
   if  (fDebugReconstruction)  cout << "DebugReconstruction>>> Start making reconstructed points (clusterizing)" << endl;
-  fClusterizer->MakeClusters(dl, emccl, ppsdl);
 
   // mark the position of the RecPoints in the array
   AliPHOSEmcRecPoint * emcrp ; 
@@ -120,89 +134,87 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
     ppsdrp->SetIndexInList(index) ; 
   }
   
-  if  (fDebugReconstruction) 
-    {
-      cout << "DebugReconstruction>>> Cluster emc list entries is " <<    emccl->GetEntries() << endl ;
-      AliPHOSEmcRecPoint * recpoint;
-      cout << "DebugReconstruction>>> Module "  << 
-       "Ene(MeV) "             <<                         
-       "Index "                    << 
-       "Multi "                    << 
-       "   X     "                      << 
-       "   Y     "                      << 
-       "   Z    "                      << 
-       " Lambda 1   "                     <<  
-       " Lambda 2   "                     <<
-       "MaxEnergy(MeV) "                 <<
-       "Nprim "                 <<
-       "Prim1 "                 <<
-       "Prim2 "                 <<
-       "Prim3 "                 << endl;  
-      for (index = 0 ; index < emccl->GetEntries() ; index++) {
-       recpoint = (AliPHOSEmcRecPoint * )emccl->At(index) ; 
-       TVector3  locpos;  recpoint->GetLocalPosition(locpos);
-       Float_t lambda[2]; recpoint->GetElipsAxis(lambda);
-       Int_t * primaries; 
-       Int_t nprimaries;
-       primaries = recpoint->GetPrimaries(nprimaries);
-       cout << "DebugReconstruction>>>  " << 
-         setw(2) <<recpoint->GetPHOSMod() << " "  << 
-         setw(9) << 1000.*recpoint->GetTotalEnergy() <<       " "  <<                   
-         setw(6) <<  recpoint->GetIndexInList() << " "  << 
-         setw(5) <<  recpoint->GetMultiplicity() <<" "  << 
-         setw(8) <<  locpos.X() <<" "  << 
-         setw(8) <<  locpos.Y() <<" "  << 
-         setw(8) <<  locpos.Z() << " " <<
-         setw(10) << lambda[0] << "  " <<
-         setw(10) << lambda[1] << "  " <<
-         setw(9) << 1000*recpoint->GetMaximalEnergy() << "  " << 
-         setw(9) << nprimaries << "  "  <<
-         setw(4) << primaries[0] << "  "  <<
-         setw(4) << primaries[1] << "  "  <<
-         setw(4) << primaries[2] << "  "  << endl;              
-      }
+  if  (fDebugReconstruction) {
+    cout << "DebugReconstruction>>> Cluster emc list entries is " <<    emccl->GetEntries() << endl ;
+    AliPHOSEmcRecPoint * recpoint;
+    cout << "DebugReconstruction>>> Module "  << 
+      "Ene(MeV) "             <<                         
+      "Index "                << 
+      "Multi "                << 
+      "   X     "             << 
+      "   Y     "             << 
+      "   Z    "              << 
+      " Lambda 1   "          <<  
+      " Lambda 2   "          <<
+      "MaxEnergy(MeV) "       <<
+      "Nprim "                <<
+      " Primaries list "      <<  endl;      
+    for (index = 0 ; index < emccl->GetEntries() ; index++) {
+      recpoint = (AliPHOSEmcRecPoint * )emccl->At(index) ; 
+      TVector3  locpos;  recpoint->GetLocalPosition(locpos);
+      Float_t lambda[2]; recpoint->GetElipsAxis(lambda);
+      Int_t * primaries; 
+      Int_t nprimaries;
+      primaries = recpoint->GetPrimaries(nprimaries);
+      cout << "DebugReconstruction>>>  " << 
+       setw(2) <<recpoint->GetPHOSMod() << " "  << 
+       setw(9) << 1000.*recpoint->GetTotalEnergy() <<       " "  <<                   
+       setw(6) <<  recpoint->GetIndexInList() << " "  << 
+       setw(5) <<  recpoint->GetMultiplicity() <<" "  << 
+       setw(8) <<  locpos.X() <<" "  << 
+       setw(8) <<  locpos.Y() <<" "  << 
+       setw(8) <<  locpos.Z() << " " <<
+       setw(10) << lambda[0] << "  " <<
+       setw(10) << lambda[1] << "  " <<
+       setw(9) << 1000*recpoint->GetMaximalEnergy() << "  " << 
+       setw(9) << nprimaries << "  ";
+      for (Int_t iprimary=0; iprimary<nprimaries; iprimary++)
+       cout << setw(4)  <<  primaries[iprimary] << " ";
+      cout << endl;     
+    }
       
-      cout << "DebugReconstruction>>> Cluster ppsd list entries is " <<    ppsdl->GetEntries() << endl ;
-      AliPHOSPpsdRecPoint * ppsdrecpoint;
-      Text_t detector[4];
-      cout << "DebugReconstruction>>> Module "  << 
-       "Det     "             <<      
-       "Ene(KeV) "             <<                         
-       "Index "                    << 
-       "Multi "                    << 
-       "   X     "                      << 
-       "   Y     "                      << 
-       "   Z         "                      << 
-       "Nprim "                 <<
-       "Prim1 "                 <<
-       "Prim2 "                 <<
-       "Prim3 "                 << endl;  
-      for (index = 0 ; index < ppsdl->GetEntries() ; index++) {
-       ppsdrecpoint = (AliPHOSPpsdRecPoint * ) ppsdl->At(index) ; 
-       TVector3  locpos; ppsdrecpoint->GetLocalPosition(locpos);
-       Int_t * primaries; 
-       Int_t nprimaries;
-        if (ppsdrecpoint->GetUp()) detector="CPV"; else detector="PC ";
-       primaries = ppsdrecpoint->GetPrimaries(nprimaries);
-       cout << "DebugReconstruction>>> " << 
-         setw(4) << ppsdrecpoint->GetPHOSMod() << "  "  << 
-         setw(4)  << detector << " "      <<
-         setw(9) << 1000000.*ppsdrecpoint->GetTotalEnergy() <<       " "  <<             
-         setw(6) <<  ppsdrecpoint->GetIndexInList() << " "  << 
-         setw(5) <<  ppsdrecpoint->GetMultiplicity() <<" "  << 
-         setw(8) <<  locpos.X() <<" "  << 
-         setw(8) <<  locpos.Y() <<" "  << 
-         setw(8) <<  locpos.Z() << " " <<
-         setw(9) << nprimaries << "  "  <<
-         setw(4) << primaries[0] << "  "  <<
-         setw(4) << primaries[1] << "  "  <<
-         setw(4) << primaries[2] << "  "  << endl;              
-      }
-    }  
+    cout << "DebugReconstruction>>> Cluster ppsd list entries is " <<    ppsdl->GetEntries() << endl ;
+    AliPHOSPpsdRecPoint * ppsdrecpoint;
+    Text_t detector[4];
+    cout << "DebugReconstruction>>> Module "  << 
+      "Det     "             <<      
+      "Ene(KeV) "            <<                         
+      "Index "               << 
+      "Multi "               << 
+      "   X     "            << 
+      "   Y     "            << 
+      "   Z         "        << 
+      "Nprim "               <<
+      " Primaries list "     <<  endl;      
+    for (index = 0 ; index < ppsdl->GetEntries() ; index++) {
+      ppsdrecpoint = (AliPHOSPpsdRecPoint * ) ppsdl->At(index) ; 
+      TVector3  locpos; ppsdrecpoint->GetLocalPosition(locpos);
+      Int_t * primaries; 
+      Int_t nprimaries;
+      if (ppsdrecpoint->GetUp()) 
+       strcpy(detector, "CPV"); 
+      else 
+       strcpy(detector, "PC ");
+      primaries = ppsdrecpoint->GetPrimaries(nprimaries);
+      cout << "DebugReconstruction>>> " << 
+       setw(4) << ppsdrecpoint->GetPHOSMod() << "  "  << 
+       setw(4)  << detector << " "      <<
+       setw(9) << 1000000.*ppsdrecpoint->GetTotalEnergy() <<       " "  <<             
+       setw(6) <<  ppsdrecpoint->GetIndexInList() << " "  << 
+       setw(5) <<  ppsdrecpoint->GetMultiplicity() <<" "  << 
+       setw(8) <<  locpos.X() <<" "  << 
+       setw(8) <<  locpos.Y() <<" "  << 
+       setw(8) <<  locpos.Z() << " " <<
+       setw(9) <<  nprimaries << "  ";
+      for (Int_t iprimary=0; iprimary<nprimaries; iprimary++)
+       cout << setw(4)  <<  primaries[iprimary] << " ";
+      cout << endl;     
+    }
+  }  
   
   
   if  (fDebugReconstruction)  cout << "DebugReconstruction>>>> Start making track segments(unfolding+tracksegments)" << endl;
-  fTrackSegmentMaker->MakeTrackSegments(dl, emccl, ppsdl, trsl) ;   
+  fTrackSegmentMaker->MakeTrackSegments(dl, emccl, ppsdl, cpvcl, trsl) ;   
   
   // mark the position of the TrackSegments in the array
   AliPHOSTrackSegment * trs ; 
@@ -214,17 +226,15 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
     cout << "DebugReconstruction>>> Track segment list entries is " <<    trsl->GetEntries() << endl ;
     cout << "DebugReconstruction>>> Module "  << 
       "Ene(KeV) "             <<                         
-      "Index "                    << 
-      "   X      "                      << 
-      "   Y      "                      << 
-      "   Z       "                      <<
-      " rX        "                      << 
-      " rY        "                      << 
-      " rZ      "                               << 
-      "Nprim "                 <<
-      "Prim1 "                 <<
-      "Prim2 "                 <<
-      "Prim3 "                 << endl;  
+      "Index "                << 
+      "   X      "            << 
+      "   Y      "            << 
+      "   Z       "           <<
+      " rX        "           << 
+      " rY        "           << 
+      " rZ      "             << 
+      "Nprim "                <<
+      " Primaries list "      <<  endl;      
     
     for (index = 0 ; index < trsl->GetEntries() ; index++) {
       trs = (AliPHOSTrackSegment * )trsl->At(index) ; 
@@ -242,87 +252,85 @@ AliPHOSReconstructioner::AliPHOSReconstructioner(AliPHOSClusterizer * Clusterize
        setw(10) <<  (trs->GetMomentumDirection()).X() << " " <<
        setw(10) <<  (trs->GetMomentumDirection()).Y() << " " <<
        setw(10) <<  (trs->GetMomentumDirection()).Z() << " " <<
-       setw(4) << nprimaries << "  "  <<
-       setw(4) << primaries[0] << "  "  <<
-       setw(4) << primaries[1] << "  "  <<
-       setw(4) << primaries[2] << "  "  << endl;
+       setw(4) << nprimaries << "  ";
+      for (Int_t iprimary=0; iprimary<nprimaries; iprimary++)
+       cout << setw(4)  <<  primaries[iprimary] << " ";
+      cout << endl;     
     }
     
   }
   if  (fDebugReconstruction)  cout << "DebugReconstruction>>>> Start making reconstructed particles" << endl;
+
+  if (fPID) {
+    fPID->MakeParticles(trsl, rpl) ; 
   
-  fPID->MakeParticles(trsl, rpl) ; 
-  
-  // mark the position of the RecParticles in the array
-  AliPHOSRecParticle * rp ; 
-  for (index = 0 ; index < rpl->GetEntries() ; index++) {
-    rp = (AliPHOSRecParticle * )rpl->At(index) ; 
-    rp->SetIndexInList(index) ; 
-  }
-  //Debugger of RecParticles
- if  (fDebugReconstruction){
-    cout << "DebugReconstruction>>>  Reconstructed particle list entries is " <<    rpl->GetEntries() << endl ;
-    cout << "DebugReconstruction>>> Module "  << 
-      "    PARTICLE     "   <<
-      "Ene(KeV) "             <<                         
-      "Index "                    << 
-      "   X      "                      << 
-      "   Y      "                      << 
-      "   Z       "                      <<
-      "Nprim "                 <<
-      "Prim1 "                 <<
-      "Prim2 "                 <<
-      "Prim3 "                 << endl;  
+    // mark the position of the RecParticles in the array
+    AliPHOSRecParticle * rp ; 
     for (index = 0 ; index < rpl->GetEntries() ; index++) {
-      rp = (AliPHOSRecParticle * ) rpl->At(index) ;       
-      TVector3 locpos; (rp->GetPHOSTrackSegment())->GetPosition(locpos);
-      Int_t * primaries; 
-      Int_t nprimaries;
-      Text_t particle[11];
-      primaries = (rp->GetPHOSTrackSegment())->GetPrimariesEmc(nprimaries);
-      switch(rp->GetType())
-       {
-       case kNEUTRAL_EM:
-         particle = "NEUTRAL_EM";
+      rp = (AliPHOSRecParticle * )rpl->At(index) ; 
+      rp->SetIndexInList(index) ; 
+    }
+    //Debugger of RecParticles
+    if  (fDebugReconstruction){
+      cout << "DebugReconstruction>>>  Reconstructed particle list entries is " <<    rpl->GetEntries() << endl ;
+      cout << "DebugReconstruction>>> Module "  << 
+       "    PARTICLE     "   <<
+       "Ene(KeV) "           <<                         
+       "Index "              << 
+       "   X      "          << 
+       "   Y      "          << 
+       "   Z       "         <<
+       "Nprim "              <<
+       " Primaries list "    <<  endl;      
+      for (index = 0 ; index < rpl->GetEntries() ; index++) {
+       rp = (AliPHOSRecParticle * ) rpl->At(index) ;       
+       TVector3 locpos; (rp->GetPHOSTrackSegment())->GetPosition(locpos);
+       Int_t * primaries; 
+       Int_t nprimaries;
+       Text_t particle[11];
+       primaries = (rp->GetPHOSTrackSegment())->GetPrimariesEmc(nprimaries);
+       switch(rp->GetType()) {
+       case  AliPHOSFastRecParticle::kNEUTRALEM:
+         strcpy( particle, "NEUTRAL_EM");
          break;
-       case kNEUTRAL_HA:
-         particle = "NEUTRAL_HA";
+       case  AliPHOSFastRecParticle::kNEUTRALHA:
+         strcpy(particle, "NEUTRAL_HA");
          break;
-       case kGAMMA:
-         particle = "GAMMA     ";
+       case  AliPHOSFastRecParticle::kGAMMA:
+         strcpy(particle, "GAMMA");
          break ;
-       case kGAMMA_HA: 
-         particle = "GAMMA_HA  ";
+       case  AliPHOSFastRecParticle::kGAMMAHA: 
+         strcpy(particle, "GAMMA_H");
          break ;
-       case kABSURD_EM:
-         particle = "ABSURD_EM " ;
+       case  AliPHOSFastRecParticle::kABSURDEM:
+         strcpy(particle, "ABSURD_EM") ;
          break ;
-       case kABSURD_HA:
-         particle = "ABSURD_HA " ;
+       case  AliPHOSFastRecParticle::kABSURDHA:
+         strcpy(particle, "ABSURD_HA") ;
          break ;       
-       case kELECTRON:
-         particle = "ELECTRON  " ;
+       case  AliPHOSFastRecParticle::kELECTRON:
+         strcpy(particle, "ELECTRON") ;
          break ;
-       case kCHARGED_HA:
-         particle = "CHARGED_HA" ;
+       case  AliPHOSFastRecParticle::kCHARGEDHA:
+         strcpy(particle, "CHARGED_HA") ;
          break ; 
        }
-      
-      cout << "DebugReconstruction>>> " << 
-       setw(4) << (rp->GetPHOSTrackSegment())->GetPHOSMod() << "  "  <<
-       setw(15) << particle << "  " <<
-       setw(9) << 1000.*(rp->GetPHOSTrackSegment())->GetEnergy() <<       " "  <<             
-       setw(3) <<  rp->GetIndexInList() << " "  <<  
-       setw(9) <<  locpos.X() <<" "  << 
-       setw(9) <<  locpos.Y() <<" "  << 
-       setw(9) <<  locpos.Z() << " " <<
-       setw(4) << nprimaries << "  "  <<
-       setw(4) << primaries[0] << "  "  <<
-       setw(4) << primaries[1] << "  "  <<
-       setw(4) << primaries[2] << "  "  << endl;
+       
+       cout << "DebugReconstruction>>> " << 
+         setw(4) << (rp->GetPHOSTrackSegment())->GetPHOSMod() << "  "  <<
+         setw(15) << particle << "  " <<
+         setw(9) << 1000.*(rp->GetPHOSTrackSegment())->GetEnergy() <<       " "  <<             
+         setw(3) <<  rp->GetIndexInList() << " "  <<  
+         setw(9) <<  locpos.X() <<" "  << 
+         setw(9) <<  locpos.Y() <<" "  << 
+         setw(9) <<  locpos.Z() << " " <<
+         setw(4) << nprimaries << "  ";
+       for (Int_t iprimary=0; iprimary<nprimaries; iprimary++)
+         cout << setw(4)  <<  primaries[iprimary] << " ";
+       cout << endl;    
+      }
     }
     
   }
 
-
 }