AliPhysics  4646b6b (4646b6b)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliAnalysisTaskGammaCalo.h
Go to the documentation of this file.
1 #ifndef ALIANLYSISTASKGAMMACALO_cxx
2 #define ALIANLYSISTASKGAMMACALO_cxx
3 
4 #include "AliAnalysisTaskSE.h"
5 #include "AliESDtrack.h"
6 #include "AliV0ReaderV1.h"
10 #include "AliCaloPhotonCuts.h"
11 #include "AliConvEventCuts.h"
13 #include "AliConversionMesonCuts.h"
14 #include "AliAnalysisManager.h"
15 #include "TProfile2D.h"
16 #include "TH3.h"
17 #include "TH3F.h"
18 #include <vector>
19 #include <map>
20 
22  public:
23 
25  AliAnalysisTaskGammaCalo(const char *name);
26  virtual ~AliAnalysisTaskGammaCalo();
27 
28  virtual void UserCreateOutputObjects();
29  virtual Bool_t Notify();
30  virtual void UserExec(Option_t *);
31  virtual void Terminate(const Option_t*);
32  void InitBack();
33 
34  void SetV0ReaderName(TString name){fV0ReaderName=name; return;}
35  void SetIsHeavyIon(Int_t flag){
36  fIsHeavyIon = flag;
37  }
38 
39  // base functions for selecting photon and meson candidates in reconstructed data
40  void ProcessClusters();
42 
43  // MC functions
45  void ProcessMCParticles();
46  void ProcessAODMCParticles();
47  void ProcessTrueClusterCandidates( AliAODConversionPhoton* TruePhotonCandidate, AliVCluster* clus);
48  void ProcessTrueClusterCandidatesAOD( AliAODConversionPhoton* TruePhotonCandidate, AliVCluster* clus);
49  void ProcessTrueMesonCandidates( AliAODConversionMother *Pi0Candidate, AliAODConversionPhoton *TrueGammaCandidate0, AliAODConversionPhoton *TrueGammaCandidate1);
50  void ProcessTrueMesonCandidatesAOD(AliAODConversionMother *Pi0Candidate, AliAODConversionPhoton *TrueGammaCandidate0, AliAODConversionPhoton *TrueGammaCandidate1);
51 
52  // switches for additional analysis streams or outputs
53  void SetLightOutput(Bool_t flag){fDoLightOutput = flag;}
55  void SetDoMesonQA(Int_t flag){fDoMesonQA = flag;}
56  void SetDoClusterQA(Int_t flag){fDoClusterQA = flag;}
57  void SetDoTHnSparse(Bool_t flag){fDoTHnSparse = flag;}
59  void SetAllowOverlapHeaders( Bool_t allowOverlapHeader ) {fAllowOverlapHeaders = allowOverlapHeader;}
60 
63  return;
64  }
65 
66  // Setting the cut lists for the conversion photons
67  void SetEventCutList(Int_t nCuts, TList *CutArray){
68  fnCuts = nCuts;
69  fEventCutArray = CutArray;
70  }
71 
72  // Setting the cut lists for the calo photons
73  void SetCaloCutList(Int_t nCuts, TList *CutArray){
74  fnCuts = nCuts;
75  fClusterCutArray = CutArray;
76  }
77 
78  // Setting the cut lists for the meson
79  void SetMesonCutList(Int_t nCuts, TList *CutArray){
80  fnCuts = nCuts;
81  fMesonCutArray = CutArray;
82  }
83 
84  // BG HandlerSettings
85  void CalculateBackground();
86  void CalculateBackgroundRP();
88  void RotateParticleAccordingToEP(AliAODConversionPhoton *gamma, Double_t previousEventEP, Double_t thisEventEP);
89  void FillPhotonBackgroundHist(AliAODConversionPhoton *TruePhotonCandidate, Int_t pdgCode);
90  void FillPhotonPlusConversionBackgroundHist(AliAODConversionPhoton *TruePhotonCandidate, Int_t pdgCode);
91  void FillPhotonBackgroundM02Hist(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster* clus, Int_t pdgCode);
92  void FillPhotonPlusConversionBackgroundM02Hist(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster* clus, Int_t pdgCode);
94 
95  // Additional functions for convenience
96  void SetLogBinningXTH2(TH2* histoRebin);
97  Int_t GetSourceClassification(Int_t daughter, Int_t pdgCode);
98 
99  Bool_t CheckVectorForDoubleCount(vector<Int_t> &vec, Int_t tobechecked);
100  void FillMultipleCountMap(map<Int_t,Int_t> &ma, Int_t tobechecked);
101  void FillMultipleCountHistoAndClear(map<Int_t,Int_t> &ma, TH1F* hist);
102 
103  // set method to enable EOverP tree
105 
106  // Function to enable MC label sorting
107  void SetEnableSortingOfMCClusLabels(Bool_t enableSort) { fEnableSortForClusMC = enableSort; }
108 
109  // Function to enable local debugging mode
111 
112  void EventDebugMethod();
115 
116  protected:
117  AliV0ReaderV1* fV0Reader; // basic photon Selection Task
119  AliGammaConversionAODBGHandler** fBGHandler; // BG handler for Conversion
120  AliVEvent* fInputEvent; // current event
121  AliMCEvent* fMCEvent; // corresponding MC event
122  TList** fCutFolder; // Array of lists for containers belonging to cut
123  TList** fESDList; // Array of lists with histograms with reconstructed properties
124  TList** fBackList; // Array of lists with BG THnSparseF
125  TList** fMotherList; // Array of lists with Signal THnSparseF
126  TList** fTrueList; // Array of lists with histograms with MC validated reconstructed properties
127  TList** fMCList; // Array of lists with histograms with pure MC information
128  TList** fTreeList; // Array of lists with tree for validated MC
129  TList** fClusterTreeList; // Array of lists with tree for EoverP
130  TList* fOutputContainer; // Output container
132  TList* fEventCutArray; // List with Event Cuts
133  AliConvEventCuts* fEventCuts; // EventCutObject
134  TList* fClusterCutArray; // List with Cluster Cuts
135  AliCaloPhotonCuts* fCaloPhotonCuts; // CaloPhotonCutObject
136  TList* fMesonCutArray; // List with Meson Cuts
137  AliConversionMesonCuts* fMesonCuts; // MesonCutObject
138 
139  //histograms for mesons reconstructed quantities
154 
155  // histograms for rec photon clusters
162  //histograms for pure MC quantities
173  TH1F** fHistoMCPi0Pt;
176  TH1F** fHistoMCEtaPt;
195 
196  // MC validated reconstructed quantities mesons
254  // MC validated reconstructed quantities photons
314 
315  // event histograms
316  TH1F** fHistoNEvents;
319  TH1F** fHistoVertexZ;
324  TProfile** fProfileEtaShift;
327 
328  // tree for identified particle properties
335  UChar_t iFlag;
336 
337  // tree for alpha/opening angle studies
347 
348  // tree for E/p studies
365 
366  // hists for nonlineartiy calibration
367 // TH2F** fHistoTruePi0NonLinearity; //! E_truth/E_rec vs E_rec for TruePi0s
368 // TH2F** fHistoTrueEtaNonLinearity; //! E_truth/E_rec vs E_rec for TrueEtas
369 
370  // additional variables
371  Double_t fEventPlaneAngle; // EventPlaneAngle
372  TRandom3 fRandom; // random
373  Int_t fnCuts; // number of cuts to be analysed in parallel
374  Int_t fiCut; // current cut
375  Int_t fIsHeavyIon; // switch for pp = 0, PbPb = 1, pPb = 2
376  Bool_t fDoLightOutput; // switch for running light output, kFALSE -> normal mode, kTRUE -> light mode
377  Bool_t fDoMesonAnalysis; // flag for meson analysis
378  Int_t fDoMesonQA; // flag for meson QA
379  Int_t fDoClusterQA; // flag for cluster QA
380  Bool_t fIsFromDesiredHeader; // flag for MC headers
381  Bool_t fIsOverlappingWithOtherHeader; // flag for particles in MC overlapping between headers
382  Int_t fIsMC; // flag for MC information
383  Bool_t fDoTHnSparse; // flag for using THnSparses for background estimation
384  Bool_t fSetPlotHistsExtQA; // flag for extended QA hists
385  Double_t fWeightJetJetMC; // weight for Jet-Jet MC
386  Bool_t fDoInOutTimingCluster; // manual timing cut for cluster to combine cluster within timing cut and without
387  Double_t fMinTimingCluster; // corresponding ranges, min
388  Double_t fMaxTimingCluster; // corresponding ranges, max
389  Bool_t fEnableSortForClusMC; // switch on sorting for MC labels in cluster
390  Bool_t fProduceCellIDPlots; // switch to produce CellID plots for fDoClusterQA==2
391  Bool_t fProduceTreeEOverP; // flag for producing tree for E/p studies
392  TTree* tBrokenFiles; // tree for keeping track of broken files
393  TObjString* fFileNameBroken; // string object for broken file name
394  TTree* tClusterQATree; // tree for specific cluster QA
395  TObjString* fCloseHighPtClusters; // file name to indicate clusters with high pT (>15 GeV/c) very close to each other (<17 mrad)
396 
397  Int_t fLocalDebugFlag; // debug flag for local running, must be '0' for grid running
398  Bool_t fAllowOverlapHeaders; // enable overlapping headers for cluster selection
399 
400  private:
401  AliAnalysisTaskGammaCalo(const AliAnalysisTaskGammaCalo&); // Prevent copy-construction
402  AliAnalysisTaskGammaCalo &operator=(const AliAnalysisTaskGammaCalo&); // Prevent assignment
403 
404  ClassDef(AliAnalysisTaskGammaCalo, 42);
405 };
406 
407 #endif
TH2F ** fHistoTrueEtaCategory7
array of histos with validated pi0, 1 electron from conversion, 2 electrons from other conversion mer...
TH1F ** fHistoMCSecPi0Source
array of histos with secondary pi0, pT, source
TH2F ** fHistoTrueSecondaryClusGammaPt
array of histos with validated primary conv photon cluster, rec Pt, MC pt
Float_t fPt
InvMass at R=375 cm,.
TH2F ** fHistoMCEtaPtAlpha
array of histos with weighted pi0, pT, alpha
Float_t fClusterM02
cluster energy
TH2F ** fHistoTrueBckGGInvMassPt
array of histos with lambda with reconstructed pi0 as daughter, pt
TH1F ** fHistoMCDecayGammaOmegaPt
array of histos with decay gamma from eta, pT
TH1F ** fHistoMCEtaInAccPt
array of histos with weighted pi0 in acceptance, pT
Int_t fClusterLeadCellID
cluster-track E/p
TH2F ** fHistoMotherInvMassPtAlpha
array of THnSparseF with BG for same event photon pairs, inv Mass, pt
map< Int_t, Int_t > fMapMultipleCountTrueClusterGammas
array of histos how often TrueClusterGammas are counted
TH2F ** fHistoTruePi0InvMassPtAlpha
map containing cluster photon labels that are counted at least twice
double Double_t
Definition: External.C:58
TH2F ** fHistoTrueEtaCategory8
array of histos with validated pi0, 2 electron from conversion merged, 2 electrons from other convers...
TH2F ** fHistoTrueSecondaryClusConvGammaPt
array of histos with validated secondary photon cluster, pt
TH2F ** fHistoTruePi0Category8
array of histos with validated eta, 1 electron from conversion, 2 electrons from other conversion mer...
Float_t fDeltaPhi
matching residual track <-> cluster
Float_t fDeltaEta
classification of cluster in MC
Definition: External.C:236
TH2F ** fHistoTrueSecondaryClusGammaFromXFromK0sMCPtESDPt
array of histos with validated secondary converted photon cluster, MC pt
TTree ** tTrueInvMassROpenABPtFlag
array of histos with ntrials for jetjet
void RotateParticle(AliAODConversionPhoton *gamma)
TProfile2D ** fProfileTruePrimaryEtaWeightsInvMassPt
array of profiles with weights for validated primary mothers, invMass, pt
TH2F ** fHistoMotherPi0PtOpenAngle
array of histograms with invariant mass cut of 0.45 && pi0cand->M() < 0.65, pt, alpha ...
Float_t fClusterE
array of trees with tree for E/p studies
void DebugMethod(AliAODConversionMother *pi0cand, AliAODConversionPhoton *gamma0, AliAODConversionPhoton *gamma1)
TH2F ** fHistoTrueEtaCategory2
array of histos with validated pi0, 1 real photon, 1 merged converted photon
Bool_t CheckVectorForDoubleCount(vector< Int_t > &vec, Int_t tobechecked)
TH2F ** fHistoTruePi0InvMassPt
array of histos with weighted eta, pT, hardest jet pt
TH2F ** fHistoTrueBckContInvMassPt
array of histos with asymmetry energy distributions of clusters, invMass, pt
void DebugMethodPrint1(AliAODConversionMother *pi0cand, AliAODConversionPhoton *gamma0, AliAODConversionPhoton *gamma1)
TH2F ** fHistoTrueClusGammaPtM02
array of histos with validated unconverted photon, pt
TH1F ** fHistoTruePrimaryClusConvGammaPt
array of histos with validated primary photon cluster, rec Pt, MC pt
TH2F ** fHistoTruePrimaryPi0InvMassPt
array of histos with validated eta, 2 electron from conversion merged, 2 electrons from other convers...
TH2F ** fHistoTruePi0Category1
array of histos with validated mothers, merged cluster invMass, pt
TH2F ** fHistoMCAllSecondaryGammaPt
array of histos with all gamma, pT
TH2F ** fHistoClustPhotonKaonBGPtM02
array of histos with cluster photon BG pion, M02 vs. pt, source
TH2F ** fHistoClustPhotonPlusConvPionBGPtM02
array of histos with cluster photon plus conv BG electron, M02 vs. pt, source
TH2F ** fHistoTruePi0PtAlpha
array of histos with validated eta, pt, Y
TH1F ** fHistoClusGammaPt
array of histograms with invariant mass cut of 0.45 && pi0cand->M() < 0.65, ngoodtrakcs, pt
TH2F ** fHistoTruePrimaryPi0MCPtResolPt
array of profiles with weights for validated primary mothers, invMass, pt
TH1F ** fHistoTrueEtaWithPi0DaughterMCPt
array of histos with validated secondary mothers from eta, invMass, pt
TH1F ** fHistoMCPi0Pt
array of histos with decay gamma from Sigma0, pT
TH2F ** fHistoTrueEtaInvMassPt
array of histos with validated mothers, invMass, pt
TH2F ** fHistoTrueEtaCategory5
array of histos with validated pi0, 2 electrons from different conversions, 2 electrons (unseen) ...
TH2F ** fHistoClustPhotonK0lBGPtM02
array of histos with cluster photon BG kaon, M02 vs. pt, source
Int_t GetSourceClassification(Int_t daughter, Int_t pdgCode)
Float_t fClusterIsoSumClusterEt
track PID P
TH1F ** fHistoTrueClusConvGammaPt
array of histos with validated electron, pt
TH1F ** fHistoTrueClusPhotonFromElecMotherPt
array of histos with validated Dalitz decay, more than one decay product in cluster, pt
TH2F ** fHistoMCEtaPtJetPt
array of histos with weighted pi0, pT, hardest jet pt
void SetLogBinningXTH2(TH2 *histoRebin)
void SetInOutTimingCluster(Double_t min, Double_t max)
TH2F ** fHistoNGoodESDTracksVsNGammaCandidates
array of histos with number of gamma candidates per event
TH1F ** fHistoNEventsWOWeight
array of histos with event information
TH2F ** fHistoMotherPi0PtY
array of histogram with BG for mixed event photon pairs with alpha cut of 0.1, inv Mass...
TH2F ** fHistoTruePi0NonMergedElectronPhotonInvMassPt
array of histos with validated mothers, merged cluster part conv, invMass, pt
void FillMultipleCountMap(map< Int_t, Int_t > &ma, Int_t tobechecked)
TH2F ** fHistoClusPhotonPlusConvBGPt
array of histos with cluster photon BG, pt, source
TH2F ** fHistoTruePi0NonMergedElectronMergedPhotonInvMassPt
array of histos with validated mothers, merged cluster invMass, pt
TH2F ** fHistoTrueSecondaryPi0FromK0sInvMassPt
array of histos with validated secondary mothers, invMass, pt
TH1F ** fHistoMCDecayGammaRhoPt
array of histos with decay gamma from pi0, pT
TH1F ** fHistoMCDecayGammaEtaPt
array of histos with decay gamma from rho, pT
TH2F ** fHistoTrueBckFullMesonContainedInOneClusterInvMassPt
array of histos with pure gamma gamma combinatorial BG, invMass, pt
TH2F ** fHistoMCEtaPtY
array of histos with weighted pi0, pT, Y
TH2F ** fHistoTrueSecondaryClusConvGammaMCPt
array of histos with validated secondary photon cluster, MC pt
TH2F ** fHistoTruePrimaryEtaInvMassPt
array of histos with validated weighted primary mothers, invMass, pt
virtual void Terminate(const Option_t *)
TH1F ** fHistoMCDecayGammaSigmaPt
array of histos with decay gamma from phi, pT
TH2F ** fHistoTruePi0PureGammaInvMassPtAlpha
array of histogram with pure pi0 signal inv Mass, energy of cluster
THnSparseF ** fSparseMotherBackInvMassPtZM
array of histogram with BG for mixed event photon pairs, inv Mass, pt
TH2F ** fHistoTrueEtaPtAlpha
array of histos with validated pi0, pt, alpha
TH2F ** fHistoTrueSecondaryPi0FromEtaInvMassPt
array of histos with K0l with reconstructed pi0 as daughter, pt
TH2F ** fHistoTrueEtaCaloMergedClusterInvMassPt
array of histos with validated mothers, merged cluster invMass, pt
void FillPhotonBackgroundHist(AliAODConversionPhoton *TruePhotonCandidate, Int_t pdgCode)
TH2F ** fHistoTrueSecondaryPi0FromK0lInvMassPt
array of histos with K0s with reconstructed pi0 as daughter, pt
TH2F ** fHistoTrueEtaCaloConvertedPhotonInvMassPt
array of histos with validated pi0, converted photon leading, invMass, pt
TH1F ** fHistoMCPi0WOEvtWeightInAccPt
array of histos with weighted eta in acceptance, pT
TH1F ** fHistoTrueClusGammaPt
array of histos with cluster photon plus conv BG rest, M02 vs. pt, source
TH2F ** fHistoClustPhotonPlusConvNeutronBGPtM02
array of histos with cluster photon plus conv BG k0l, M02 vs. pt, source
TH2F ** fHistoTrueEtaCaloMergedClusterPartConvInvMassPt
array of histos with validated mothers, merged cluster part conv, invMass, pt
TH2F ** fHistoTrueEtaCategory1
array of histos with validated pi0, pure real photons
TH2F ** fHistoTruePi0CaloConvertedPhotonInvMassPt
array of histos with validated mothers, photon leading, invMass, pt
TH2F ** fHistoTruePrimaryEtaMCPtResolPt
array of histos with validated weighted primary pi0, MCpt, resol pt
TH2F ** fHistoMCSecPi0InAccPtvsSource
array of histos with secondary pi0, source
TH2F ** fHistoClustPhotonPlusConvKaonBGPtM02
array of histos with cluster photon plus conv BG pion, M02 vs. pt, source
TH2F ** fHistoTruePi0CaloMixedPhotonConvPhotonInvMassPt
array of histos with validated eta, converted photon leading, invMass, pt
TH1F ** fHistoMCPi0WOWeightPt
array of histos with weighted pi0, pT
void FillMultipleCountHistoAndClear(map< Int_t, Int_t > &ma, TH1F *hist)
TH1F ** fHistoNV0Tracks
array of histos with SPD tracklets vs SPD clusters for background rejection
TH1F ** fHistoNGammaCandidates
array of histos with vertex z distribution for selected events
Int_t fClusterClassification
cellID of leading cell in cluster
TH2F ** fHistoTruePi0Category4_6
array of histos with validated eta, 1 real photon, 1 electron from conversion unmerged ...
TH1F ** fHistoTrueNLabelsInClus
array of histos with cluster with largest energy by hadron
void SetAllowOverlapHeaders(Bool_t allowOverlapHeader)
TH2F ** fHistoTrueSecondaryClusGammaMCPt
array of histos with validated secondary converted photon cluster, pt
TH2F ** fHistoTrueEtaCategory4_6
array of histos with validated pi0, 2 electrons from same conversion
TH1F ** fHistoMCPi0InAccPt
array of histos without event weights eta, pT
TH2F ** fHistoTrueEtaPtY
array of histos with validated pi0, pt, Y
TH1F ** fHistoMCPi0WOEvtWeightPt
array of histos with unweighted pi0, pT
TH2F ** fHistoDoubleCountTruePi0InvMassPt
array of histos with validated secondary converted photon cluster from X from Lambda, MC pt, rec pt
TH2F ** fHistoClustPhotonPlusConvRestBGPtM02
array of histos with cluster photon plus conv BG neutron, M02 vs. pt, source
int Int_t
Definition: External.C:63
TH1F ** fHistoTrueClusEMNonLeadingPt
array of histos with number of different particles (pi0/eta/eta_prime) contributing to cluster ...
TH1F ** fHistoTrueLambdaWithPi0DaughterMCPt
array of histos with validated secondary mothers from Lambda, invMass, pt
Class handling all kinds of selection cuts for Gamma Calo analysis.
TH2F ** fHistoTruePrimaryEtaW0WeightingInvMassPt
array of histos with validated unweighted primary mothers, invMass, pt
TProfile ** fProfileEtaShift
array of histos with V0 counts
Definition: External.C:204
TH2F ** fHistoTrueEtaPtOpenAngle
array of histos with validated pi0, pt, openAngle
TH1F ** fHistoTrueClusUnConvGammaMCPt
array of histos with validated unconverted photon, pt
float Float_t
Definition: External.C:68
TH1F ** fHistoTrueClusDalitzMergedPt
array of histos with validated Dalitz decay, pt
TH2F ** fHistoTrueSecondaryPi0FromLambdaInvMassPt
array of histos with eta with reconstructed pi0 as daughter, pt
TH2F ** fHistCellIDvsClusterEnergy
array of histogram with pure pi0 signal (only pure gammas) inv Mass, energy of cluster ...
void ProcessTrueClusterCandidates(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster *clus)
TH1F ** fHistoTrueClusMergedPartConvGammaPt
array of histos with validated merged photons, electrons, dalitz, pt
TH1F ** fHistoTrueK0sWithPi0DaughterMCPt
array of histos with validated secondary mothers from K0s, invMass, pt
TH2F ** fHistoTrueEtaCaloPhotonInvMassPt
array of histos with validated mothers, photon leading, invMass, pt
TH2F ** fHistoTrueSecondaryPi0InvMassPt
array of histos with validated weighted primary eta, MCpt, resol pt
TH1F ** fHistoClusOverlapHeadersGammaPt
array of histos with cluster, E
void ProcessTrueMesonCandidates(AliAODConversionMother *Pi0Candidate, AliAODConversionPhoton *TrueGammaCandidate0, AliAODConversionPhoton *TrueGammaCandidate1)
TH1F ** fHistoTruePrimaryClusGammaPt
array of histos with number of labels in cluster
TH2F ** fHistoTrueSecondaryClusConvGammaFromXFromK0lMCPtESDPt
array of histos with validated secondary photon cluster from X from K0l, MC pt, rec pt ...
TH2F ** fHistoTrueSecondaryClusGammaFromXFromK0lMCPtESDPt
array of histos with validated secondary converted photon cluster from X from K0s, MC pt, rec pt
TH2F ** fHistoTruePi0Category7
array of histos with validated eta, 2 electrons from different conversions, 2 electrons (unseen) ...
TH1F ** fHistoTrueClusNParticles
array of histos with pi0/eta/eta_prime in subleading contribution
void SetCaloCutList(Int_t nCuts, TList *CutArray)
Double_t fEventPlaneAngle
sum of Et of tracks within R<0.2
void FillPhotonPlusConversionBackgroundM02Hist(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster *clus, Int_t pdgCode)
TH2F ** fHistoTruePi0CaloMergedClusterInvMassPt
array of histos with validated mothers, electron leading, invMass, pt
TH1F ** fHistoMCEtaPt
array of histos without event weights pi0, pT
THnSparseF ** fSparseMotherInvMassPtZM
array of histogram with signal + BG for same event photon pairs, inv Mass, pt
TH1F ** fHistoTrueClusShowerPt
array of histos with validated photon from electron, pt
TH1F ** fHistoMCSecEtaPt
array of histos with secondary pi0 in acceptance, pT, source
TH2F ** fHistoTruePi0PtY
array of histos with contamination BG, invMass, pt
TH2F ** fHistoMCPi0PtY
array of histos without evt weight eta in acceptance, pT
void ProcessTrueClusterCandidatesAOD(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster *clus)
TH2F ** fHistoTruePi0CaloPhotonInvMassPt
array of histos with validated mothers, invMass, pt
Float_t fClusterIsoSumTrackEt
sum of Et of clusters within R<0.2
TH2F ** fHistoTrueBckAsymEClustersInvMassPt
array of histos with pi0 fully contained in one cluster, invMass, pt
TH2F ** fHistoMCPi0PtJetPt
array of histos with secondary eta, source
Float_t fInvMassTreeInvMass
array of trees
TH2F ** fHistoTrueEtaCategory3
array of histos with validated pi0, 1 real photon, 1 electron from conversion unmerged ...
TH2F ** fHistoClustPhotonPlusConvElectronBGPtM02
array of histos with cluster photon BG rest, M02 vs. pt, source
TH2F ** fHistoTruePi0CaloMergedClusterPartConvInvMassPt
array of histos with validated mothers, merged cluster invMass, pt
TH1F ** fHistoMCEtaWOEvtWeightPt
array of histos with unweighted eta, pT
TH2F ** fHistoClustPhotonRestBGPtM02
array of histos with cluster photon BG neutron, M02 vs. pt, source
TH2F ** fHistoMotherBackInvMassPtAlpha
array of histograms with alpha cut of 0.1 for inv mass vs pt
TH2F ** fHistoTrueSecondaryClusConvGammaFromXFromK0sMCPtESDPt
array of histos with validated secondary photon cluster from X from K0s, MC pt, rec pt ...
TH1F ** fHistoJetJetNTrials
array of profiles with xsection for jetjet
TH1F ** fHistoClusGammaE
array of histos with cluster, pt
TH2F ** fHistoClusGammaPtM02
array of histos with cluster, pt rejected with other headers
TH1F ** fHistoMultipleCountTrueClusterGamma
vector containing labels of validated cluster photons
TH1F ** fHistoClusRejectedHeadersGammaPt
array of histos with cluster, pt all headers
TTree ** tSigInvMassPtAlphaTheta
flag (0 = gamma, 1 = pi0, 2 = eta)
TH1F ** fHistoNGoodESDTracks
array of histos with event information without event weights
TH2F ** fHistoMotherPi0NGoodESDTracksPt
array of histograms with invariant mass cut of 0.45 && pi0cand->M() < 0.65, pt, openAngle ...
Bool_t isMC
TH2F ** fHistoTruePi0Category5
array of histos with validated eta, 2 electrons from same conversion
vector< Int_t > fVectorDoubleCountTruePi0s
array of histos with double counted cluster photons
void SetEnableSortingOfMCClusLabels(Bool_t enableSort)
TH1F ** fHistoMCEtaWOEvtWeightInAccPt
array of histos without evt weight pi0 in acceptance, pT
TTree ** tBckInvMassPtAlphaTheta
array of trees
TH2F ** fHistoClustPhotonElectronBGPtM02
array of histos with cluster photon plus conv BG, pt, source
Float_t fInvMass
array of trees with
TH2F ** fHistoTrueEtaCaloMixedPhotonConvPhotonInvMassPt
array of histos with validated mothers, converted photon leading, invMass, pt
TH2F ** fHistoMotherBackInvMassPt
array of THnSparseF with signal + BG for same event photon pairs, inv Mass, pt
TH2F ** fHistoMotherEtaPtAlpha
array of histograms with invariant mass cut of 0.05 && pi0cand->M() < 0.17, pt, alpha ...
TList * fEventCutArray
current list of cluster candidates
void SetEventCutList(Int_t nCuts, TList *CutArray)
TH2F ** fHistoTrueEtaCaloElectronInvMassPt
array of histos with validated mothers, electron leading, invMass, pt
TH2F ** fHistoTruePrimaryClusGammaESDPtMCPt
array of histos with validated primary photon cluster, pt
TH2F ** fHistoSPDClusterTrackletBackground
array of histos with number of good tracks vs gamma candidates
Definition: External.C:220
TH2F ** fHistoClustPhotonPionBGPtM02
array of histos with cluster photon BG electron, M02 vs. pt, source
void RotateParticleAccordingToEP(AliAODConversionPhoton *gamma, Double_t previousEventEP, Double_t thisEventEP)
Class handling all kinds of selection cuts for Gamma Conversion analysis.
void FillPhotonPlusConversionBackgroundHist(AliAODConversionPhoton *TruePhotonCandidate, Int_t pdgCode)
TH2F ** fHistoMotherEtaNGoodESDTracksPt
array of histograms with invariant mass cut of 0.05 && pi0cand->M() < 0.17, ngoodtrakcs, pt
AliConversionMesonCuts * fMesonCuts
TH1F ** fHistoMCSecEtaSource
array of histos with secondary eta, pT
AliAnalysisTaskGammaCalo & operator=(const AliAnalysisTaskGammaCalo &)
TH2F ** fHistoMotherPi0PtAlpha
array of histograms with invariant mass cut of 0.45 && pi0cand->M() < 0.65, pt, Y ...
TH2F ** fHistoMCPrimaryPtvsSource
array of histos with weighted eta, pT, alpha
TH2F ** fHistoTruePi0CaloElectronInvMassPt
array of histos with validated mothers, converted photon leading, invMass, pt
TH1F ** fHistoMCEtaWOWeightPt
array of histos with weighted eta, pT
void FillPhotonBackgroundM02Hist(AliAODConversionPhoton *TruePhotonCandidate, AliVCluster *clus, Int_t pdgCode)
Class handling all kinds of selection cuts for Gamma Conversion analysis.
TH1F ** fHistoMCAllGammaPt
array of histos for header names
TH1F ** fHistoTrueClusSubLeadingPt
array of histos with validated shower, pt
TH2F ** fHistoTruePi0Category2
array of histos with validated eta, pure real photons
void SetMesonCutList(Int_t nCuts, TList *CutArray)
TH2F ** fHistoMCSecPi0PtvsSource
array of histos with weighted primary particles, pT vs source
const char Option_t
Definition: External.C:48
TH1F ** fHistoTrueClusMergedGammaPt
array of histos with validated converted photon, fully contained, pt
TH2F ** fHistoTruePrimaryClusConvGammaESDPtMCPt
array of histos with validated primary conv photon cluster, pt
TH1F ** fHistoMCDecayGammaPi0Pt
array of histos with all secondary gamma, pT
TH1F ** fHistoVertexZ
array of histos with number of good tracks (2010 Standard track cuts)
vector< Int_t > fVectorDoubleCountTrueClusterGammas
vector containing labels of validated eta
TH2F ** fHistoClustPhotonPlusConvK0lBGPtM02
array of histos with cluster photon plus conv BG kaon, M02 vs. pt, source
TH1F ** fHistoTrueClusConvGammaFullyPt
array of histos with validated converted photon, pt
TH1F ** fHistoTrueClusElectronPt
array of histos with validated unconverted photon, M02 vs pt
bool Bool_t
Definition: External.C:53
TH2F ** fHistoMotherEtaPtOpenAngle
array of histograms with invariant mass cut of 0.05 && pi0cand->M() < 0.17, pt, openAngle ...
TH1I ** fHistoMCHeaders
array of histos with cluster M02 vs. pt
void ProcessTrueMesonCandidatesAOD(AliAODConversionMother *Pi0Candidate, AliAODConversionPhoton *TrueGammaCandidate0, AliAODConversionPhoton *TrueGammaCandidate1)
TH2F ** fHistoClustPhotonNeutronBGPtM02
array of histos with cluster photon BG k0l, M02 vs. pt, source
TH1F ** fHistoNEvents
array of histogram with leading cell ID vs maximum cluster energy in event
Float_t fTrackPt
matching residual track <-> cluster
TH2F ** fHistoClusPhotonBGPt
array of histos with validated eta, pt, openAngle
TH2F ** fHistoTruePi0Category3
array of histos with validated eta, 1 real photon, 1 merged converted photon
TH1F ** fHistoClusAllHeadersGammaPt
array of histos with cluster, pt overlapping with other headers
TH2F ** fHistoTrueSecondaryClusConvGammaFromXFromLambdaMCPtESDPt
array of histos with validated secondary photon cluster from X from Lambda, MC pt, rec pt
TH1F ** fHistoTrueClusUnConvGammaPt
array of histos with validated cluster (electron or photon), pt
TProfile ** fProfileJetJetXSection
array of profiles with eta shift
TH2F ** fHistoTrueSecondaryClusGammaFromXFromLambdaMCPtESDPt
array of histos with validated secondary converted photon cluster from X from K0l, MC pt, rec pt
TH1F ** fHistoMCDecayGammaPhiPt
array of histos with decay gamma from eta', pT
TH2F ** fHistoMotherEtaPtY
array of histograms with invariant mass cut of 0.05 && pi0cand->M() < 0.17, pt, Y ...
TH1F ** fHistoTrueK0lWithPi0DaughterMCPt
array of histos with validated secondary mothers from K0l, invMass, pt
TH2F ** fHistoTrueClusUnConvGammaPtM02
array of histos with validated cluster (electron or photon), M02 vs pt
TH2F ** fHistoDoubleCountTrueClusterGammaPt
array of histos with double counted etas, invMass, pT
TH1F ** fHistoTrueClusConvGammaMCPt
array of histos with validated converted photon, pt
TH2F ** fHistCellIDvsClusterEnergyMax
array of histogram with leading cell ID vs cluster Energy
TH2F ** fHistoTruePi0PtOpenAngle
array of histos with validated eta, pt, alpha
TH2F ** fHistoMCPi0PtAlpha
array of histos with weighted eta, pT, Y
TProfile2D ** fProfileTruePrimaryPi0WeightsInvMassPt
array of histos with validated unweighted primary mothers, invMass, pt
TH2F ** fHistoDoubleCountTrueEtaInvMassPt
array of histos with double counted pi0s, invMass, pT
TH2F ** fHistoTruePrimaryPi0W0WeightingInvMassPt
array of histos with validated weighted primary mothers, invMass, pt
vector< Int_t > fVectorDoubleCountTrueEtas
vector containing labels of validated pi0
AliGammaConversionAODBGHandler ** fBGHandler
TH1F ** fHistoMCDecayGammaEtapPt
array of histos with decay gamma from omega, pT
TH1F ** fHistoTrueClusDalitzPt
array of histos with validated merged partially converted photons, pt
Float_t fInvMassRTOF
opening angle at R = 0,
virtual void UserExec(Option_t *)