]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG4/PartCorrDep/AliAnaPi0EbE.cxx
Remove/comment out the code related to signal plus bacround mixing, since it is avail...
[u/mrichter/AliRoot.git] / PWG4 / PartCorrDep / AliAnaPi0EbE.cxx
index 67d4b59780f8f8fa7ffbfd8d6e66b1a501b8e003..4de6c122e89e69c6a88a60ac60ee606fb4d9a0ab 100755 (executable)
-/**************************************************************************\r
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *\r
- *                                                                        *\r
- * Author: The ALICE Off-line Project.                                    *\r
- * Contributors are mentioned in the code where appropriate.              *\r
- *                                                                        *\r
- * Permission to use, copy, modify and distribute this software and its   *\r
- * documentation strictly for non-commercial purposes iGetEntriesFast(s hereby granted   *\r
- * without fee, provided that the above copyright notice appears in all   *\r
- * copies and that both the copyright notice and this permission notice   *\r
- * appear in the supporting documentation. The authors make no claims     *\r
- * about the suitability of this software for any purpose. It is          *\r
- * provided "as is" without express or implied warranty.                  *\r
- **************************************************************************/\r
-/* $Id: AliAnaPi0EbE.cxx 28688 2008-09-11 15:04:07Z gconesab $ */\r
-\r
-//_________________________________________________________________________\r
-// Class for the analysis of high pT pi0 event by event\r
-// Pi0 identified by one of the following:\r
-//  -Invariant mass of 2 cluster in calorimeter\r
-//  -Shower shape analysis in calorimeter\r
-//  -Invariant mass of one cluster in calorimeter and one photon reconstructed in TPC (in near future)\r
-//\r
-// -- Author: Gustavo Conesa (LNF-INFN) &  Raphaelle Ichou (SUBATECH)\r
-//////////////////////////////////////////////////////////////////////////////\r
-  \r
-  \r
-// --- ROOT system --- \r
-#include <TList.h>\r
-//#include "Riostream.h"\r
-\r
-// --- Analysis system --- \r
-#include "AliAnaPi0EbE.h" \r
-#include "AliLog.h"\r
-#include "AliCaloTrackReader.h"\r
-#include "AliIsolationCut.h"\r
-#include "AliNeutralMesonSelection.h"\r
-#include "AliCaloPID.h"\r
-#include "AliMCAnalysisUtils.h"\r
-#include "AliAODPWG4ParticleCorrelation.h"\r
-    #include "AliStack.h"\r
-ClassImp(AliAnaPi0EbE)\r
-  \r
-//____________________________________________________________________________\r
-AliAnaPi0EbE::AliAnaPi0EbE() : \r
-AliAnaPartCorrBaseClass(),  fAnaType(kIMCalo),fCalorimeter(""),\r
-fMinDist(0.),fMinDist2(0.),fMinDist3(0.),      \r
-fInputAODGammaConv(0x0),fInputAODGammaConvName(""),\r
-fhPtPi0(0),fhPhiPi0(0),fhEtaPi0(0), \r
-fhPtMCNoPi0(0),fhPhiMCNoPi0(0),fhEtaMCNoPi0(0), \r
-fhPtMCPi0(0),fhPhiMCPi0(0),fhEtaMCPi0(0)\r
-{\r
-       //default ctor\r
-       \r
-       //Initialize parameters\r
-       InitParameters();\r
-       \r
-}\r
-\r
-//____________________________________________________________________________\r
-AliAnaPi0EbE::AliAnaPi0EbE(const AliAnaPi0EbE & p) : \r
-AliAnaPartCorrBaseClass(p),  fAnaType(p.fAnaType), fCalorimeter(p.fCalorimeter),\r
-fMinDist(p.fMinDist),fMinDist2(p.fMinDist2), fMinDist3(p.fMinDist3),\r
-fInputAODGammaConv(new TClonesArray(*p.fInputAODGammaConv)),\r
-fInputAODGammaConvName(p.fInputAODGammaConvName),\r
-fhPtPi0(p.fhPtPi0),fhPhiPi0(p.fhPhiPi0),fhEtaPi0(p.fhEtaPi0), \r
-fhPtMCNoPi0(p.fhPtMCNoPi0),fhPhiMCNoPi0(p.fhPhiMCNoPi0),fhEtaMCNoPi0(p.fhEtaMCNoPi0), \r
-fhPtMCPi0(p.fhPtMCPi0),fhPhiMCPi0(p.fhPhiMCPi0),fhEtaMCPi0(p.fhEtaMCPi0) \r
-{\r
-       // cpy ctor\r
-}\r
-\r
-//_________________________________________________________________________\r
-AliAnaPi0EbE & AliAnaPi0EbE::operator = (const AliAnaPi0EbE & p)\r
-{\r
-       // assignment operator\r
-       \r
-       if(&p == this) return *this;\r
-       \r
-       fAnaType     = p.fAnaType ;\r
-       fCalorimeter = p.fCalorimeter ;\r
-       fMinDist     = p.fMinDist;\r
-       fMinDist2    = p.fMinDist2;\r
-       fMinDist3    = p.fMinDist3;\r
-       \r
-       fInputAODGammaConv     = new TClonesArray(*p.fInputAODGammaConv) ;\r
-       fInputAODGammaConvName = p.fInputAODGammaConvName ;\r
-       \r
-       fhPtPi0 = p.fhPtPi0; fhPhiPi0 = p.fhPhiPi0; fhEtaPi0 = p.fhEtaPi0;  \r
-       fhPtMCNoPi0 = p.fhPtMCNoPi0; fhPhiMCNoPi0 = p.fhPhiMCNoPi0; fhEtaMCNoPi0 = p.fhEtaMCPi0;  \r
-       fhPtMCPi0 = p.fhPtMCPi0; fhPhiMCPi0 = p.fhPhiMCPi0; fhEtaMCPi0 = p.fhEtaMCPi0;  \r
-       \r
-       return *this;\r
-       \r
-}\r
-\r
-//____________________________________________________________________________\r
-AliAnaPi0EbE::~AliAnaPi0EbE() \r
-{\r
-       //dtor\r
-       if(fInputAODGammaConv){\r
-               fInputAODGammaConv->Clear() ; \r
-               delete fInputAODGammaConv ;\r
-       }\r
-}\r
-\r
-//________________________________________________________________________\r
-TList *  AliAnaPi0EbE::GetCreateOutputObjects()\r
-{  \r
-       // Create histograms to be saved in output file and \r
-       // store them in outputContainer\r
-       TList * outputContainer = new TList() ; \r
-       outputContainer->SetName("Pi0EbEHistos") ; \r
-       \r
-       Int_t nptbins  = GetHistoNPtBins();\r
-       Int_t nphibins = GetHistoNPhiBins();\r
-       Int_t netabins = GetHistoNEtaBins();\r
-       Float_t ptmax  = GetHistoPtMax();\r
-       Float_t phimax = GetHistoPhiMax();\r
-       Float_t etamax = GetHistoEtaMax();\r
-       Float_t ptmin  = GetHistoPtMin();\r
-       Float_t phimin = GetHistoPhiMin();\r
-       Float_t etamin = GetHistoEtaMin();      \r
-       \r
-       fhPtPi0  = new TH1F("hPtPi0","Number of identified  #pi^{0} decay",nptbins,ptmin,ptmax); \r
-       fhPtPi0->SetYTitle("N");\r
-       fhPtPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");\r
-       outputContainer->Add(fhPtPi0) ; \r
-       \r
-       fhPhiPi0  = new TH2F\r
-    ("hPhiPi0","#phi_{#pi^{0}}",nptbins,ptmin,ptmax,nphibins,phimin,phimax); \r
-       fhPhiPi0->SetYTitle("#phi");\r
-       fhPhiPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-       outputContainer->Add(fhPhiPi0) ; \r
-       \r
-       fhEtaPi0  = new TH2F\r
-    ("hEtaPi0","#phi_{#pi^{0}}",nptbins,ptmin,ptmax,netabins,etamin,etamax); \r
-       fhEtaPi0->SetYTitle("#eta");\r
-       fhEtaPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-       outputContainer->Add(fhEtaPi0) ;\r
-       \r
-       if(IsDataMC()){\r
-               \r
-               fhPtMCPi0  = new TH1F("hPtMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax); \r
-               fhPtMCPi0->SetYTitle("N");\r
-               fhPtMCPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");\r
-               outputContainer->Add(fhPtMCPi0) ; \r
-               \r
-               fhPhiMCPi0  = new TH2F\r
-               ("hPhiMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax,nphibins,phimin,phimax); \r
-               fhPhiMCPi0->SetYTitle("#phi");\r
-               fhPhiMCPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-               outputContainer->Add(fhPhiMCPi0) ; \r
-               \r
-               fhEtaMCPi0  = new TH2F\r
-               ("hEtaMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax,netabins,etamin,etamax); \r
-               fhEtaMCPi0->SetYTitle("#eta");\r
-               fhEtaMCPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-               outputContainer->Add(fhEtaMCPi0) ;\r
-               \r
-               fhPtMCNoPi0  = new TH1F("hPtMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax); \r
-               fhPtMCNoPi0->SetYTitle("N");\r
-               fhPtMCNoPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");\r
-               outputContainer->Add(fhPtMCNoPi0) ; \r
-               \r
-               fhPhiMCNoPi0  = new TH2F\r
-               ("hPhiMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax,nphibins,phimin,phimax); \r
-               fhPhiMCNoPi0->SetYTitle("#phi");\r
-               fhPhiMCNoPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-               outputContainer->Add(fhPhiMCNoPi0) ; \r
-               \r
-               fhEtaMCNoPi0  = new TH2F\r
-               ("hEtaMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax,netabins,etamin,etamax); \r
-               fhEtaMCNoPi0->SetYTitle("#eta");\r
-               fhEtaMCNoPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");\r
-               outputContainer->Add(fhEtaMCNoPi0) ;\r
-               \r
-       }//Histos with MC\r
-    \r
-       \r
-       //Keep neutral meson selection histograms if requiered\r
-       //Setting done in AliNeutralMesonSelection\r
-       \r
-       if(fAnaType!=kSSCalo && GetNeutralMesonSelection()){\r
-               \r
-       TList * nmsHistos = GetNeutralMesonSelection()->GetCreateOutputObjects() ;\r
-       if(GetNeutralMesonSelection()->AreNeutralMesonSelectionHistosKept())\r
-                       for(Int_t i = 0; i < nmsHistos->GetEntries(); i++) outputContainer->Add(nmsHistos->At(i)) ;\r
-       }\r
-       \r
-       //Save parameters used for analysis\r
-       TString parList ; //this will be list of parameters used for this analysis.\r
-       char onePar[255] ;\r
-       \r
-       sprintf(onePar,"--- AliAnaPi0EbE ---\n") ;\r
-       parList+=onePar ;       \r
-       sprintf(onePar,"fAnaType=%d (Pi0 selection type) \n",fAnaType) ;\r
-       parList+=onePar ;\r
-       \r
-       if(fAnaType == kSSCalo){\r
-               sprintf(onePar,"Calorimeter: %s\n",fCalorimeter.Data()) ;\r
-               parList+=onePar ;\r
-               sprintf(onePar,"fMinDist =%2.2f (Minimal distance to bad channel to accept cluster) \n",fMinDist) ;\r
-               parList+=onePar ;\r
-               sprintf(onePar,"fMinDist2=%2.2f (Cuts on Minimal distance to study acceptance evaluation) \n",fMinDist2) ;\r
-               parList+=onePar ;\r
-               sprintf(onePar,"fMinDist3=%2.2f (One more cut on distance used for acceptance-efficiency study) \n",fMinDist3) ;\r
-               parList+=onePar ;\r
-       }\r
-       \r
-       //Get parameters set in base class.\r
-       parList += GetBaseParametersList() ;\r
-       \r
-       //Get parameters set in PID class.\r
-       if(fAnaType == kSSCalo) parList += GetCaloPID()->GetPIDParametersList() ;\r
-       \r
-       TObjString *oString= new TObjString(parList) ;\r
-       outputContainer->Add(oString);\r
-       \r
-       return outputContainer ;\r
-       \r
-}\r
-\r
-//__________________________________________________________________\r
-void  AliAnaPi0EbE::MakeAnalysisFillAOD() \r
-{\r
-       //Do analysis and fill aods\r
-       \r
-       switch(fAnaType) \r
-       {\r
-               case kIMCalo:\r
-                       MakeInvMassInCalorimeter();\r
-                       break;\r
-                       \r
-               case kSSCalo:\r
-                       MakeShowerShapeIdentification();\r
-                       break;\r
-                       \r
-               case kIMCaloTracks:\r
-                       MakeInvMassInCalorimeterAndCTS();\r
-                       break;\r
-                       \r
-       }\r
-}\r
-\r
-//__________________________________________________________________\r
-void  AliAnaPi0EbE::MakeInvMassInCalorimeter() \r
-{\r
-       //Do analysis and fill aods\r
-       //Search for the photon decay in calorimeters\r
-       //Read photon list from AOD, produced in class AliAnaPhoton\r
-       //Check if 2 photons have the mass of the pi0.\r
-       \r
-       TLorentzVector mom1;\r
-       TLorentzVector mom2;\r
-       TLorentzVector mom ;\r
-       Int_t tag1 =-1;\r
-       Int_t tag2 =-1;\r
-       Int_t tag = -1;\r
-       \r
-       if(!GetInputAODBranch())\r
-               AliFatal(Form("MakeInvMassInCalo: No input calo photons in AOD with name branch < %s > \n",GetInputAODName().Data()));\r
-       \r
-       for(Int_t iphoton = 0; iphoton < GetInputAODBranch()->GetEntriesFast(); iphoton++){\r
-               AliAODPWG4Particle * photon1 =  (AliAODPWG4Particle*) (GetInputAODBranch()->At(iphoton));\r
-               mom1 = *(photon1->Momentum());\r
-               \r
-       \r
-               for(Int_t jphoton = iphoton+1; jphoton < GetInputAODBranch()->GetEntriesFast()-1; jphoton++){\r
-                       \r
-                       AliAODPWG4ParticleCorrelation * photon2 =  (AliAODPWG4ParticleCorrelation*) (GetInputAODBranch()->At(jphoton));\r
-                       mom2 = *(photon2->Momentum());\r
-               \r
-                       //Select good pair (good phi, pt cuts, aperture and invariant mass)\r
-                       if(GetNeutralMesonSelection()->SelectPair(mom1, mom2))\r
-                       {\r
-                               if(GetDebug()>1) \r
-                                       printf("Selected gamma pair: pt %f, phi %f, eta%f \n",(mom1+mom2).Pt(), (mom1+mom2).Phi()*180./3.1416, (mom1+mom2).Eta());\r
-                               \r
-                                               //Play with the MC stack if available\r
-                               if(IsDataMC()){\r
-                                       //Check origin of the candidates\r
-                                       tag1 = GetMCAnalysisUtils()->CheckOrigin(photon1->GetLabel(), GetMCStack());\r
-                                       tag2 = GetMCAnalysisUtils()->CheckOrigin(photon2->GetLabel(), GetMCStack());\r
-                                       \r
-                                       if(GetDebug() > 0) printf("Origin of: photon1 %d; photon2 %d \n",tag1, tag2);\r
-                                       if(tag1 == AliMCAnalysisUtils::kMCPi0Decay && tag2 == AliMCAnalysisUtils::kMCPi0Decay){\r
-                                       \r
-                                        //Check if pi0 mother is the same\r
-                                       Int_t label1 = photon1->GetLabel();\r
-                                       TParticle * mother1 = GetMCStack()->Particle(label1);//photon in kine tree\r
-                                       label1 = mother1->GetFirstMother();\r
-                                       //mother1 = GetMCStack()->Particle(label1);//pi0\r
-                                       \r
-                                       Int_t label2 = photon2->GetLabel();\r
-                                       TParticle * mother2 = GetMCStack()->Particle(label2);//photon in kine tree\r
-                                       label2 = mother2->GetFirstMother();\r
-                                       //mother2 = GetMCStack()->Particle(label2);//pi0\r
-                                       \r
-                                       //printf("mother1 %d, mother2 %d\n",label1,label2);\r
-                                       if(label1 == label2)\r
-                                               tag = AliMCAnalysisUtils::kMCPi0;\r
-                                       }\r
-                               }//Work with stack also   \r
-                               \r
-                               //Create AOD for analysis\r
-                               mom = mom1+mom2;\r
-                               AliAODPWG4Particle pi0 = AliAODPWG4Particle(mom);\r
-                               //pi0.SetLabel(calo->GetLabel(0));\r
-                               pi0.SetPdg(AliCaloPID::kPi0);\r
-                               pi0.SetDetector(photon1->GetDetector());\r
-                               pi0.SetTag(tag);  \r
-                               //Set the indeces of the original caloclusters  \r
-                               pi0.SetCaloLabel(photon1->GetCaloLabel(0), photon2->GetCaloLabel(0));\r
-                               AddAODParticle(pi0);\r
-                       }//pi0\r
-               }//2n photon loop\r
-               \r
-       }//1st photon loop\r
-       \r
-       if(GetDebug() > 1) printf("End fill AODs \n");  \r
-       \r
-}\r
-\r
-//__________________________________________________________________\r
-void  AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() \r
-{\r
-       //Do analysis and fill aods\r
-       //Search for the photon decay in calorimeters\r
-       //Read photon list from AOD, produced in class AliAnaPhoton and AliGammaConversion\r
-       //Check if 2 photons have the mass of the pi0.\r
-       \r
-       TLorentzVector mom1;\r
-       TLorentzVector mom2;\r
-       TLorentzVector mom ;\r
-       Int_t tag1 =-1;\r
-       Int_t tag2 =-1;\r
-       Int_t tag = -1;\r
-       \r
-       if(!GetInputAODBranch())\r
-               AliFatal(Form("MakeInvMassInCalo: No input calo photons in AOD branch with name < %s > \n",GetInputAODName().Data()));\r
-       \r
-       for(Int_t iphoton = 0; iphoton < GetInputAODBranch()->GetEntriesFast(); iphoton++){\r
-               AliAODPWG4Particle * photon1 =  (AliAODPWG4Particle*) (GetInputAODBranch()->At(iphoton));\r
-               mom1 = *(photon1->Momentum());\r
-               \r
-               //Play with the MC stack if available\r
-               fInputAODGammaConv = (TClonesArray *) GetReader()->GetAOD()->FindListObject(fInputAODGammaConvName);\r
-               if(!fInputAODGammaConv) \r
-                       AliFatal(Form("MakeInvMassInCaloAndCTS: No input gamma conversions in AOD branch with name < %s >",fInputAODGammaConvName.Data()));     \r
-               \r
-               for(Int_t jphoton = iphoton+1; jphoton < fInputAODGammaConv->GetEntriesFast()-1; jphoton++){\r
-                       AliAODPWG4ParticleCorrelation * photon2 =  (AliAODPWG4ParticleCorrelation*) (fInputAODGammaConv->At(jphoton));\r
-                       mom2 = *(photon2->Momentum());\r
-                       //Select good pair (good phi, pt cuts, aperture and invariant mass)\r
-                       if(GetNeutralMesonSelection()->SelectPair(mom1, mom2)){\r
-                               if(GetDebug() > 1) printf("Selected gamma pair: pt %f, phi %f, eta%f\n",(mom1+mom2).Pt(), (mom1+mom2).Phi()*180./3.1416, (mom1+mom2).Eta());\r
-                               \r
-                               if(IsDataMC()){\r
-                                       //Check origin of the candidates\r
-                                       tag1 = GetMCAnalysisUtils()->CheckOrigin(photon1->GetLabel(), GetMCStack());\r
-                                       tag2 = GetMCAnalysisUtils()->CheckOrigin(photon2->GetLabel(), GetMCStack());\r
-                                       if(GetDebug() > 0) printf("Origin of: photon1 %d; photon2 %d \n",tag1, tag2);\r
-                                       if(tag1 == AliMCAnalysisUtils::kMCPi0Decay && tag2 == AliMCAnalysisUtils::kMCPi0Decay){\r
-                                               //Check if pi0 mother is the same\r
-                                               Int_t label1 = photon1->GetLabel();\r
-                                               TParticle * mother1 = GetMCStack()->Particle(label1);//photon in kine tree\r
-                                               label1 = mother1->GetFirstMother();\r
-                                               //mother1 = GetMCStack()->Particle(label1);//pi0\r
-                                       \r
-                                               Int_t label2 = photon2->GetLabel();\r
-                                               TParticle * mother2 = GetMCStack()->Particle(label2);//photon in kine tree\r
-                                               label2 = mother2->GetFirstMother();\r
-                                               //mother2 = GetMCStack()->Particle(label2);//pi0\r
-                                       \r
-                                               //printf("mother1 %d, mother2 %d\n",label1,label2);\r
-                                               if(label1 == label2)\r
-                                                       tag = AliMCAnalysisUtils::kMCPi0;\r
-                                       }\r
-                               }//Work with stack also   \r
-                               \r
-                               //Create AOD for analysis\r
-                               mom = mom1+mom2;\r
-                               AliAODPWG4ParticleCorrelation pi0 = AliAODPWG4ParticleCorrelation(mom);\r
-                               //pi0.SetLabel(calo->GetLabel(0));\r
-                               pi0.SetPdg(AliCaloPID::kPi0);\r
-                               pi0.SetDetector(photon1->GetDetector());\r
-                               pi0.SetTag(tag);\r
-                               //Set the indeces of the original tracks or caloclusters  \r
-                               pi0.SetCaloLabel(photon1->GetCaloLabel(0), -1);\r
-                               pi0.SetTrackLabel(photon2->GetTrackLabel(0), photon2->GetTrackLabel(1));\r
-                               AddAODParticle(pi0);\r
-                       }//pi0\r
-               }//2n photon loop\r
-               \r
-       }//1st photon loop\r
-       \r
-       if(GetDebug() > 1) printf("End fill AODs \n");  \r
-       \r
-}\r
-\r
-\r
-//__________________________________________________________________\r
-void  AliAnaPi0EbE::MakeShowerShapeIdentification() \r
-{\r
-       //Search for pi0 in fCalorimeter with shower shape analysis \r
-       \r
-       TClonesArray * pl = new TClonesArray; \r
-       \r
-       //Get vertex for photon momentum calculation\r
-       Double_t vertex[]={0,0,0} ; //vertex ;\r
-       if(!GetReader()->GetDataType()== AliCaloTrackReader::kMC) GetReader()->GetVertex(vertex);\r
-       \r
-       //Select the Calorimeter of the photon\r
-       if(fCalorimeter == "PHOS")\r
-               pl = GetAODPHOS();\r
-       else if (fCalorimeter == "EMCAL")\r
-               pl = GetAODEMCAL();\r
-       //Fill AODCaloClusters and AODParticle with PHOS aods\r
-       TLorentzVector mom ;\r
-       for(Int_t icalo = 0; icalo < pl->GetEntriesFast(); icalo++){\r
-               AliAODCaloCluster * calo = (AliAODCaloCluster*) (pl->At(icalo));        \r
-               \r
-               //Cluster selection, not charged, with photon id and in fidutial cut\r
-               //Get Momentum vector, \r
-               calo->GetMomentum(mom,vertex);//Assume that come from vertex in straight line\r
-               //If too small or big pt, skip it\r
-               if(mom.Pt() < GetMinPt() || mom.Pt() > GetMaxPt() ) continue ; \r
-               //Check acceptance selection\r
-               if(IsFidutialCutOn()){\r
-                       Bool_t in = GetFidutialCut()->IsInFidutialCut(mom,fCalorimeter) ;\r
-                       if(! in ) continue ;\r
-               }\r
-               \r
-               //Create AOD for analysis\r
-               AliAODPWG4Particle aodph = AliAODPWG4Particle(mom);\r
-               aodph.SetLabel(calo->GetLabel(0));\r
-               aodph.SetDetector(fCalorimeter);\r
-               if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: Min pt cut and fidutial cut passed: pt %3.2f, phi %2.2f, eta %1.2f\n",aodph.Pt(),aodph.Phi(),aodph.Eta());    \r
-               \r
-               //Check Distance to Bad channel, set bit.\r
-               Double_t distBad=calo->GetDistToBadChannel() ; //Distance to bad channel\r
-               if(distBad < 0.) distBad=9999. ; //workout strange convension dist = -1. ;\r
-               if(distBad < fMinDist) //In bad channel (PHOS cristal size 2.2x2.2 cm)\r
-                       continue ;\r
-               \r
-               if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: Bad channel cut passed %4.2f\n",distBad);\r
-               \r
-               if(distBad > fMinDist3) aodph.SetDistToBad(2) ;\r
-               else if(distBad > fMinDist2) aodph.SetDistToBad(1) ; \r
-               else aodph.SetDistToBad(0) ;\r
-               \r
-               //Check PID\r
-               //PID selection or bit setting\r
-               if(GetReader()->GetDataType() == AliCaloTrackReader::kMC){\r
-                       //Get most probable PID, check PID weights (in MC this option is mandatory)\r
-                       aodph.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,calo->PID(),mom.E()));//PID with weights\r
-                       if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: PDG of identified particle %d\n",aodph.GetPdg());\r
-                       //If primary is not photon, skip it.\r
-                       if(aodph.GetPdg() != AliCaloPID::kPhoton) continue ;\r
-               }                                       \r
-               else if(IsCaloPIDOn()){\r
-                       //Skip matched clusters with tracks\r
-                       if(calo->GetNTracksMatched() > 0) continue ;\r
-                       \r
-                       //Get most probable PID, 2 options check PID weights \r
-                       //or redo PID, recommended option for EMCal.            \r
-                       if(!IsCaloPIDRecalculationOn())\r
-                               aodph.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,calo->PID(),mom.E()));//PID with weights\r
-                       else\r
-                               aodph.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,mom,calo));//PID recalculated\r
-                       \r
-                       if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: PDG of identified particle %d\n",aodph.GetPdg());\r
-                       \r
-                       //If cluster does not pass pid, not photon, skip it.\r
-                       if(aodph.GetPdg() != AliCaloPID::kPhoton) continue ;                    \r
-                       \r
-               }\r
-               else{\r
-                       //Set PID bits for later selection (AliAnaPi0 for example)\r
-                       //GetPDG already called in SetPIDBits.\r
-                       GetCaloPID()->SetPIDBits(fCalorimeter,calo,&aodph);\r
-                       if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: PID Bits set \n");            \r
-               }\r
-               \r
-               if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: Photon selection cuts passed: pT %3.2f, pdg %d\n",aodph.Pt(), aodph.GetPdg());\r
-               \r
-               //Play with the MC stack if available\r
-               //Check origin of the candidates\r
-               if(IsDataMC()){\r
-                       aodph.SetTag(GetMCAnalysisUtils()->CheckOrigin(calo->GetLabel(0),GetMCStack()));\r
-                       if(GetDebug() > 0) printf("AliAnaPi0EbE::FillAOD: Origin of candidate %d\n",aodph.GetTag());\r
-               }//Work with stack also   \r
-               \r
-               //Add AOD with photon object to aod branch\r
-               AddAODParticle(aodph);\r
-               \r
-       }//loop\r
-       \r
-       if(GetDebug() > 1) printf("AliAnaPhoton::FillAOD: End fill AODs \n");  \r
-       \r
-}\r
-//__________________________________________________________________\r
-void  AliAnaPi0EbE::MakeAnalysisFillHistograms() \r
-{\r
-       //Do analysis and fill histograms\r
-       \r
-       if(!GetOutputAODBranch())\r
-               AliFatal(Form("MakeInvMassInCalo: No output pi0 in AOD branch with name < %s > \n",GetOutputAODName().Data()));\r
-       \r
-       //Loop on stored AOD pi0\r
-       Int_t naod = GetOutputAODBranch()->GetEntriesFast();\r
-       if(GetDebug() > 0) printf("pi0 aod branch entries %d\n", naod);\r
-       \r
-       for(Int_t iaod = 0; iaod < naod ; iaod++){\r
-               \r
-               AliAODPWG4Particle* pi0 =  (AliAODPWG4Particle*) (GetOutputAODBranch()->At(iaod));\r
-               Int_t pdg = pi0->GetPdg();\r
-               \r
-               if(pdg != AliCaloPID::kPi0) continue;              \r
-               \r
-               //Fill pi0 histograms \r
-               Float_t pt = pi0->Pt();\r
-               Float_t phi = pi0->Phi();\r
-               Float_t eta = pi0->Eta();\r
-               \r
-               \r
-               fhPtPi0  ->Fill(pt);\r
-               fhPhiPi0 ->Fill(pt,phi);\r
-               fhEtaPi0 ->Fill(pt,eta);\r
-               \r
-               if(IsDataMC()){\r
-                       if(pi0->GetTag()== AliMCAnalysisUtils::kMCPi0){\r
-                               fhPtMCPi0  ->Fill(pt);\r
-                               fhPhiMCPi0 ->Fill(pt,phi);\r
-                               fhEtaMCPi0 ->Fill(pt,eta);\r
-                       }\r
-                       else{\r
-                               fhPtMCNoPi0  ->Fill(pt);\r
-                               fhPhiMCNoPi0 ->Fill(pt,phi);\r
-                               fhEtaMCNoPi0 ->Fill(pt,eta);\r
-                       }\r
-               }//Histograms with MC\r
-               \r
-       }// aod loop\r
-       \r
-}\r
-\r
-\r
-//____________________________________________________________________________\r
-void AliAnaPi0EbE::InitParameters()\r
-{\r
-       \r
-       //Initialize the parameters of the analysis.\r
-       SetOutputAODClassName("AliAODPWG4Particle");\r
-       SetOutputAODName("pi0s");\r
-       fInputAODGammaConvName = "gammaconv" ;\r
-       fAnaType = kIMCalo ;\r
-       fCalorimeter = "PHOS" ;\r
-       fMinDist  = 2.;\r
-       fMinDist2 = 4.;\r
-       fMinDist3 = 5.;\r
-       \r
-}\r
-\r
-//__________________________________________________________________\r
-void AliAnaPi0EbE::Print(const Option_t * opt) const\r
-{\r
-       \r
-       //Print some relevant parameters set for the analysis\r
-       if(! opt)\r
-               return;\r
-       \r
-       printf("**** Print %s %s ****\n", GetName(), GetTitle() ) ;\r
-       AliAnaPartCorrBaseClass::Print("");\r
-       printf("Analysis Type = %d \n",  fAnaType) ;\r
-       if(fAnaType == kSSCalo){     \r
-               printf("Calorimeter            =     %s\n", fCalorimeter.Data()) ;\r
-               printf("Min Distance to Bad Channel   = %2.1f\n",fMinDist);\r
-               printf("Min Distance to Bad Channel 2 = %2.1f\n",fMinDist2);\r
-               printf("Min Distance to Bad Channel 3 = %2.1f\n",fMinDist3); \r
-       } \r
-       printf("    \n") ;\r
-       \r
-} \r
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes iGetEntriesFast(s hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+/* $Id: AliAnaPi0EbE.cxx 28688 2008-09-11 15:04:07Z gconesab $ */
+
+//_________________________________________________________________________
+// Class for the analysis of high pT pi0 event by event
+// Pi0 identified by one of the following:
+//  -Invariant mass of 2 cluster in calorimeter
+//  -Shower shape analysis in calorimeter
+//  -Invariant mass of one cluster in calorimeter and one photon reconstructed in TPC (in near future)
+//
+// -- Author: Gustavo Conesa (LNF-INFN) &  Raphaelle Ichou (SUBATECH)
+//////////////////////////////////////////////////////////////////////////////
+  
+  
+// --- ROOT system --- 
+#include <TList.h>
+#include <TClonesArray.h>
+#include <TObjString.h>
+#include <TH2F.h>
+//#include "Riostream.h"
+
+// --- Analysis system --- 
+#include "AliAnaPi0EbE.h" 
+#include "AliCaloTrackReader.h"
+#include "AliIsolationCut.h"
+#include "AliNeutralMesonSelection.h"
+#include "AliCaloPID.h"
+#include "AliMCAnalysisUtils.h"
+#include "AliStack.h"
+#include "AliFiducialCut.h"
+#include "TParticle.h"
+#include "AliAODCaloCluster.h"
+#include "AliAODEvent.h"
+#include "AliAODMCParticle.h"
+
+ClassImp(AliAnaPi0EbE)
+  
+//____________________________________________________________________________
+AliAnaPi0EbE::AliAnaPi0EbE() : 
+AliAnaPartCorrBaseClass(),  fAnaType(kIMCalo),fCalorimeter(""),
+fMinDist(0.),fMinDist2(0.),fMinDist3(0.),      
+fInputAODGammaConv(0x0),fInputAODGammaConvName(""),
+fhPtPi0(0),fhPhiPi0(0),fhEtaPi0(0), 
+fhPtMCNoPi0(0),fhPhiMCNoPi0(0),fhEtaMCNoPi0(0), 
+fhPtMCPi0(0),fhPhiMCPi0(0),fhEtaMCPi0(0)
+{
+  //default ctor
+  
+  //Initialize parameters
+  InitParameters();
+  
+}
+/*
+//____________________________________________________________________________
+AliAnaPi0EbE::AliAnaPi0EbE(const AliAnaPi0EbE & p) : 
+AliAnaPartCorrBaseClass(p),  fAnaType(p.fAnaType), fCalorimeter(p.fCalorimeter),
+fMinDist(p.fMinDist),fMinDist2(p.fMinDist2), fMinDist3(p.fMinDist3),
+fInputAODGammaConv(new TClonesArray(*p.fInputAODGammaConv)),
+fInputAODGammaConvName(p.fInputAODGammaConvName),
+fhPtPi0(p.fhPtPi0),fhPhiPi0(p.fhPhiPi0),fhEtaPi0(p.fhEtaPi0), 
+fhPtMCNoPi0(p.fhPtMCNoPi0),fhPhiMCNoPi0(p.fhPhiMCNoPi0),fhEtaMCNoPi0(p.fhEtaMCNoPi0), 
+fhPtMCPi0(p.fhPtMCPi0),fhPhiMCPi0(p.fhPhiMCPi0),fhEtaMCPi0(p.fhEtaMCPi0) 
+{
+  // cpy ctor
+}
+
+//_________________________________________________________________________
+AliAnaPi0EbE & AliAnaPi0EbE::operator = (const AliAnaPi0EbE & p)
+{
+  // assignment operator
+  
+  if(&p == this) return *this;
+  
+  fAnaType     = p.fAnaType ;
+  fCalorimeter = p.fCalorimeter ;
+  fMinDist     = p.fMinDist;
+  fMinDist2    = p.fMinDist2;
+  fMinDist3    = p.fMinDist3;
+  
+  fInputAODGammaConv     = new TClonesArray(*p.fInputAODGammaConv) ;
+  fInputAODGammaConvName = p.fInputAODGammaConvName ;
+  
+  fhPtPi0 = p.fhPtPi0; fhPhiPi0 = p.fhPhiPi0; fhEtaPi0 = p.fhEtaPi0;  
+  fhPtMCNoPi0 = p.fhPtMCNoPi0; fhPhiMCNoPi0 = p.fhPhiMCNoPi0; fhEtaMCNoPi0 = p.fhEtaMCPi0;  
+  fhPtMCPi0 = p.fhPtMCPi0; fhPhiMCPi0 = p.fhPhiMCPi0; fhEtaMCPi0 = p.fhEtaMCPi0;  
+  
+  return *this;
+  
+}
+*/
+//____________________________________________________________________________
+AliAnaPi0EbE::~AliAnaPi0EbE() 
+{
+  //dtor
+  if(fInputAODGammaConv){
+    fInputAODGammaConv->Clear() ; 
+    delete fInputAODGammaConv ;
+  }
+}
+
+//________________________________________________________________________
+TObjString *  AliAnaPi0EbE::GetAnalysisCuts()
+{      
+       //Save parameters used for analysis
+        TString parList ; //this will be list of parameters used for this analysis.
+        char onePar[255] ;
+        
+        sprintf(onePar,"--- AliAnaPi0EbE ---\n") ;
+        parList+=onePar ;      
+        sprintf(onePar,"fAnaType=%d (Pi0 selection type) \n",fAnaType) ;
+        parList+=onePar ;
+        
+        if(fAnaType == kSSCalo){
+          sprintf(onePar,"Calorimeter: %s\n",fCalorimeter.Data()) ;
+          parList+=onePar ;
+          sprintf(onePar,"fMinDist =%2.2f (Minimal distance to bad channel to accept cluster) \n",fMinDist) ;
+          parList+=onePar ;
+          sprintf(onePar,"fMinDist2=%2.2f (Cuts on Minimal distance to study acceptance evaluation) \n",fMinDist2) ;
+          parList+=onePar ;
+          sprintf(onePar,"fMinDist3=%2.2f (One more cut on distance used for acceptance-efficiency study) \n",fMinDist3) ;
+          parList+=onePar ;
+        }
+        
+        //Get parameters set in base class.
+        parList += GetBaseParametersList() ;
+        
+        //Get parameters set in PID class.
+        if(fAnaType == kSSCalo) parList += GetCaloPID()->GetPIDParametersList() ;
+        
+        return new TObjString(parList) ;
+}
+
+//________________________________________________________________________
+TList *  AliAnaPi0EbE::GetCreateOutputObjects()
+{  
+  // Create histograms to be saved in output file and 
+  // store them in outputContainer
+  TList * outputContainer = new TList() ; 
+  outputContainer->SetName("Pi0EbEHistos") ; 
+  
+  Int_t nptbins  = GetHistoPtBins();
+  Int_t nphibins = GetHistoPhiBins();
+  Int_t netabins = GetHistoEtaBins();
+  Float_t ptmax  = GetHistoPtMax();
+  Float_t phimax = GetHistoPhiMax();
+  Float_t etamax = GetHistoEtaMax();
+  Float_t ptmin  = GetHistoPtMin();
+  Float_t phimin = GetHistoPhiMin();
+  Float_t etamin = GetHistoEtaMin();   
+  
+  fhPtPi0  = new TH1F("hPtPi0","Number of identified  #pi^{0} decay",nptbins,ptmin,ptmax); 
+  fhPtPi0->SetYTitle("N");
+  fhPtPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");
+  outputContainer->Add(fhPtPi0) ; 
+  
+  fhPhiPi0  = new TH2F
+    ("hPhiPi0","#phi_{#pi^{0}}",nptbins,ptmin,ptmax,nphibins,phimin,phimax); 
+  fhPhiPi0->SetYTitle("#phi");
+  fhPhiPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+  outputContainer->Add(fhPhiPi0) ; 
+  
+  fhEtaPi0  = new TH2F
+    ("hEtaPi0","#phi_{#pi^{0}}",nptbins,ptmin,ptmax,netabins,etamin,etamax); 
+  fhEtaPi0->SetYTitle("#eta");
+  fhEtaPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+  outputContainer->Add(fhEtaPi0) ;
+  
+  if(IsDataMC()) {
+    if((GetReader()->GetDataType() == AliCaloTrackReader::kMC && fAnaType!=kSSCalo) || 
+       GetReader()->GetDataType() != AliCaloTrackReader::kMC){
+      
+      fhPtMCPi0  = new TH1F("hPtMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax); 
+      fhPtMCPi0->SetYTitle("N");
+      fhPtMCPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");
+      outputContainer->Add(fhPtMCPi0) ; 
+      
+      fhPhiMCPi0  = new TH2F
+       ("hPhiMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax,nphibins,phimin,phimax); 
+      fhPhiMCPi0->SetYTitle("#phi");
+      fhPhiMCPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+      outputContainer->Add(fhPhiMCPi0) ; 
+      
+      fhEtaMCPi0  = new TH2F
+       ("hEtaMCPi0","Identified pi0 from pi0",nptbins,ptmin,ptmax,netabins,etamin,etamax); 
+      fhEtaMCPi0->SetYTitle("#eta");
+      fhEtaMCPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+      outputContainer->Add(fhEtaMCPi0) ;
+      
+      fhPtMCNoPi0  = new TH1F("hPtMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax); 
+      fhPtMCNoPi0->SetYTitle("N");
+      fhPtMCNoPi0->SetXTitle("p_{T #pi^{0}}(GeV/c)");
+      outputContainer->Add(fhPtMCNoPi0) ; 
+      
+      fhPhiMCNoPi0  = new TH2F
+       ("hPhiMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax,nphibins,phimin,phimax); 
+      fhPhiMCNoPi0->SetYTitle("#phi");
+      fhPhiMCNoPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+      outputContainer->Add(fhPhiMCNoPi0) ; 
+      
+      fhEtaMCNoPi0  = new TH2F
+       ("hEtaMCNoPi0","Identified pi0 not from pi0",nptbins,ptmin,ptmax,netabins,etamin,etamax); 
+      fhEtaMCNoPi0->SetYTitle("#eta");
+      fhEtaMCNoPi0->SetXTitle("p_{T #pi^{0}} (GeV/c)");
+      outputContainer->Add(fhEtaMCNoPi0) ;
+      
+    }
+  }//Histos with MC
+  
+  
+  //Keep neutral meson selection histograms if requiered
+  //Setting done in AliNeutralMesonSelection
+  
+  if(fAnaType!=kSSCalo && GetNeutralMesonSelection()){
+    
+    TList * nmsHistos = GetNeutralMesonSelection()->GetCreateOutputObjects() ;
+    if(GetNeutralMesonSelection()->AreNeutralMesonSelectionHistosKept())
+      for(Int_t i = 0; i < nmsHistos->GetEntries(); i++) outputContainer->Add(nmsHistos->At(i)) ;
+       delete nmsHistos;
+         
+  }
+  
+  return outputContainer ;
+  
+}
+
+//__________________________________________________________________
+void  AliAnaPi0EbE::MakeAnalysisFillAOD() 
+{
+  //Do analysis and fill aods
+  
+  switch(fAnaType) 
+    {
+    case kIMCalo:
+      MakeInvMassInCalorimeter();
+      break;
+      
+    case kSSCalo:
+      MakeShowerShapeIdentification();
+      break;
+      
+    case kIMCaloTracks:
+      MakeInvMassInCalorimeterAndCTS();
+      break;
+      
+    }
+}
+
+//__________________________________________________________________
+void  AliAnaPi0EbE::MakeInvMassInCalorimeter() 
+{
+    //Do analysis and fill aods
+    //Search for the photon decay in calorimeters
+    //Read photon list from AOD, produced in class AliAnaPhoton
+    //Check if 2 photons have the mass of the pi0.
+  
+  TLorentzVector mom1;
+  TLorentzVector mom2;
+  TLorentzVector mom ;
+  Int_t tag1 = 0;
+  Int_t tag2 = 0;
+  Int_t tag  = 0;
+  
+  if(!GetInputAODBranch()){
+    printf("AliAnaPi0EbE::MakeInvMassInCalorimeter() - No input calo photons in AOD with name branch < %s >, STOP \n",GetInputAODName().Data());
+    abort();
+  }
+  for(Int_t iphoton = 0; iphoton < GetInputAODBranch()->GetEntriesFast(); iphoton++){
+    AliAODPWG4Particle * photon1 =  (AliAODPWG4Particle*) (GetInputAODBranch()->At(iphoton));
+    
+    Int_t evtIndex1 = 0 ; 
+    if(GetMixedEvent())
+      evtIndex1 = GetMixedEvent()->EventIndexForCaloCluster(photon1->GetCaloLabel(0)) ;
+    
+    mom1 = *(photon1->Momentum());
+    
+    
+    for(Int_t jphoton = iphoton+1; jphoton < GetInputAODBranch()->GetEntriesFast()-1; jphoton++){
+      
+      AliAODPWG4Particle * photon2 =  (AliAODPWG4Particle*) (GetInputAODBranch()->At(jphoton));
+      Int_t evtIndex2 = 0 ; 
+      if(GetMixedEvent())
+        evtIndex2 = GetMixedEvent()->EventIndexForCaloCluster(photon2->GetCaloLabel(0)) ;
+      if(GetMixedEvent() && (evtIndex1 == evtIndex2))
+        continue ; 
+      
+      mom2 = *(photon2->Momentum());
+      Int_t input = -1;        //if -1 photons come from different files, not a pi0
+      if(photon1->GetInputFileIndex() == photon2->GetInputFileIndex()) 
+        input = photon1->GetInputFileIndex();
+      
+        //Select good pair (good phi, pt cuts, aperture and invariant mass)
+      if(GetNeutralMesonSelection()->SelectPair(mom1, mom2))
+      {
+        if(GetDebug()>1) 
+          printf("AliAnaPi0EbE::MakeInvMassInCalorimeter() - Selected gamma pair: pt %f, phi %f, eta%f \n",(mom1+mom2).Pt(), (mom1+mom2).Phi()*180./3.1416, (mom1+mom2).Eta());
+        
+          //Play with the MC stack if available
+        if(IsDataMC()){
+            //Check origin of the candidates
+          Int_t  label1 = photon1->GetLabel();
+          Int_t  label2 = photon2->GetLabel();
+          tag1 = GetMCAnalysisUtils()->CheckOrigin(label1, GetReader(), photon1->GetInputFileIndex());
+          tag2 = GetMCAnalysisUtils()->CheckOrigin(label2, GetReader(), photon2->GetInputFileIndex());
+          
+          if(GetDebug() > 0) printf("AliAnaPi0EbE::MakeInvMassInCalorimeter() - Origin of: photon1 %d; photon2 %d \n",tag1, tag2);
+          if(GetMCAnalysisUtils()->CheckTagBit(tag1,AliMCAnalysisUtils::kMCPi0Decay) && GetMCAnalysisUtils()->CheckTagBit(tag2,AliMCAnalysisUtils::kMCPi0Decay)){
+            
+              //Check if pi0 mother is the same
+            if(GetReader()->ReadStack()){ 
+              TParticle * mother1 = GetMCStack()->Particle(label1);//photon in kine tree
+              label1 = mother1->GetFirstMother();
+                //mother1 = GetMCStack()->Particle(label1);//pi0
+              
+              TParticle * mother2 = GetMCStack()->Particle(label2);//photon in kine tree
+              label2 = mother2->GetFirstMother();
+                //mother2 = GetMCStack()->Particle(label2);//pi0
+            }
+            else if(GetReader()->ReadAODMCParticles() && (input > -1)){
+              AliAODMCParticle * mother1 = (AliAODMCParticle *) (GetReader()->GetAODMCParticles(photon1->GetInputFileIndex()))->At(label1);//photon in kine tree
+              label1 = mother1->GetMother();
+                //mother1 = GetMCStack()->Particle(label1);//pi0
+              AliAODMCParticle * mother2 = (AliAODMCParticle *) (GetReader()->GetAODMCParticles(photon2->GetInputFileIndex()))->At(label2);//photon in kine tree
+              label2 = mother2->GetMother();
+                //mother2 = GetMCStack()->Particle(label2);//pi0
+            }
+            
+              //printf("mother1 %d, mother2 %d\n",label1,label2);
+            if(label1 == label2)
+              GetMCAnalysisUtils()->SetTagBit(tag,AliMCAnalysisUtils::kMCPi0);
+          }
+        }//Work with stack also   
+        
+          //Create AOD for analysis
+        mom = mom1+mom2;
+        AliAODPWG4Particle pi0 = AliAODPWG4Particle(mom);
+          //pi0.SetLabel(calo->GetLabel());
+        pi0.SetPdg(AliCaloPID::kPi0);
+        pi0.SetDetector(photon1->GetDetector());
+        pi0.SetTag(tag);  
+          //Set the indeces of the original caloclusters  
+        pi0.SetCaloLabel(photon1->GetCaloLabel(0), photon2->GetCaloLabel(0));
+        pi0.SetInputFileIndex(input);
+        AddAODParticle(pi0);
+      }//pi0
+    }//2n photon loop
+    
+  }//1st photon loop
+  
+  if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeInvMassInCalorimeter() - End fill AODs \n");  
+  
+}
+
+//__________________________________________________________________
+void  AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() 
+{
+  //Do analysis and fill aods
+  //Search for the photon decay in calorimeters
+  //Read photon list from AOD, produced in class AliAnaPhoton and AliGammaConversion
+  //Check if 2 photons have the mass of the pi0.
+  
+  TLorentzVector mom1;
+  TLorentzVector mom2;
+  TLorentzVector mom ;
+  Int_t tag1 = 0;
+  Int_t tag2 = 0;
+  Int_t tag  = 0;
+  
+  if(!GetInputAODBranch()){
+    printf("AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() - No input calo photons in AOD branch with name < %s > , STOP\n",GetInputAODName().Data());
+    abort();
+  }
+  for(Int_t iphoton = 0; iphoton < GetInputAODBranch()->GetEntriesFast(); iphoton++){
+    AliAODPWG4Particle * photon1 =  (AliAODPWG4Particle*) (GetInputAODBranch()->At(iphoton));
+    mom1 = *(photon1->Momentum());
+    
+    //Play with the MC stack if available
+    fInputAODGammaConv = (TClonesArray *) GetReader()->GetOutputEvent()->FindListObject(fInputAODGammaConvName);
+    if(!fInputAODGammaConv) {
+      printf("AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() - No input gamma conversions in AOD branch with name < %s >, STOP\n",fInputAODGammaConvName.Data());
+      abort(); 
+    }
+    for(Int_t jphoton = iphoton+1; jphoton < fInputAODGammaConv->GetEntriesFast()-1; jphoton++){
+      AliAODPWG4Particle * photon2 =  (AliAODPWG4Particle*) (fInputAODGammaConv->At(jphoton));
+      mom2 = *(photon2->Momentum());
+               
+         Int_t input = -1;     //if -1 photons come from different files, not a pi0
+         if(photon1->GetInputFileIndex() == photon2->GetInputFileIndex()) input = photon1->GetInputFileIndex();
+
+      //Select good pair (good phi, pt cuts, aperture and invariant mass)
+      if(GetNeutralMesonSelection()->SelectPair(mom1, mom2)){
+       if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() - Selected gamma pair: pt %f, phi %f, eta%f\n",(mom1+mom2).Pt(), (mom1+mom2).Phi()*180./3.1416, (mom1+mom2).Eta());
+       
+       if(IsDataMC()){
+         Int_t label1 = photon1->GetLabel();
+         Int_t label2 = photon2->GetLabel();
+         tag1 = GetMCAnalysisUtils()->CheckOrigin(label1, GetReader(), photon1->GetInputFileIndex());
+         tag2 = GetMCAnalysisUtils()->CheckOrigin(label2, GetReader(), photon2->GetInputFileIndex());
+         if(GetDebug() > 0) printf("AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() - Origin of: photon1 %d; photon2 %d \n",tag1, tag2);
+         if(GetMCAnalysisUtils()->CheckTagBit(tag1,AliMCAnalysisUtils::kMCPi0Decay) && GetMCAnalysisUtils()->CheckTagBit(tag2,AliMCAnalysisUtils::kMCPi0Decay)){
+           //Check if pi0 mother is the same
+         
+               if(GetReader()->ReadStack()){ 
+                       TParticle * mother1 = GetMCStack()->Particle(label1);//photon in kine tree
+                       label1 = mother1->GetFirstMother();
+                       //mother1 = GetMCStack()->Particle(label1);//pi0
+           
+                       TParticle * mother2 = GetMCStack()->Particle(label2);//photon in kine tree
+                       label2 = mother2->GetFirstMother();
+                       //mother2 = GetMCStack()->Particle(label2);//pi0
+           }
+               else if(GetReader()->ReadAODMCParticles() && (input > -1)){
+                       AliAODMCParticle * mother1 = (AliAODMCParticle *) (GetReader()->GetAODMCParticles(photon1->GetInputFileIndex()))->At(label1);//photon in kine tree
+                       label1 = mother1->GetMother();
+                       //mother1 = GetMCStack()->Particle(label1);//pi0
+                       AliAODMCParticle * mother2 = (AliAODMCParticle *) (GetReader()->GetAODMCParticles(photon2->GetInputFileIndex()))->At(label2);//photon in kine tree
+                       label2 = mother2->GetMother();
+                       //mother2 = GetMCStack()->Particle(label2);//pi0
+               }
+                 
+               //printf("mother1 %d, mother2 %d\n",label1,label2);
+           if(label1 == label2)
+             GetMCAnalysisUtils()->SetTagBit(tag,AliMCAnalysisUtils::kMCPi0);
+         }
+       }//Work with stack also   
+       
+       //Create AOD for analysis
+       mom = mom1+mom2;
+       AliAODPWG4Particle pi0 = AliAODPWG4Particle(mom);
+       //pi0.SetLabel(calo->GetLabel());
+       pi0.SetPdg(AliCaloPID::kPi0);
+       pi0.SetDetector(photon1->GetDetector());
+       pi0.SetTag(tag);
+       //Set the indeces of the original tracks or caloclusters  
+       pi0.SetCaloLabel(photon1->GetCaloLabel(0), -1);
+       pi0.SetTrackLabel(photon2->GetTrackLabel(0), photon2->GetTrackLabel(1));
+       pi0.SetInputFileIndex(input);
+       AddAODParticle(pi0);
+      }//pi0
+    }//2n photon loop
+    
+  }//1st photon loop
+  
+  if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeInvMassInCalorimeterAndCTS() - End fill AODs \n");  
+  
+}
+
+
+//__________________________________________________________________
+void  AliAnaPi0EbE::MakeShowerShapeIdentification() 
+{
+  //Search for pi0 in fCalorimeter with shower shape analysis 
+  
+  TObjArray * pl = 0x0; 
+  
+  //Get vertex for photon momentum calculation
+  Double_t vertex[]  = {0,0,0} ; //vertex 
+  Double_t vertex2[] = {0,0,0} ; //vertex from second aod input
+  if(GetReader()->GetDataType() != AliCaloTrackReader::kMC) 
+  {
+         GetReader()->GetVertex(vertex);
+         //if(GetReader()->GetSecondInputAODTree()) GetReader()->GetSecondInputAODVertex(vertex2);
+  }
+       
+  //Select the Calorimeter of the photon
+  if(fCalorimeter == "PHOS")
+    pl = GetAODPHOS();
+  else if (fCalorimeter == "EMCAL")
+    pl = GetAODEMCAL();
+  //Fill AODCaloClusters and AODParticle with PHOS aods
+  TLorentzVector mom ;
+  for(Int_t icalo = 0; icalo < pl->GetEntriesFast(); icalo++){
+    AliAODCaloCluster * calo = (AliAODCaloCluster*) (pl->At(icalo));   
+    
+    //Cluster selection, not charged, with pi0 id and in fiducial cut
+         
+       //Input from second AOD?
+       Int_t input = 0;
+//     if     (fCalorimeter == "EMCAL" && GetReader()->GetAODEMCALNormalInputEntries() <= icalo) input = 1 ;
+//     else if(fCalorimeter == "PHOS"  && GetReader()->GetAODPHOSNormalInputEntries()  <= icalo) input = 1;
+         
+       //Get Momentum vector, 
+       if     (input == 0) calo->GetMomentum(mom,vertex) ;//Assume that come from vertex in straight line
+       //else if(input == 1) calo->GetMomentum(mom,vertex2);//Assume that come from vertex in straight line  
+         
+       //If too small or big pt, skip it
+    if(mom.Pt() < GetMinPt() || mom.Pt() > GetMaxPt() ) continue ; 
+    //Check acceptance selection
+    if(IsFiducialCutOn()){
+      Bool_t in = GetFiducialCut()->IsInFiducialCut(mom,fCalorimeter) ;
+      if(! in ) continue ;
+    }
+    
+    //Create AOD for analysis
+    AliAODPWG4Particle aodpi0 = AliAODPWG4Particle(mom);
+    aodpi0.SetLabel(calo->GetLabel());
+    //Set the indeces of the original caloclusters  
+    aodpi0.SetCaloLabel(calo->GetID(),-1);
+    aodpi0.SetDetector(fCalorimeter);
+    if(GetDebug() > 1) 
+      printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - FillAOD: Min pt cut and fiducial cut passed: pt %3.2f, phi %2.2f, eta %1.2f\n",aodpi0.Pt(),aodpi0.Phi(),aodpi0.Eta());   
+    
+    //Check Distance to Bad channel, set bit.
+    Double_t distBad=calo->GetDistanceToBadChannel() ; //Distance to bad channel
+    if(distBad < 0.) distBad=9999. ; //workout strange convension dist = -1. ;
+    if(distBad < fMinDist) //In bad channel (PHOS cristal size 2.2x2.2 cm)
+      continue ;
+    
+    if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - FillAOD: Bad channel cut passed %4.2f\n",distBad);
+    
+    if(distBad > fMinDist3) aodpi0.SetDistToBad(2) ;
+    else if(distBad > fMinDist2) aodpi0.SetDistToBad(1) ; 
+    else aodpi0.SetDistToBad(0) ;
+    
+    //Check PID
+    //PID selection or bit setting
+    if(GetReader()->GetDataType() == AliCaloTrackReader::kMC){
+      //Get most probable PID, check PID weights (in MC this option is mandatory)
+      aodpi0.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,calo->GetPID(),mom.E()));//PID with weights
+      if(GetDebug() > 1) 
+       printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - FillAOD: PDG of identified particle %d\n",aodpi0.GetPdg());
+      //If primary is not pi0, skip it.
+      if(aodpi0.GetPdg() != AliCaloPID::kPi0) continue ;
+    }                                  
+    else if(IsCaloPIDOn()){
+      //Skip matched clusters with tracks
+      if(calo->GetNTracksMatched() > 0) continue ;
+      
+      //Get most probable PID, 2 options check PID weights 
+      //or redo PID, recommended option for EMCal.             
+      if(!IsCaloPIDRecalculationOn())
+       aodpi0.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,calo->GetPID(),mom.E()));//PID with weights
+      else
+       aodpi0.SetPdg(GetCaloPID()->GetPdg(fCalorimeter,mom,calo));//PID recalculated
+      
+      if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - PDG of identified particle %d\n",aodpi0.GetPdg());
+      
+      //If cluster does not pass pid, not pi0, skip it.
+      if(aodpi0.GetPdg() != AliCaloPID::kPi0) continue ;                       
+      
+    }
+    else{
+      //Set PID bits for later selection (AliAnaPi0 for example)
+      //GetPDG already called in SetPIDBits.
+      GetCaloPID()->SetPIDBits(fCalorimeter,calo,&aodpi0);
+      if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - PID Bits set \n");            
+    }
+    
+    if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - Pi0 selection cuts passed: pT %3.2f, pdg %d\n",aodpi0.Pt(), aodpi0.GetPdg());
+    
+    //Play with the MC stack if available
+    //Check origin of the candidates
+    if(IsDataMC()){
+      if((GetReader()->GetDataType() == AliCaloTrackReader::kMC && fAnaType!=kSSCalo) || 
+                GetReader()->GetDataType() != AliCaloTrackReader::kMC){
+                 aodpi0.SetInputFileIndex(input);
+                 Int_t tag     =0;
+                 tag = GetMCAnalysisUtils()->CheckOrigin(calo->GetLabel(),GetReader(), aodpi0.GetInputFileIndex());
+                 //GetMCAnalysisUtils()->CheckMultipleOrigin(calo->GetLabels(),calo->GetNLabels(), GetReader(), aodpi0.GetInputFileIndex(), tag);
+                 aodpi0.SetTag(tag);
+                 if(GetDebug() > 0) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - Origin of candidate %d\n",aodpi0.GetTag());
+      }
+    }//Work with stack also   
+    
+    //Add AOD with pi0 object to aod branch
+    AddAODParticle(aodpi0);
+    
+  }//loop
+  
+  if(GetDebug() > 1) printf("AliAnaPi0EbE::MakeShowerShapeIdentification() - End fill AODs \n");  
+  
+}
+//__________________________________________________________________
+void  AliAnaPi0EbE::MakeAnalysisFillHistograms() 
+{
+  //Do analysis and fill histograms
+  
+  if(!GetOutputAODBranch()){
+    printf("AliAnaPi0EbE::MakeAnalysisFillHistograms()  - No output pi0 in AOD branch with name < %s >,STOP \n",GetOutputAODName().Data());
+    abort();
+  }
+  //Loop on stored AOD pi0
+  Int_t naod = GetOutputAODBranch()->GetEntriesFast();
+  if(GetDebug() > 0) printf("AliAnaPi0EbE::MakeAnalysisFillHistograms() - aod branch entries %d\n", naod);
+  
+  for(Int_t iaod = 0; iaod < naod ; iaod++){
+    
+    AliAODPWG4Particle* pi0 =  (AliAODPWG4Particle*) (GetOutputAODBranch()->At(iaod));
+    Int_t pdg = pi0->GetPdg();
+         
+    if(IsCaloPIDOn() && pdg != AliCaloPID::kPi0) continue;              
+    
+    //Fill pi0 histograms 
+    Float_t pt  = pi0->Pt();
+    Float_t phi = pi0->Phi();
+    Float_t eta = pi0->Eta();
+    
+    fhPtPi0  ->Fill(pt);
+    fhPhiPi0 ->Fill(pt,phi);
+    fhEtaPi0 ->Fill(pt,eta);
+    
+    if(IsDataMC()){
+      if((GetReader()->GetDataType() == AliCaloTrackReader::kMC && fAnaType!=kSSCalo) || 
+        GetReader()->GetDataType() != AliCaloTrackReader::kMC){
+       if(GetMCAnalysisUtils()->CheckTagBit(pi0->GetTag(), AliMCAnalysisUtils::kMCPi0)){
+         fhPtMCPi0  ->Fill(pt);
+         fhPhiMCPi0 ->Fill(pt,phi);
+         fhEtaMCPi0 ->Fill(pt,eta);
+       }
+       else{
+         fhPtMCNoPi0  ->Fill(pt);
+         fhPhiMCNoPi0 ->Fill(pt,phi);
+         fhEtaMCNoPi0 ->Fill(pt,eta);
+       }
+      }
+    }//Histograms with MC
+    
+  }// aod loop
+  
+}
+
+
+//____________________________________________________________________________
+void AliAnaPi0EbE::Init()
+{ 
+  //Init
+  //Do some checks
+  if(fCalorimeter == "PHOS" && !GetReader()->IsPHOSSwitchedOn() && NewOutputAOD()){
+    printf("AliAnaPi0EbE::Init() - !!STOP: You want to use PHOS in analysis but it is not read!! \n!!Check the configuration file!!\n");
+    abort();
+  }
+  else  if(fCalorimeter == "EMCAL" && !GetReader()->IsEMCALSwitchedOn() && NewOutputAOD()){
+    printf("AliAnaPi0EbE::Init() - !!STOP: You want to use EMCAL in analysis but it is not read!! \n!!Check the configuration file!!\n");
+    abort();
+  }
+  
+}
+
+//____________________________________________________________________________
+void AliAnaPi0EbE::InitParameters()
+{
+  //Initialize the parameters of the analysis.  
+  AddToHistogramsName("AnaPi0EbE_");
+
+  fInputAODGammaConvName = "gammaconv" ;
+  fAnaType = kIMCalo ;
+  fCalorimeter = "EMCAL" ;
+  fMinDist  = 2.;
+  fMinDist2 = 4.;
+  fMinDist3 = 5.;
+  
+}
+
+//__________________________________________________________________
+void AliAnaPi0EbE::Print(const Option_t * opt) const
+{
+  //Print some relevant parameters set for the analysis
+  if(! opt)
+    return;
+  
+  printf("**** Print %s %s ****\n", GetName(), GetTitle() ) ;
+  AliAnaPartCorrBaseClass::Print("");
+  printf("Analysis Type = %d \n",  fAnaType) ;
+  if(fAnaType == kSSCalo){     
+    printf("Calorimeter            =     %s\n", fCalorimeter.Data()) ;
+    printf("Min Distance to Bad Channel   = %2.1f\n",fMinDist);
+    printf("Min Distance to Bad Channel 2 = %2.1f\n",fMinDist2);
+    printf("Min Distance to Bad Channel 3 = %2.1f\n",fMinDist3); 
+  } 
+  printf("    \n") ;
+  
+}