]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSAnalyze.cxx
negative indexes allowed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSAnalyze.cxx
index 181b7336a162d7e0a8f792fe455954be577e5e7c..66e06ba388b6560c8e39af3657917417fea19306 100644 (file)
@@ -28,8 +28,7 @@
 //    Contamination(...) - calculates contamination of the photon spectrum and 
 //                         pobability of reconstruction of several primaries as 
 //                         kGAMMA,kELECTRON etc.
-//
-//    User Case:
+////    User Case:
 //    root [0] AliPHOSAnalyze * a = new AliPHOSAnalyze("galice.root")
 //                    // set the file you want to analyse
 //    root [1] a->DrawRecon(1,3)
 
 // --- Standard library ---
 
-#include <iomanip.h>
-
 // --- AliRoot header files ---
 
 #include "AliRun.h"
+#include "AliStack.h"
 #include "AliPHOSv1.h"
 #include "AliPHOSAnalyze.h"
 #include "AliPHOSDigit.h"
@@ -89,7 +87,7 @@
 #include "AliPHOSTrackSegment.h"
 #include "AliPHOSRecParticle.h"
 #include "AliPHOSCpvRecPoint.h"
-#include "AliPHOSGetter.h"
+#include "AliPHOSLoader.h"
 
 
 ClassImp(AliPHOSAnalyze)
@@ -99,18 +97,25 @@ ClassImp(AliPHOSAnalyze)
 {
   // default ctor (useless)
   fCorrection = 1.2 ;  //Value calculated for default parameters of reconstruction  
+  fRunLoader = 0x0;
 }
 
 //____________________________________________________________________________
 AliPHOSAnalyze::AliPHOSAnalyze(Text_t * fileName)
 {
   // ctor: analyze events from root file "name"
-  ffileName = fileName ;
+  ffileName = fileName;
   fCorrection = 1.05 ;  //Value calculated for default parameters of reconstruction   
+  fRunLoader = AliRunLoader::Open(fileName,"AliPHOSAnalyze");
+  if (fRunLoader == 0x0)
+   {
+     Error("AliPHOSAnalyze","Error Loading session");
+   }
 }
 
 //____________________________________________________________________________
 AliPHOSAnalyze::AliPHOSAnalyze(const AliPHOSAnalyze & ana)
+  : TObject(ana)
 {
   // copy ctor
   ( (AliPHOSAnalyze &)ana ).Copy(*this) ;
@@ -123,19 +128,32 @@ AliPHOSAnalyze::~AliPHOSAnalyze()
 
 }
 //____________________________________________________________________________
-void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,const char* branchTitle){
+void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod){
   //Draws pimary particles and reconstructed 
   //digits, RecPoints, RecPartices etc 
   //for event Nevent in the module Nmod.
 
-  //========== Create ObjectGetter
-  AliPHOSGetter * gime = AliPHOSGetter::GetInstance(ffileName.Data(),branchTitle) ;
-  if(Nevent >= gAlice->TreeE()->GetEntries() ) {
-    cout << "There is no event " << Nevent << ", only " << gAlice->TreeE()->GetEntries() << "events available " <<endl ;
+  //========== Create ObjectLoader
+  if (fRunLoader == 0x0)
+   {
+     Error("DrawRecon","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("DrawRecon","Could not obtain the Loader object !"); 
+     return ;
+   } 
+  
+  
+  if(Nevent >= fRunLoader->GetNumberOfEvents() ) {
+    Error("DrawRecon", "There is no event %d only %d events available", Nevent, fRunLoader->GetNumberOfEvents() ) ;
     return ;
   }
   const AliPHOSGeometry * phosgeom = gime->PHOSGeometry() ; 
-  gime->Event(Nevent);
+  fRunLoader->GetEvent(Nevent);
 
   Int_t nx = phosgeom->GetNPhi() ;
   Int_t nz = phosgeom->GetNZ() ;
@@ -181,14 +199,19 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
   
   
   //Plot Primary Particles
+  
+  if (fRunLoader->Stack() == 0x0) fRunLoader->LoadKinematics("READ");
+  
+
   const TParticle * primary ;
   Int_t iPrimary ;
-  for ( iPrimary = 0 ; iPrimary < gime->NPrimaries() ; iPrimary++)
+  for ( iPrimary = 0 ; iPrimary < fRunLoader->Stack()->GetNprimary() ; iPrimary++)
     {
-      primary = gime->Primary(iPrimary) ;
-      Int_t primaryType = primary->GetPdgCode() ;
+      primary = fRunLoader->Stack()->Particle(iPrimary);
+      
+      Int_t primaryType = primary->GetPdgCode();
 //       if( (primaryType == 211)||(primaryType == -211)||(primaryType == 2212)||(primaryType == -2212)
-//       ||(primaryType == 11)||(primaryType == -11) ) {
+//          ||(primaryType == 11)||(primaryType == -11) ) {
 //         Int_t moduleNumber ;
 //         Double_t primX, primZ ;
 //         phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
@@ -216,50 +239,52 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
   
   Int_t iSDigit ;
   AliPHOSDigit * sdigit ;
-  TClonesArray * sdigits = gime->SDigits() ;
+  const TClonesArray * sdigits = gime->SDigits() ;
   Int_t nsdig[5] = {0,0,0,0,0} ;
   if(sdigits){
     for(iSDigit = 0; iSDigit < sdigits->GetEntriesFast() ; iSDigit++)
       {
-       sdigit = (AliPHOSDigit *) sdigits->At(iSDigit) ;
-       Int_t relid[4];
-       phosgeom->AbsToRelNumbering(sdigit->GetId(), relid) ;
-       Float_t x,z ;
-       phosgeom->RelPosInModule(relid,x,z) ;
-       Float_t e = gime->SDigitizer()->Calibrate(sdigit->GetAmp()) ;
-       nsdig[relid[0]-1]++ ;
-       if(relid[0]==Nmod){
-         if(relid[1]==0)  //EMC
-           emcSdigits->Fill(x,z,e) ;
-         if( relid[1]!=0 )
-           cpvSdigits->Fill(x,z,e) ;
-       }
+       sdigit = (AliPHOSDigit *) sdigits->At(iSDigit) ;
+       Int_t relid[4];
+       phosgeom->AbsToRelNumbering(sdigit->GetId(), relid) ;
+       Float_t x,z ;
+       phosgeom->RelPosInModule(relid,x,z);
+       AliPHOSSDigitizer* sd = dynamic_cast<AliPHOSSDigitizer*>(gime->SDigitizer());
+       Float_t e = sd->Calibrate(sdigit->GetAmp()) ;
+       nsdig[relid[0]-1]++ ;
+       if(relid[0]==Nmod){
+         if(relid[1]==0)  //EMC
+           emcSdigits->Fill(x,z,e) ;
+         if( relid[1]!=0 )
+           cpvSdigits->Fill(x,z,e) ;
+       }
       }
   }
-  cout << "Number of EMC + CPV SDigits per module: " <<endl ;
-  cout << nsdig[0] << " " << nsdig[1] << " " << nsdig[2] << " " << nsdig[3]<< " " << nsdig[4] << endl ;
-  cout << endl ;
-
+  TString message ; 
+  message  = "Number of EMC + CPV SDigits per module: \n" ;
+  message += "%d %d %d %d %d\n"; 
+  Info("DrawRecon", message.Data(), nsdig[0], nsdig[1], nsdig[2], nsdig[3], nsdig[4] ) ;
 
   //Plot digits
   Int_t iDigit ;
   AliPHOSDigit * digit ;
-  TClonesArray * digits = gime->Digits(); 
+  const TClonesArray * digits = gime->Digits(); 
   if(digits) {
     for(iDigit = 0; iDigit < digits->GetEntriesFast(); iDigit++)
       {
-       digit = (AliPHOSDigit *) digits->At(iDigit) ;
-       Int_t relid[4];
-       phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
-       Float_t x,z ;
-       phosgeom->RelPosInModule(relid,x,z) ;
-       Float_t e = gime->SDigitizer()->Calibrate(digit->GetAmp()) ;
-       if(relid[0]==Nmod){
-         if(relid[1]==0)  //EMC
-           emcDigits->Fill(x,z,e) ;
-         if( relid[1]!=0 )
-           cpvDigits->Fill(x,z,e) ;
-       }
+       digit = (AliPHOSDigit *) digits->At(iDigit) ;
+       Int_t relid[4];
+       phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
+       Float_t x,z ;
+       phosgeom->RelPosInModule(relid,x,z) ;
+       AliPHOSSDigitizer* sd = dynamic_cast<AliPHOSSDigitizer*>(gime->SDigitizer());
+       Float_t e = sd->Calibrate(digit->GetAmp()) ;
+       if(relid[0]==Nmod){
+         if(relid[1]==0)  //EMC
+           emcDigits->Fill(x,z,e) ;
+         if( relid[1]!=0 )
+           cpvDigits->Fill(x,z,e) ;
+       }
       }
   }
   
@@ -272,8 +297,8 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
     for(irecp = 0; irecp < emcrp->GetEntriesFast() ; irecp ++){
       AliPHOSEmcRecPoint * emc = (AliPHOSEmcRecPoint *) emcrp->At(irecp) ;
       if(emc->GetPHOSMod()==Nmod){
-       emc->GetLocalPosition(pos) ;
-       emcRecPoints->Fill(pos.X(),pos.Z(),emc->GetEnergy());
+       emc->GetLocalPosition(pos) ;
+       emcRecPoints->Fill(pos.X(),pos.Z(),emc->GetEnergy());
       }
     }
   }
@@ -283,8 +308,8 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
     for(irecp = 0; irecp < cpvrp->GetEntriesFast() ; irecp ++){
       AliPHOSRecPoint * cpv = (AliPHOSCpvRecPoint *) cpvrp->At(irecp) ;
       if(cpv->GetPHOSMod()==Nmod){
-       cpv->GetLocalPosition(pos) ;
-       cpvRecPoints->Fill(pos.X(),pos.Z(),cpv->GetEnergy());
+       cpv->GetLocalPosition(pos) ;
+       cpvRecPoints->Fill(pos.X(),pos.Z(),cpv->GetEnergy());
       }
     }
   }
@@ -297,48 +322,48 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
   if(rp && ts && emcrp) {
     for(iRecParticle = 0; iRecParticle < rp->GetEntriesFast() ; iRecParticle++ )
       {
-       recParticle = (AliPHOSRecParticle *) rp->At(iRecParticle) ;
-       Int_t moduleNumberRec ;
-       Double_t recX, recZ ;
-       phosgeom->ImpactOnEmc(recParticle->Theta(), recParticle->Phi(), moduleNumberRec, recX, recZ) ;
-       if(moduleNumberRec == Nmod){
-         
-         Double_t minDistance = 5. ;
-         Int_t closestPrimary = -1 ;   
-
-         //extract list of primaries: it is stored at EMC RecPoints
-         Int_t emcIndex = ((AliPHOSTrackSegment *) ts->At(recParticle->GetPHOSTSIndex()))->GetEmcIndex() ;
-         Int_t numberofprimaries ;
-         Int_t * listofprimaries  = ((AliPHOSRecPoint*) emcrp->At(emcIndex))->GetPrimaries(numberofprimaries)  ;
-         Int_t index ;
-         const TParticle * primary ;
-         Double_t distance = minDistance ;
-         
-         for ( index = 0 ; index < numberofprimaries ; index++){
-           primary = gime->Primary(listofprimaries[index]) ;
-           Int_t moduleNumber ;
-           Double_t primX, primZ ;
-           phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
-           if(moduleNumberRec == moduleNumber)
-             distance = TMath::Sqrt((recX-primX)*(recX-primX)+(recZ-primZ)*(recZ-primZ) ) ;
-           if(minDistance > distance)
-             {
-               minDistance = distance ;
-               closestPrimary = listofprimaries[index] ;
-             }
-         }
-         
-         if(closestPrimary >=0 ){
-           
-           Int_t primaryType = gime->Primary(closestPrimary)->GetPdgCode() ;
-           
-           if(primaryType==22)
-             recPhot->Fill(recZ,recX,recParticle->Energy()) ;
-//         else
-//           if(primaryType==-2112)
-//             recNbar->Fill(recZ,recX,recParticle->Energy()) ; 
-         }
-       }
+       recParticle = (AliPHOSRecParticle *) rp->At(iRecParticle) ;
+       Int_t moduleNumberRec ;
+       Double_t recX, recZ ;
+       phosgeom->ImpactOnEmc(recParticle->Theta(), recParticle->Phi(), moduleNumberRec, recX, recZ) ;
+       if(moduleNumberRec == Nmod){
+         
+         Double_t minDistance = 5. ;
+         Int_t closestPrimary = -1 ;       
+
+         //extract list of primaries: it is stored at EMC RecPoints
+         Int_t emcIndex = ((AliPHOSTrackSegment *) ts->At(recParticle->GetPHOSTSIndex()))->GetEmcIndex() ;
+         Int_t numberofprimaries ;
+         Int_t * listofprimaries  = ((AliPHOSRecPoint*) emcrp->At(emcIndex))->GetPrimaries(numberofprimaries)  ;
+         Int_t index ;
+         const TParticle * primary ;
+         Double_t distance = minDistance ;
+         
+         for ( index = 0 ; index < numberofprimaries ; index++){
+           primary = fRunLoader->Stack()->Particle(listofprimaries[index]) ;
+           Int_t moduleNumber ;
+           Double_t primX, primZ ;
+           phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
+           if(moduleNumberRec == moduleNumber)
+             distance = TMath::Sqrt((recX-primX)*(recX-primX)+(recZ-primZ)*(recZ-primZ) ) ;
+           if(minDistance > distance)
+             {
+              minDistance = distance ;
+              closestPrimary = listofprimaries[index] ;
+             }
+         }
+         
+         if(closestPrimary >=0 ){
+           
+           Int_t primaryType = fRunLoader->Stack()->Particle(closestPrimary)->GetPdgCode() ;
+           
+           if(primaryType==22)
+             recPhot->Fill(recZ,recX,recParticle->Energy()) ;
+//            else
+//              if(primaryType==-2112)
+//               recNbar->Fill(recZ,recX,recParticle->Energy()) ; 
+         }
+       }
       }
 
   }
@@ -357,52 +382,114 @@ void AliPHOSAnalyze::DrawRecon(Int_t Nevent,Int_t Nmod,const char * branchName,c
 void AliPHOSAnalyze::Ls(){
   //lists branches and titles of PHOS-related branches of TreeR, TreeD, TreeS
   
-  AliPHOSGetter::GetInstance(ffileName.Data()) ;
+  if (fRunLoader == 0x0)
+   {
+     Error("Ls","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("Ls","Could not obtain the Loader object !"); 
+     return ;
+   } 
+
 
   Int_t ibranch;
   TObjArray * branches; 
   
-  branches = gAlice->TreeS()->GetListOfBranches() ;
+  if (gime->TreeS() == 0x0) 
+   {
+     if (gime->LoadSDigits("READ"))
+      {
+        Error("Ls","Problems with loading summable digits");
+        return;
+      }
+   }
+  branches = gime->TreeS()->GetListOfBranches() ;
  
-  cout << "TreeS: " << endl ;
+  TString message ; 
+  message  = "TreeS:\n" ;
   for(ibranch = 0;ibranch <branches->GetEntries();ibranch++){
     TBranch * branch=(TBranch *) branches->At(ibranch) ;
-    if(strstr(branch->GetName(),"PHOS") )
-      cout << "       " << branch->GetName() << "     " << branch->GetTitle() << endl ;
+    if(strstr(branch->GetName(),"PHOS") ){
+      message += "       " ; 
+      message += branch->GetName() ; 
+      message += "     " ; 
+      message += branch->GetTitle() ;
+      message += "\n" ; 
+    }
   }
-  cout << endl ;
-  branches = gAlice->TreeD()->GetListOfBranches() ;
+  if (gime->TreeD() == 0x0) 
+   {
+     if (gime->LoadDigits("READ"))
+      {
+        Error("Ls","Problems with loading digits");
+        return;
+      }
+   }
+
+  branches = gime->TreeD()->GetListOfBranches() ;
   
-  cout << "TreeD: " << endl ;
+  message += "TreeD:\n" ;
   for(ibranch = 0;ibranch <branches->GetEntries();ibranch++){
     TBranch * branch=(TBranch *) branches->At(ibranch) ;
-    if(strstr(branch->GetName(),"PHOS") )
-      cout << "       " << branch->GetName() << "     " << branch->GetTitle() << endl ;
+    if(strstr(branch->GetName(),"PHOS") ) {
+      message += "       "; 
+      message += branch->GetName() ; 
+      message += "     " ; 
+      message += branch->GetTitle() ; 
+      message +="\n" ;
+    }
   }
-  cout << endl ;
   
+  if (gime->TreeR() == 0x0) 
+   {
+     if (gime->LoadRecPoints("READ"))
+      {
+        Error("Ls","Problems with loading rec points");
+        return;
+      }
+   }
 
-  branches = gAlice->TreeR()->GetListOfBranches() ;
+  branches = gime->TreeR()->GetListOfBranches() ;
   
-  cout << "TreeR: " << endl ;
+  message += "TreeR: \n" ;
   for(ibranch = 0;ibranch <branches->GetEntries();ibranch++){
     TBranch * branch=(TBranch *) branches->At(ibranch) ;
-    if(strstr(branch->GetName(),"PHOS") )
-      cout << "       " << branch->GetName() << "     " << branch->GetTitle() << endl ;
+    if(strstr(branch->GetName(),"PHOS") ) {
+      message += "       " ; 
+      message += branch->GetName() ; 
+      message += "     " ;
+      message += branch->GetTitle() ; 
+      message += "\n" ;
+    }
   }
-  cout << endl ;
-
-
+  Info("LS", message.Data()) ;  
 }
 //____________________________________________________________________________
- void AliPHOSAnalyze::InvariantMass(const char* branchTitle)    
+ void AliPHOSAnalyze::InvariantMass()
 {
   // Calculates Real and Mixed invariant mass distributions
-  AliPHOSGetter * gime  = AliPHOSGetter::GetInstance(ffileName.Data(),branchTitle) ;
-
+  if (fRunLoader == 0x0)
+   {
+     Error("DrawRecon","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("DrawRecon","Could not obtain the Loader object !"); 
+     return ;
+   } 
+  
+  gime->LoadRecParticles("READ");
+  
   Int_t nMixedEvents = 4 ; //# of events used for calculation of 'mixed' distribution 
-
+  
+  
   //opening file
   TFile * mfile = new TFile("invmass.root","update");
   
@@ -438,26 +525,34 @@ void AliPHOSAnalyze::Ls(){
   
   //scan over all events
   Int_t event ;
-  Int_t maxevent = (Int_t)gAlice->TreeE()->GetEntries() ; 
+  
+
+  if (fRunLoader->TreeE() == 0x0) fRunLoader->LoadHeader();
+  
+  
+  Int_t maxevent = (Int_t)fRunLoader->TreeE()->GetEntries();
   //  for(event = 0; event < gime->MaxEvent(); event++  ){
+  
+  
+  
   for(event = 0; event < maxevent; event++  ){
-    gime->Event(event,"R");  //will read only TreeR 
+    fRunLoader->GetEvent(event);  //will read only TreeR 
     
     //copy EM RecParticles to the "total" list        
     const AliPHOSRecParticle * recParticle ;
     Int_t iRecParticle ;
     TClonesArray * rp = gime->RecParticles() ;
     if(!rp){
-      cout << "AliPHOSAnalyze::InvariantMass --> Can't find RecParticles " << endl ;
+      Error("InvariantMass", "Can't find RecParticles") ; 
       return ;
     }
 
     for(iRecParticle = 0; iRecParticle < rp->GetEntriesFast(); iRecParticle++ )
       {
-       recParticle = (AliPHOSRecParticle *) rp->At(iRecParticle) ;
-       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW))
-         new( (*allRecParticleList)[iRecPhot++] ) AliPHOSRecParticle(*recParticle) ;
+       recParticle = (AliPHOSRecParticle *) rp->At(iRecParticle) ;
+       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW))
+         new( (*allRecParticleList)[iRecPhot++] ) AliPHOSRecParticle(*recParticle) ;
       }
     
     Int_t mevent = event%nMixedEvents ; //event number in the "mixed" cicle
@@ -474,46 +569,46 @@ void AliPHOSAnalyze::Ls(){
       Int_t nCurEvent = 0 ;
       
       for(irp1 = 0; irp1 < allRecParticleList->GetEntries()-1; irp1++){
-       AliPHOSRecParticle * rp1 = (AliPHOSRecParticle *)allRecParticleList->At(irp1) ;
-       
-       for(irp2 = irp1+1; irp2 < allRecParticleList->GetEntries(); irp2++){
-         AliPHOSRecParticle * rp2 = (AliPHOSRecParticle *)allRecParticleList->At(irp2) ;
-         
-         Double_t invMass ;
-         invMass = (rp1->Energy()+rp2->Energy())*(rp1->Energy()+rp2->Energy())-
-           (rp1->Px()+rp2->Px())*(rp1->Px()+rp2->Px())-
-           (rp1->Py()+rp2->Py())*(rp1->Py()+rp2->Py())-
-           (rp1->Pz()+rp2->Pz())*(rp1->Pz()+rp2->Pz()) ;
-         
-         if(invMass> 0)
-           invMass = TMath::Sqrt(invMass);
-         
-         Double_t pt ; 
-         pt = TMath::Sqrt((rp1->Px()+rp2->Px() )*( rp1->Px()+rp2->Px() ) + 
-                          (rp1->Py()+rp2->Py() )*( rp1->Py()+rp2->Py() ) );
-         
-         if(irp1 > nRecParticles[nCurEvent])
-           nCurEvent++;
-         
-         if(irp2 <= nRecParticles[nCurEvent]){ //'Real' event
-           hRealEM->Fill(invMass,pt);
-           if((rp1->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)&&
-              (rp2->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST) )
-             hRealPhot->Fill(invMass,pt);
-         }
-         else{
-           hMixedEM->Fill(invMass,pt);
-           if((rp1->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)&&
-              (rp2->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST) )
-             hMixedPhot->Fill(invMass,pt);
-         } //real-mixed
-         
+       AliPHOSRecParticle * rp1 = (AliPHOSRecParticle *)allRecParticleList->At(irp1) ;
+       
+       for(irp2 = irp1+1; irp2 < allRecParticleList->GetEntries(); irp2++){
+         AliPHOSRecParticle * rp2 = (AliPHOSRecParticle *)allRecParticleList->At(irp2) ;
+         
+         Double_t invMass ;
+         invMass = (rp1->Energy()+rp2->Energy())*(rp1->Energy()+rp2->Energy())-
+           (rp1->Px()+rp2->Px())*(rp1->Px()+rp2->Px())-
+           (rp1->Py()+rp2->Py())*(rp1->Py()+rp2->Py())-
+           (rp1->Pz()+rp2->Pz())*(rp1->Pz()+rp2->Pz()) ;
+         
+         if(invMass> 0)
+           invMass = TMath::Sqrt(invMass);
+         
+         Double_t pt ; 
+         pt = TMath::Sqrt((rp1->Px()+rp2->Px() )*( rp1->Px()+rp2->Px() ) + 
+                        (rp1->Py()+rp2->Py() )*( rp1->Py()+rp2->Py() ) );
+         
+         if(irp1 > nRecParticles[nCurEvent])
+           nCurEvent++;
+         
+         if(irp2 <= nRecParticles[nCurEvent]){ //'Real' event
+           hRealEM->Fill(invMass,pt);
+           if((rp1->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)&&
+              (rp2->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST) )
+             hRealPhot->Fill(invMass,pt);
+         }
+         else{
+           hMixedEM->Fill(invMass,pt);
+           if((rp1->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)&&
+              (rp2->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST) )
+             hMixedPhot->Fill(invMass,pt);
+         } //real-mixed
+         
       } //loop over second rp
       }//loop over first rp
       
       //Make some cleanings 
       for(Int_t index = 0; index < nMixedEvents; index ++)
-       nRecParticles[index] = 0 ;
+       nRecParticles[index] = 0 ;
       iRecPhot = 0 ;              
       allRecParticleList->Clear() ;
       
@@ -537,7 +632,7 @@ void AliPHOSAnalyze::Ls(){
 }
 
 //____________________________________________________________________________
- void AliPHOSAnalyze::EnergyResolution(const char * branchTitle)    
+ void AliPHOSAnalyze::EnergyResolution()
 {
   //fills two dimentional histo: energy of primary vs. energy of reconstructed
 
@@ -561,34 +656,48 @@ void AliPHOSAnalyze::Ls(){
     hEMEnergy   = new TH2F("hEMEnergy",   "Energy of EM with primary photon",    100, 0., 5., 100, 0., 5.);
 
 
-  AliPHOSGetter * gime = AliPHOSGetter::GetInstance(ffileName.Data(),branchTitle) ;
-  const AliPHOSGeometry * phosgeom = gime->PHOSGeometry() ; 
+  if (fRunLoader == 0x0)
+   {
+     Error("DrawRecon","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("DrawRecon","Could not obtain the Loader object !"); 
+     return ;
+   } 
+
+
+  const AliPHOSGeometry * phosgeom = gime->PHOSGeometry();
 
   Int_t ievent;
-  Int_t maxevent = (Int_t)gAlice->TreeE()->GetEntries() ; 
+  Int_t maxevent = (Int_t)fRunLoader->TreeE()->GetEntries();
+
+  fRunLoader->LoadKinematics("READ");
+  gime->LoadTracks("READ");
+  
   for ( ievent=0; ievent < maxevent ; ievent++){
 
     //read the current event
-    gime->Event(ievent) ;
+    fRunLoader->GetEvent(ievent) ;
 
     const AliPHOSRecParticle * recParticle ;
     Int_t iRecParticle ;
     TClonesArray * rp = gime->RecParticles() ;
     if(!rp) {
-      cout << "AliPHOSAnalyze::EnergyResolution --> Event " <<ievent 
-          << ",  Can't find RecParticles " << endl ;
+      Error("EnergyResolution", "Event %d,  Can't find RecParticles ", ievent) ;  
       return ;
     }
     TClonesArray * ts = gime->TrackSegments() ;
     if(!ts) {
-      cout << "AliPHOSAnalyze::EnergyResolution --> Event " <<ievent 
-          << ",  Can't find TrackSegments " << endl ;
+      Error("EnergyResolution", "Event %d,  Can't find TrackSegments", ievent) ;  
       return ;
     }
     TObjArray * emcrp = gime->EmcRecPoints() ;
     if(!emcrp){
-      cout << "AliPHOSAnalyze::EnergyResolution --> Event " <<ievent 
-          << ",  Can't find EmcRecPoints " << endl ;
+      Error("EnergyResolution", "Event %d,  Can't find EmcRecPoints") ; 
       return ;
     }
       
@@ -615,36 +724,38 @@ void AliPHOSAnalyze::Ls(){
       Double_t dXmin = 0.; 
       Double_t dZmin = 0. ;
       for ( index = 0 ; index < numberofprimaries ; index++){
-       primary = gime->Primary(listofprimaries[index]) ;
-       Int_t moduleNumber ;
-       Double_t primX, primZ ;
-       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
-       if(moduleNumberRec == moduleNumber) {
-         dX = recX - primX;
-         dZ = recZ - primZ;
-         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
-         if(minDistance > distance) {
-           minDistance = distance ;
-           dXmin = dX;
-           dZmin = dZ;
-           closestPrimary = listofprimaries[index] ;
-         }
-       }
+
+       primary = fRunLoader->Stack()->Particle(listofprimaries[index]) ;
+
+       Int_t moduleNumber ;
+       Double_t primX, primZ ;
+       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
+       if(moduleNumberRec == moduleNumber) {
+         dX = recX - primX;
+         dZ = recZ - primZ;
+         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
+         if(minDistance > distance) {
+           minDistance = distance ;
+           dXmin = dX;
+           dZmin = dZ;
+           closestPrimary = listofprimaries[index] ;
+         }
+       }
       }
 
       //if found primary, fill histograms
       if(closestPrimary >=0 ){
-       const TParticle * primary = gime->Primary(closestPrimary) ;
-       if(primary->GetPdgCode() == 22){
-         hAllEnergy->Fill(primary->Energy(), recParticle->Energy()) ;
-         if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
-           hPhotEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
-           hEMEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
-         }
-         else
-           if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)
-             hEMEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
-       }
+       const TParticle * primary = fRunLoader->Stack()->Particle(closestPrimary) ;
+       if(primary->GetPdgCode() == 22){
+         hAllEnergy->Fill(primary->Energy(), recParticle->Energy()) ;
+         if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
+           hPhotEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
+           hEMEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
+         }
+         else
+           if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)
+             hEMEnergy->Fill(primary->Energy(), recParticle->Energy() ) ; 
+       }
       }
     }
   }
@@ -660,7 +771,7 @@ void AliPHOSAnalyze::Ls(){
 
 }
 //____________________________________________________________________________
-void AliPHOSAnalyze::PositionResolution(const char * branchTitle)    
+void AliPHOSAnalyze::PositionResolution()
 {
   //fills two dimentional histo: energy vs. primary - reconstructed distance  
 
@@ -680,50 +791,60 @@ void AliPHOSAnalyze::PositionResolution(const char * branchTitle)
   hAllPosition = (TH2F*)pfile->Get("hAllPosition");
   if(hAllPosition == 0)
     hAllPosition  = new TH2F("hAllPosition",  
-                            "Position of any RP with primary photon",100, 0., 5., 100, 0., 5.);
+                          "Position of any RP with primary photon",100, 0., 5., 100, 0., 5.);
   hPhotPosition= (TH2F*)pfile->Get("hPhotPosition");
   if(hPhotPosition == 0)
     hPhotPosition = new TH2F("hPhotPosition", 
-                            "Position of kGAMMA with primary photon",100, 0., 5., 100, 0., 5.);
+                          "Position of kGAMMA with primary photon",100, 0., 5., 100, 0., 5.);
   hEMPosition= (TH2F*)pfile->Get("hEMPosition") ;
   if(hEMPosition == 0)
     hEMPosition   = new TH2F("hEMPosition",   
-                            "Position of EM with primary photon",    100, 0., 5., 100, 0., 5.);
-  hAllPositionX = (TH1F*)pfile->Get("hAllPositionX") ;                    
+                          "Position of EM with primary photon",    100, 0., 5., 100, 0., 5.);
+  hAllPositionX = (TH1F*)pfile->Get("hAllPositionX") ;                        
   if(hAllPositionX == 0)
     hAllPositionX = new TH1F("hAllPositionX", 
-                            "Delta X of any RP with primary photon",100, -2., 2.);
+                          "Delta X of any RP with primary photon",100, -2., 2.);
   hAllPositionZ =(TH1F*) pfile->Get("hAllPositionZ") ;
   if(hAllPositionZ == 0)
     hAllPositionZ = new TH1F("hAllPositionZ", 
-                            "Delta X of any RP with primary photon",100, -2., 2.);
+                          "Delta X of any RP with primary photon",100, -2., 2.);
 
+  if (fRunLoader == 0x0)
+   {
+     Error("DrawRecon","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("DrawRecon","Could not obtain the Loader object !"); 
+     return ;
+   } 
+  
+  if (fRunLoader->TreeE() == 0x0) fRunLoader->LoadHeader();
 
-  AliPHOSGetter * gime = AliPHOSGetter::GetInstance(ffileName.Data(),branchTitle) ;
   const AliPHOSGeometry * phosgeom = gime->PHOSGeometry() ; 
 
   Int_t ievent;
-  Int_t maxevent = (Int_t)gAlice->TreeE()->GetEntries() ; 
+  Int_t maxevent = (Int_t)fRunLoader->TreeE()->GetEntries() ; 
   for ( ievent=0; ievent < maxevent ; ievent++){
     
     //read the current event
-    gime->Event(ievent) ;
+    fRunLoader->GetEvent(ievent) ;
     TClonesArray * rp = gime->RecParticles() ;
     if(!rp) {
-      cout << "AliPHOSAnalyze::PositionResolution --> Event " <<ievent 
-          << ",  Can't find RecParticles " << endl ;
+      Error("PositionResolution", "Event %d,  Can't find RecParticles", ievent) ;
       return ;
     }
     TClonesArray * ts = gime->TrackSegments() ;
     if(!ts) {
-      cout << "AliPHOSAnalyze::PositionResolution --> Event " <<ievent 
-          << ",  Can't find TrackSegments " << endl ;
+      Error("PositionResolution", "Event %d,  Can't find TrackSegments", ievent) ;
       return ;
     }
     TObjArray * emcrp = gime->EmcRecPoints() ;
     if(!emcrp){
-      cout << "AliPHOSAnalyze::PositionResolution --> Event " <<ievent 
-          << ",  Can't find EmcRecPoints " << endl ;
+      Error("PositionResolution", "Event %d,  Can't find EmcRecPoints", ievent) ;
       return ;
     }
     
@@ -754,38 +875,38 @@ void AliPHOSAnalyze::PositionResolution(const char * branchTitle)
       Double_t dXmin = 0.; 
       Double_t dZmin = 0. ;
       for ( index = 0 ; index < numberofprimaries ; index++){
-       primary = gime->Primary(listofprimaries[index]) ;
-       Int_t moduleNumber ;
-       Double_t primX, primZ ;
-       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
-       if(moduleNumberRec == moduleNumber) {
-         dX = recX - primX;
-         dZ = recZ - primZ;
-         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
-         if(minDistance > distance) {
-           minDistance = distance ;
-           dXmin = dX;
-           dZmin = dZ;
-           closestPrimary = listofprimaries[index] ;
-         }
-       }
+       primary = fRunLoader->Stack()->Particle(listofprimaries[index]) ;
+       Int_t moduleNumber ;
+       Double_t primX, primZ ;
+       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
+       if(moduleNumberRec == moduleNumber) {
+         dX = recX - primX;
+         dZ = recZ - primZ;
+         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
+         if(minDistance > distance) {
+           minDistance = distance ;
+           dXmin = dX;
+           dZmin = dZ;
+           closestPrimary = listofprimaries[index] ;
+         }
+       }
       }
       
       //if found primary, fill histograms
       if(closestPrimary >=0 ){
-       const TParticle * primary = gime->Primary(closestPrimary) ;
-       if(primary->GetPdgCode() == 22){
-         hAllPosition->Fill(primary->Energy(), minDistance) ;
-         hAllPositionX->Fill(primary->Energy(), dX) ;
-         hAllPositionZ->Fill(primary->Energy(), dZ) ;
-         if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
-           hPhotPosition->Fill(primary->Energy(), minDistance ) ; 
-           hEMPosition->Fill(primary->Energy(), minDistance ) ; 
-         }
-         else
-           if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)
-             hEMPosition->Fill(primary->Energy(), minDistance ) ; 
-       }
+       const TParticle * primary = fRunLoader->Stack()->Particle(closestPrimary) ;
+       if(primary->GetPdgCode() == 22){
+         hAllPosition->Fill(primary->Energy(), minDistance) ;
+         hAllPositionX->Fill(primary->Energy(), dX) ;
+         hAllPositionZ->Fill(primary->Energy(), dZ) ;
+         if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
+           hPhotPosition->Fill(primary->Energy(), minDistance ) ; 
+           hEMPosition->Fill(primary->Energy(), minDistance ) ; 
+         }
+         else
+           if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)
+             hEMPosition->Fill(primary->Energy(), minDistance ) ; 
+       }
       }
     }
   }
@@ -804,7 +925,7 @@ void AliPHOSAnalyze::PositionResolution(const char * branchTitle)
 
 }
 //____________________________________________________________________________
-void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
+void AliPHOSAnalyze::Contamination(){
 // fills spectra of primary photons and several kinds of 
 // reconstructed particles, so that analyzing them one can 
 // estimate conatmination, efficiency of registration etc.
@@ -910,31 +1031,41 @@ void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
 
 
 
-  AliPHOSGetter * gime = AliPHOSGetter::GetInstance(ffileName.Data(),RecPointsTitle) ;
+  if (fRunLoader == 0x0)
+   {
+     Error("DrawRecon","Error Loading session");
+     return;
+   }
+  
+  AliPHOSLoader* gime = dynamic_cast<AliPHOSLoader*>(fRunLoader->GetLoader("PHOSLoader"));
+  if ( gime == 0 ) 
+   {
+     Error("DrawRecon","Could not obtain the Loader object !"); 
+     return ;
+   } 
+  
+  if (fRunLoader->TreeE() == 0x0) fRunLoader->LoadHeader();
   const AliPHOSGeometry * phosgeom = gime->PHOSGeometry() ; 
   
   Int_t ievent;
-  Int_t maxevent = (Int_t)gAlice->TreeE()->GetEntries() ; 
+  Int_t maxevent = (Int_t)fRunLoader->TreeE()->GetEntries() ; 
   for ( ievent=0; ievent < maxevent ; ievent++){
     
-    gime->Event(ievent) ;
+    fRunLoader->GetEvent(ievent) ;
     
     TClonesArray * rp = gime->RecParticles() ;
     if(!rp) {
-      cout << "AliPHOSAnalyze::Contamination --> Event " <<ievent 
-          << ",  Can't find RecParticles " << endl ;
+      Error("Contamination", "Event %d,  Can't find RecParticles", ievent) ;
       return ;
     }
     TClonesArray * ts = gime->TrackSegments() ;
     if(!ts) {
-      cout << "AliPHOSAnalyze::Contamination --> Event " <<ievent 
-          << ",  Can't find TrackSegments " << endl ;
+      Error("Contamination", "Event %d,  Can't find TrackSegments", ievent) ;
       return ;
     }
     TObjArray * emcrp = gime->EmcRecPoints() ;
     if(!emcrp){
-      cout << "AliPHOSAnalyze::Contamination --> Event " <<ievent 
-          << ",  Can't find EmcRecPoints " << endl ;
+      Error("Contamination", "Event %d,  Can't find EmcRecPoints", ievent) ;
       return ;
     }
     
@@ -942,17 +1073,17 @@ void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
     //=========== Make spectrum of the primary photons
     const TParticle * primary ;
     Int_t iPrimary ;
-    for( iPrimary = 0 ; iPrimary < gime->NPrimaries() ; iPrimary++){
-      primary = gime->Primary(iPrimary) ;
+    for( iPrimary = 0 ; iPrimary < fRunLoader->Stack()->GetNprimary() ; iPrimary++){
+      primary = fRunLoader->Stack()->Particle(iPrimary) ;
       Int_t primaryType = primary->GetPdgCode() ;
       if( primaryType == 22 ) {
-       //check, if photons folls onto PHOS
-       Int_t moduleNumber ;
-       Double_t primX, primZ ;
-       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
-       if(moduleNumber)
-         hPrimary->Fill(primary->Energy()) ;
-       
+       //check, if photons folls onto PHOS
+       Int_t moduleNumber ;
+       Double_t primX, primZ ;
+       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
+       if(moduleNumber)
+         hPrimary->Fill(primary->Energy()) ;
+       
       }
       
     }
@@ -965,7 +1096,7 @@ void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
       //fill histo spectrum of all RecParticles
       hAllRP->Fill(CorrectedEnergy(recParticle->Energy())) ;
       
-      //==========find the closest primary     
+      //==========find the closest primary       
       Int_t moduleNumberRec ;
       Double_t recX, recZ ;
       phosgeom->ImpactOnEmc(recParticle->Theta(), recParticle->Phi(), moduleNumberRec, recX, recZ) ;
@@ -984,105 +1115,105 @@ void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
       Double_t dXmin = 0.; 
       Double_t dZmin = 0. ;
       for ( index = 0 ; index < numberofprimaries ; index++){
-       primary = gime->Primary(listofprimaries[index]) ;
-       Int_t moduleNumber ;
-       Double_t primX, primZ ;
-       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
-       if(moduleNumberRec == moduleNumber) {
-         dX = recX - primX;
-         dZ = recZ - primZ;
-         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
-         if(minDistance > distance) {
-           minDistance = distance ;
-           dXmin = dX;
-           dZmin = dZ;
-           closestPrimary = listofprimaries[index] ;
-         }
-       }
+       primary = fRunLoader->Stack()->Particle(listofprimaries[index]) ;
+       Int_t moduleNumber ;
+       Double_t primX, primZ ;
+       phosgeom->ImpactOnEmc(primary->Theta(), primary->Phi(), moduleNumber, primX, primZ) ;
+       if(moduleNumberRec == moduleNumber) {
+         dX = recX - primX;
+         dZ = recZ - primZ;
+         distance = TMath::Sqrt(dX*dX + dZ*dZ) ;
+         if(minDistance > distance) {
+           minDistance = distance ;
+           dXmin = dX;
+           dZmin = dZ;
+           closestPrimary = listofprimaries[index] ;
+         }
+       }
       }
       
       //===========define the "type" of closest primary
       if(closestPrimary >=0 ){
-       Int_t primaryCode = -1;
-       const TParticle * primary = gime->Primary(closestPrimary) ;
-       Int_t primaryType = primary->GetPdgCode() ;
-       if(primaryType == 22) // photon ?
-         primaryCode = 0 ;
-       else
-         if(primaryType == 2112) // neutron
-           primaryCode = 1 ; 
-         else
-           if(primaryType == -2112) // Anti neutron
-             primaryCode = 2 ;
-           else
-             if(primaryType == -2122) //Anti proton
-               primaryCode = 4 ;
-             else {
-               TParticle tempo(*primary) ; 
-               if(tempo.GetPDG()->Charge())
-                 primaryCode = 3 ;
-             }
-
-       //==========Now look at the type of RecParticle
-       Float_t energy = CorrectedEnergy(recParticle->Energy()) ;
-       if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
-         hPhot->Fill(energy ) ;        
-         switch(primaryCode){
-         case 0:
-           hPhotReg->Fill(energy ) ; 
-           break ;
-         case 1:
-           hNReg->Fill(energy ) ; 
-           break ;
-         case 2:
-           hNBarReg->Fill(energy ) ; 
-           break ;
-         case 3:
-           hChargedReg->Fill(energy ) ;
-           break ;
-         case 4:
-           hPbarReg->Fill(energy ) ;
-           break ;
-         default:
-           break ;
-         }
-       }
-       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kCHARGEDEMFAST)||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kCHARGEDEMSLOW) ){ //with EM shower
-         hShape->Fill(energy ) ;
-         switch(primaryCode){
-         case 0:
-           hPhotEM->Fill(energy ) ; 
-           break ;
-         case 1:
-           hNEM->Fill(energy ) ; 
-           break ;
-         case 2:
-           hNBarEM->Fill(energy ) ; 
-           break ;
-         case 3:
-           hChargedEM->Fill(energy ) ; 
-           break ;
-         case 4:
-           hPbarEM->Fill(energy ) ; 
-           break ;
-         default:
-           break ;
-         }
-       }
-       
-       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALHAFAST) ||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW) ||
-          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALHASLOW) ) //nuetral
-         hVeto->Fill(energy ) ;
-       
-       //fill number of primaries identified as ...
-       if(primaryCode >= 0) // Primary code defined
-         counter[recParticle->GetType()][primaryCode]++ ; 
-       
+       Int_t primaryCode = -1;
+       const TParticle * primary = fRunLoader->Stack()->Particle(closestPrimary) ;
+       Int_t primaryType = primary->GetPdgCode() ;
+       if(primaryType == 22) // photon ?
+         primaryCode = 0 ;
+       else
+         if(primaryType == 2112) // neutron
+           primaryCode = 1 ; 
+         else
+           if(primaryType == -2112) // Anti neutron
+             primaryCode = 2 ;
+           else
+             if(primaryType == -2122) //Anti proton
+              primaryCode = 4 ;
+             else {
+              TParticle tempo(*primary) ; 
+              if(tempo.GetPDG()->Charge())
+                primaryCode = 3 ;
+             }
+
+       //==========Now look at the type of RecParticle
+       Float_t energy = CorrectedEnergy(recParticle->Energy()) ;
+       if(recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST){
+         hPhot->Fill(energy ) ;        
+         switch(primaryCode){
+         case 0:
+           hPhotReg->Fill(energy ) ; 
+           break ;
+         case 1:
+           hNReg->Fill(energy ) ; 
+           break ;
+         case 2:
+           hNBarReg->Fill(energy ) ; 
+           break ;
+         case 3:
+           hChargedReg->Fill(energy ) ;
+           break ;
+         case 4:
+           hPbarReg->Fill(energy ) ;
+           break ;
+         default:
+           break ;
+         }
+       }
+       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kCHARGEDEMFAST)||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW)||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kCHARGEDEMSLOW) ){ //with EM shower
+         hShape->Fill(energy ) ;
+         switch(primaryCode){
+         case 0:
+           hPhotEM->Fill(energy ) ; 
+           break ;
+         case 1:
+           hNEM->Fill(energy ) ; 
+           break ;
+         case 2:
+           hNBarEM->Fill(energy ) ; 
+           break ;
+         case 3:
+           hChargedEM->Fill(energy ) ; 
+           break ;
+         case 4:
+           hPbarEM->Fill(energy ) ; 
+           break ;
+         default:
+           break ;
+         }
+       }
+       
+       if((recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMFAST)||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALHAFAST) ||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALEMSLOW) ||
+          (recParticle->GetType() == AliPHOSFastRecParticle::kNEUTRALHASLOW) ) //nuetral
+         hVeto->Fill(energy ) ;
+       
+       //fill number of primaries identified as ...
+       if(primaryCode >= 0) // Primary code defined
+         counter[recParticle->GetType()][primaryCode]++ ; 
+       
       }
       
     } // no closest primary found
@@ -1114,46 +1245,47 @@ void AliPHOSAnalyze::Contamination(const char* RecPointsTitle){
   
   //print Final Table
   maxevent = (Int_t)gAlice->TreeE()->GetEntries() ; 
- //  cout << "Resolutions: Analyzed " << gime->MaxEvent() << " event(s)" << endl ;
 
-  cout << "Resolutions: Analyzed " << maxevent << " event(s)" << endl ;
-  cout << endl ;
-  
-  cout << "        Primary:    Photon  Neutron  Antineutron  Charged hadron   AntiProton" << endl ; 
-  cout << "--------------------------------------------------------------------------------" << endl ;
-  cout << "         kGAMMA: " 
-       << setw(8) << counter[2][0] << setw(9)  << counter[2][1] << setw(13) << counter[2][2] 
-       << setw(15)<< counter[2][3] << setw(13) << counter[2][4] << endl ;
-  cout << "       kGAMMAHA: " 
-       << setw(8) << counter[3][0] << setw(9)  << counter[3][1] << setw(13) << counter[3][2] 
-       << setw(15)<< counter[3][3] << setw(13) << counter[3][4] << endl ;
-  cout << "     kNEUTRALEM: " 
-       << setw(8) << counter[0][0] << setw(9)  << counter[0][1] << setw(13) << counter[0][2] 
-       << setw(15)<< counter[0][3] << setw(13) << counter[0][4] << endl ;
-  cout << "     kNEUTRALHA: " 
-       << setw(8) << counter[1][0] << setw(9)  << counter[1][1] << setw(13) << counter[1][2] 
-       << setw(15)<< counter[1][3] << setw(13) << counter[1][4] << endl ;
-  cout << "      kABSURDEM: " 
-       << setw(8) << counter[4][0] << setw(9)  << counter[4][1] << setw(13) << counter[4][2] 
-       << setw(15)<< counter[4][3] << setw(13) << counter[4][4] << endl ;
-  cout << "      kABSURDHA: " 
-       << setw(8) << counter[5][0] << setw(9)  << counter[5][1] << setw(13) << counter[5][2] 
-       << setw(15)<< counter[5][3] << setw(13) << counter[5][4] << endl ;
-  cout << "      kELECTRON: " 
-       << setw(8) << counter[6][0] << setw(9)  << counter[6][1] << setw(13) << counter[6][2] 
-       << setw(15)<< counter[6][3] << setw(13) << counter[6][4] << endl ; 
-  cout << "     kCHARGEDHA: " 
-       << setw(8) << counter[7][0] << setw(9)  << counter[7][1] << setw(13) << counter[7][2] 
-       << setw(15)<< counter[7][3] << setw(13) << counter[7][4] << endl ;
-  cout << "--------------------------------------------------------------------------------" << endl ;
-      
+  TString message ; 
+  message  = "Resolutions: Analyzed %d event(s)\n" ; 
+  message += "        Primary:    Photon  Neutron  Antineutron  Charged hadron   AntiProton\n" ; 
+  message += "--------------------------------------------------------------------------------\n" ;
+  message += "         kGAMMA: " ; 
+  message += "%d %d %d %d %d\n" ; 
+  message += "       kGAMMAHA: " ;
+  message += "%d %d %d %d %d\n" ; 
+  message += "     kNEUTRALEM: " ; 
+  message += "%d %d %d %d %d\n" ; 
+  message += "     kNEUTRALHA: " ; 
+  message += "%d %d %d %d %d\n" ;
+  message += "      kABSURDEM: ";
+  message += "%d %d %d %d %d\n" ;
+  message += "      kABSURDHA: " ;
+  message += "%d %d %d %d %d\n" ;
+  message += "      kELECTRON: " ;
+  message += "%d %d %d %d %d\n" ;
+  message += "     kCHARGEDHA: " ;  
+  message += "%d %d %d %d %d\n" ;
+   
+  message += "--------------------------------------------------------------------------------" ;
+
   Int_t totalInd = 0 ;
   for(i1 = 0; i1<8; i1++)
     for(i2 = 0; i2<5; i2++)
       totalInd+=counter[i1][i2] ;
-  cout << "Indentified particles: " << totalInd << endl ;
+  message += "Indentified particles: %d" ; 
   
-}
-
-
+ Info("Contamination", message.Data(), maxevent, 
+      counter[2][0], counter[2][1], counter[2][2], counter[2][3], counter[2][4], 
+      counter[3][0], counter[3][1], counter[3][2], counter[3][3], counter[3][4], 
+      counter[0][0], counter[0][1], counter[0][2], counter[0][3], counter[0][4], 
+      counter[1][0], counter[1][1], counter[1][2], counter[1][3], counter[1][4], 
+      counter[4][0], counter[4][1], counter[4][2], counter[4][3], counter[4][4], 
+      counter[5][0], counter[5][1], counter[5][2], counter[5][3], counter[5][4], 
+      counter[6][0], counter[6][1], counter[6][2], counter[6][3], counter[6][4], 
+      counter[7][0], counter[7][1], counter[7][2], counter[7][3], counter[7][4], 
+      totalInd ) ;
 
+}