]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG4/macros/ConfigAnalysisGammaDirect.C
Corrected analysis configuration and execution files after changes in PartCorr frame...
[u/mrichter/AliRoot.git] / PWG4 / macros / ConfigAnalysisGammaDirect.C
index 150159268366e814d3be333ec6c9fdef7dddb3fe..604bd446aa121fefc1657450fac3b9905add2091 100644 (file)
@@ -1,4 +1,5 @@
-/* $Id:$ */
+/* $Id: $ */
+/* $Log$ */
 
 //------------------------------------
 // Configuration macro example:
 
 //------------------------------------
 // Configuration macro example:
 // Do prompt photon analysis with ESDs
 // Gamma in PHOS, 
 // for EMCAL, PHOS by EMCAL where necessary
 // Do prompt photon analysis with ESDs
 // Gamma in PHOS, 
 // for EMCAL, PHOS by EMCAL where necessary
+// First find photons with AliAnaPhoton, then 
+// isolate them with AliAnaParticleIsolation
 //
 // Author : Gustavo Conesa Balbastre (INFN-LNF)
 //------------------------------------
 
 //
 // Author : Gustavo Conesa Balbastre (INFN-LNF)
 //------------------------------------
 
-AliAnaMaker*  ConfigAnalysis()
+AliAnaPartCorrMaker*  ConfigAnalysis()
 {
 {
-  //
-  // Configuration goes here
-  // 
-  printf("======================== \n");
-  printf("ConfigAnalysis() \n");
-  printf("======================== \n");
-  
-  
-  //Detector Fidutial Cuts
-  AliFidutialCut * fidCut = new AliFidutialCut();
-  fidCut->DoCTSFidutialCut(kTRUE) ;
-  //fidCut->DoEMCALFidutialCut(kFALSE) ;
-  fidCut->DoPHOSFidutialCut(kTRUE) ;
-  
-  fidCut->SetSimpleCTSFidutialCut(0.9,0.,360.);
-  //fidCut->SetSimpleEMCALFidutialCut(0.7,80.,190.);
-  fidCut->SetSimplePHOSFidutialCut(0.13,220.,320.);
-   
-  fidCut->Print("");
-  
-  //-----------------------------------------------------------  
-  // Reader
-  //-----------------------------------------------------------
-  AliCaloTrackReader *reader = new AliCaloTrackESDReader();
-  reader->SetDebug(-1);
-
-  //Switch on or off the detectors information that you want
-  reader->SwitchOffEMCAL();
-  reader->SwitchOnCTS();
-  reader->SwitchOnPHOS();
-  
-  //Min particle pT
-  //reader->SetEMCALPtMin(0.5); 
-  reader->SetPHOSPtMin(0.5);
-  reader->SetCTSPtMin(0.2);
-  
-  reader->SetFidutialCut(fidCut);
-  reader->Print("");
-  
-  
-  //---------------------------------------------------------------------
-  // Analysis algorithm
-  //---------------------------------------------------------------------
-  
-  //Detector Fidutial Cuts for analysis part
-  AliFidutialCut * fidCut2 = new AliFidutialCut();
-  fidCut2->DoCTSFidutialCut(kFALSE) ;
-  //fidCut2->DoEMCALFidutialCut(kTRUE) ;
-  fidCut2->DoPHOSFidutialCut(kFALSE) ;
-  
-  fidCut2->SetSimpleCTSFidutialCut(0.9,0.,360.);
-  //fidCut2->SetSimpleEMCALFidutialCut(0.7,80.,190.);
-  fidCut2->SetSimplePHOSFidutialCut(0.13,220.,320.);
-  fidCut2->Print("");
-
-  AliCaloPID * pid = new AliCaloPID();
-  // use selection with simple weights
-  pid->SetPHOSPhotonWeight(0.7);    pid->SetPHOSPi0Weight(0.7); 
-  pid->SetEMCALPhotonWeight(0.7);    pid->SetEMCALPi0Weight(0.7);
-  // use more complicated selection, particle weight depending on cluster energy
-//   pid->UsePHOSPIDWeightFormula(kTRUE);
-//   TFormula * photonF = new TFormula("photonWeight","0.98*(x<40)+ 0.68*(x>=100)+(x>=40 && x<100)*(0.98+x*(6e-3)-x*x*(2e-04)+x*x*x*(1.1e-06))");
-//   TFormula * pi0F = new TFormula("pi0Weight","0.98*(x<65)+ 0.915*(x>=100)+(x>=65 && x-x*(1.95e-3)-x*x*(4.31e-05)+x*x*x*(3.61e-07))");
-//   pid->SetPHOSPhotonWeightFormula(photonF);
-//   pid->SetPHOSPi0WeightFormula(pi0F);
-  pid->Print("");
-
-  AliIsolationCut * ic = new AliIsolationCut();
-  ic->SetConeSize(0.4);
-  ic->SetPtThreshold(1.);
-  ic->SetICMethod(AliIsolationCut::kPtThresIC);
-  ic->Print("");
-
-  AliAnaGammaDirect *ana = new AliAnaGammaDirect();
-  ana->SetDebug(-1);
-  ana->SetMinPt(5.);
-  ana->SetCaloPID(pid);
-  ana->SetFidutialCut(fidCut2);
-  ana->SetIsolationCut(ic) ;
-  ana->SetDetector("PHOS");
-  ana->SwitchOnDataMC() ;//Access MC stack and fill more histograms
-
-  ana->SwitchOnCaloPID();
-  ana->SwitchOffCaloPIDRecalculation(); //recommended for EMCAL
-  ana->SwitchOnFidutialCut();
-  //Select clusters with no pair, if both clusters with pi0 mass
-  ana->SwitchOffInvariantMass();
-  //Do isolation cut
-  ana->SwitchOnIsolation();
-
-  //Do or not do isolation with previously produced AODs.
-  //No effect if use of SwitchOnSeveralIsolation()
-  ana->SwitchOffReIsolation();
-
-  //Multiple IC
-  ana->SwitchOffSeveralIsolation() ;
-//   ana->SwitchOnSeveralIsolation() ;
-//   ana->SetNCones(2) ;     
-//   ana->SetNPtThresFrac(2) ;     
-//   ana->SetConeSizes(0, 0.3) ; ana->SetConeSizes(1, 0.4) ;    
-//   ana->SetPtThresholds(0, 0.5) ;     ana->SetPtThresholds(1, 1.) ;   
-//   ana->SetPtFractions(0, 1.) ;   ana->SetPtFractions(1, 1.5) ;  
-
-  ana->Print("");
-
-  //---------------------------------------------------------------------
-  // Set  analysis algorithm and reader
-  //---------------------------------------------------------------------
-  maker = new AliAnaMaker();
-  maker->SetReader(reader);//pointer to reader
-  maker->AddAnalysis(ana,0);
-  maker->SetAODBranchName("Photon");
-  maker->SetAnaDebug(1)  ;
-  maker->SwitchOnHistogramsMaker()  ;
-  //maker->SwitchOffHistogramsMaker() ;  
-  maker->SwitchOnAODsMaker()  ;
-  //maker->SwitchOffAODsMaker() ; 
-  
-  maker->Print("");
-  //
-  printf("======================== \n");
-  printf("END ConfigAnalysis() \n");
-  printf("======================== \n");
-  return maker ;
+       //
+       // Configuration goes here
+       // 
+       printf("======================== \n");
+       printf("ConfigAnalysis() \n");
+       printf("======================== \n");
+       
+       
+       //Detector Fidutial Cuts
+       AliFidutialCut * fidCut = new AliFidutialCut();
+       fidCut->DoCTSFidutialCut(kFALSE) ;
+       fidCut->DoEMCALFidutialCut(kFALSE) ;
+       fidCut->DoPHOSFidutialCut(kFALSE) ;
+       
+       //fidCut->SetSimpleCTSFidutialCut(0.9,0.,360.);
+       //fidCut->SetSimpleEMCALFidutialCut(0.7,80.,190.);
+       //fidCut->SetSimplePHOSFidutialCut(0.13,220.,320.);
+       
+       fidCut->Print("");
+       
+       //-----------------------------------------------------------  
+       // Reader
+       //-----------------------------------------------------------
+       AliCaloTrackESDReader *reader = new AliCaloTrackESDReader();
+       reader->SetDebug(-1);
+       
+       //Switch on or off the detectors information that you want
+       reader->SwitchOffEMCAL();
+       reader->SwitchOnCTS();
+       reader->SwitchOnPHOS();
+       
+       //Min particle pT
+       reader->SetEMCALPtMin(0.2); 
+       reader->SetPHOSPtMin(0.2);
+       reader->SetCTSPtMin(0.2);
+       
+       reader->SetFidutialCut(fidCut);
+       reader->Print("");
+       
+       
+       //---------------------------------------------------------------------
+       // Analysis algorithm
+       //---------------------------------------------------------------------
+       //>>>> First Analysis <<<<
+       //Detector Fidutial Cuts for analysis part
+       AliFidutialCut * fidCut2 = new AliFidutialCut();
+       fidCut2->DoCTSFidutialCut(kFALSE) ;
+       fidCut2->DoEMCALFidutialCut(kFALSE) ;
+       fidCut2->DoPHOSFidutialCut(kFALSE) ;
+       
+       //fidCut2->SetSimpleCTSFidutialCut(0.9,0.,360.);
+       //fidCut2->SetSimpleEMCALFidutialCut(0.7,80.,190.);
+       fidCut2->SetSimplePHOSFidutialCut(0.12,220.,320.);
+       
+//     //Select particles in N regions of the detectors
+//     Float_t etamax[]={0.67,0.51,0.16,-0.21,-0.61};
+//     TArrayF etamaxarr(5,etamax);
+//     fidCut2->AddEMCALFidCutMaxEtaArray(etamaxarr);
+//     Float_t etamin[]={0.61,0.21,-0.16,-0.51,-0.67};
+//     TArrayF etaminarr(5,etamin);
+//     fidCut2->AddEMCALFidCutMinEtaArray(etaminarr);
+//     Float_t phimax[]={99., 119., 139., 159., 179., 189.};
+//     TArrayF phimaxarr(6,phimax);
+//     fidCut2->AddEMCALFidCutMaxPhiArray(phimaxarr);
+//     Float_t phimin[]={81., 101.  , 121. , 141. , 161. , 181. };
+//     TArrayF phiminarr(6,phimin);
+//     fidCut2->AddEMCALFidCutMinPhiArray(phiminarr);
+//     fidCut2->Print("");
+//     
+       AliCaloPID * pid = new AliCaloPID();
+       // use selection with simple weights
+       pid->SetPHOSPhotonWeight(0.7);    pid->SetPHOSPi0Weight(0.7); 
+       pid->SetEMCALPhotonWeight(0.7);    pid->SetEMCALPi0Weight(0.7);
+       // use more complicated selection, particle weight depending on cluster energy
+       // pid->UsePHOSPIDWeightFormula(kTRUE);
+       // TFormula * photonF = new TFormula("photonWeight","0.98*(x<40)+ 0.68*(x>=100)+(x>=40 && x<100)*(0.98+x*(6e-3)-x*x*(2e-04)+x*x*x*(1.1e-06))");
+       // TFormula * pi0F = new TFormula("pi0Weight","0.98*(x<65)+ 0.915*(x>=100)+(x>=65 && x-x*(1.95e-3)-x*x*(4.31e-05)+x*x*x*(3.61e-07))");
+       // pid->SetPHOSPhotonWeightFormula(photonF);
+       // pid->SetPHOSPi0WeightFormula(pi0F);
+       pid->Print("");
+       
+       
+       AliAnaPhoton *anaphoton = new AliAnaPhoton();
+       anaphoton->SetDebug(-1); //10 for lots of messages
+       anaphoton->SetMinPt(0.2);
+       anaphoton->SetMinDistanceToBadChannel(2, 4, 5);
+       anaphoton->SetCaloPID(pid);
+       anaphoton->SetFidutialCut(fidCut2); //More acceptance selections if needed at this level
+       anaphoton->SetCalorimeter("PHOS");
+       anaphoton->SwitchOffDataMC() ;//Access MC stack and fill more histograms
+       anaphoton->SwitchOnCaloPID();
+       anaphoton->SwitchOffCaloPIDRecalculation(); //recommended for EMCAL
+       anaphoton->SwitchOnFidutialCut();
+       anaphoton->SetOutputAODName("Photons");
+       anaphoton->SetOutputAODClassName("AliAODPWG4ParticleCorrelation");
+       //Set Histrograms bins and ranges
+       //      anaphoton->SetHistoPtRangeAndNBins(0, 50, 100) ;
+       //      anaphoton->SetHistoPhiRangeAndNBins(0, TMath::TwoPi(), 100) ;
+       //      anaphoton->SetHistoEtaRangeAndNBins(-0.7, 0.7, 100) ;
+       anaphoton->Print("");
+       
+       // >>>> Second Analysis <<<< Isolate the photons
+       AliIsolationCut * ic = new AliIsolationCut();
+       ic->SetConeSize(0.5);
+       ic->SetPtThreshold(1.);
+       ic->SetICMethod(AliIsolationCut::kPtThresIC);
+       ic->Print("");
+       
+       AliAnaParticleIsolation *anaisol = new AliAnaParticleIsolation();
+       anaisol->SetDebug(-1);
+       anaisol->SetMinPt(5);
+       anaisol->SetInputAODName("Photons");
+       anaisol->SetCalorimeter("PHOS");
+       anaisol->SwitchOffDataMC() ;//Access MC stack and fill more histograms
+       //Select clusters with no pair, if both clusters with pi0 mass
+       anaisol->SwitchOffInvariantMass();
+       //anaisol->SetNeutralMesonSelection(nms);
+       //Do isolation cut
+       anaisol->SetIsolationCut(ic);   
+       //Do or not do isolation with previously produced AODs.
+       //No effect if use of SwitchOnSeveralIsolation()
+       anaisol->SwitchOffReIsolation();
+       //Multiple IC
+       anaisol->SwitchOffSeveralIsolation() ;
+       
+       anaisol->Print("");
+       
+               
+       //---------------------------------------------------------------------
+       // Set  analysis algorithm and reader
+       //---------------------------------------------------------------------
+       maker = new AliAnaPartCorrMaker();
+       maker->SetReader(reader);//pointer to reader
+       maker->AddAnalysis(anaphoton,0);
+       maker->AddAnalysis(anaisol,1);
+       maker->SetAnaDebug(-1)  ;
+       maker->SwitchOnHistogramsMaker()  ;
+       //maker->SwitchOffHistogramsMaker() ;  
+       maker->SwitchOnAODsMaker()  ;
+       //maker->SwitchOffAODsMaker() ; 
+       
+       maker->Print("");
+       //
+       printf("======================== \n");
+       printf("END ConfigAnalysis() \n");
+       printf("======================== \n");
+       return maker ;
 }
 }