]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG3/hfe/AliHFEV0pid.h
Updates + addition of EMCal
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEV0pid.h
CommitLineData
70da6c5a 1/**************************************************************************
2* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3* *
4* Author: The ALICE Off-line Project. *
5* Contributors are mentioned in the code where appropriate. *
6* *
7* Permission to use, copy, modify and distribute this software and its *
8* documentation strictly for non-commercial purposes is hereby granted *
9* without fee, provided that the above copyright notice appears in all *
10* copies and that both the copyright notice and this permission notice *
11* appear in the supporting documentation. The authors make no claims *
12* about the suitability of this software for any purpose. It is *
13* provided "as is" without express or implied warranty. *
14**************************************************************************/
15//
16// Utility class for V0 PID
17// Provides smaples of electrons, pions and protons
18// More information can be found in the implementation file
19//
c2690925 20#ifndef ALIHFEV0PID_H
21#define ALIHFEV0PID_H
22
70da6c5a 23#ifndef ROOT_TObject
24#include <TObject.h>
25#endif
26
70da6c5a 27class TObjArray;
28class TList;
faee3b18 29class TString;
70da6c5a 30
31class AliESDv0;
32class AliESDtrack;
33class AliKFParticle;
34class AliKFVertex;
35class AliVEvent;
36class AliVTrack;
3a72645a 37class AliMCEvent;
70da6c5a 38
faee3b18 39class AliHFEV0cuts;
40class AliHFEcollection;
41
70da6c5a 42class AliHFEV0pid : public TObject{
43 public:
70da6c5a 44 AliHFEV0pid();
45 ~AliHFEV0pid();
46
faee3b18 47 void Process(AliVEvent * const inputEvent);
70da6c5a 48 Int_t ProcessV0(TObject *v0);
faee3b18 49 void Flush();
70da6c5a 50
faee3b18 51 void InitQA();
52 TList *GetListOfQAhistograms();
70da6c5a 53
54 TObjArray *GetListOfElectrons() const { return fElectrons; }
55 TObjArray *GetListOfPionsK0() const { return fPionsK0; }
56 TObjArray *GetListOfPionsL() const { return fPionsL; }
57 TObjArray *GetListOfKaons() const { return fKaons; }
58 TObjArray *GetListOfProtons() const { return fProtons; }
59
faee3b18 60 Bool_t IsAODanalysis() const { return TestBit(kAODanalysis); }
61 Bool_t IsESDanalysis() const { return !TestBit(kAODanalysis); }
62 void SetAODanalysis(Bool_t isAOD = kTRUE) { SetBit(kAODanalysis, isAOD); };
63 void SetESDanalysis(Bool_t isESD = kTRUE) { SetBit(kAODanalysis, !isESD); };
70da6c5a 64
3a72645a 65 void SetMCEvent(AliMCEvent* const ev) { fMCEvent = ev; };
66
faee3b18 67 protected:
70da6c5a 68 enum{
69 kAODanalysis = BIT(14)
faee3b18 70 };
3a72645a 71
72 Int_t PreselectV0(AliESDv0 * const v0, Int_t idMC);
73
74 void ArmenterosPlotMC(AliESDv0 * const v0, Int_t idMC);
70da6c5a 75 Bool_t IsGammaConv(TObject *v0);
76 Bool_t IsK0s(TObject *v0);
77 Bool_t IsPhi(TObject *v0);
faee3b18 78 Bool_t IsLambda(TObject *v0);
79 TList *GetV0pidQA();
70da6c5a 80
3a72645a 81 Int_t IdentifyV0(TObject *v0, Int_t d[2]);
82
e97c2edf 83 void BenchmarkV0finder();
84
faee3b18 85 private:
70da6c5a 86 class AliHFEV0pidTrackIndex{
faee3b18 87 public:
88 AliHFEV0pidTrackIndex();
89 ~AliHFEV0pidTrackIndex();
90 void Init(Int_t capacity);
91 void Add(Int_t index, Int_t species);
92 Bool_t Find(Int_t index) const;
93 Bool_t Find(Int_t index, Int_t species) const;
94 Int_t GetNumberOfElectrons() const { return fNElectrons; };
95 Int_t GetNumberOfPionsK0() const { return fNPionsK0; };
96 Int_t GetNumberOfPionsL() const { return fNPionsL; };
97 Int_t GetNumberOfKaons() const { return fNKaons; };
98 Int_t GetNumberOfProtons() const { return fNProtons; };
99 void Flush();
100
101 private:
102 AliHFEV0pidTrackIndex(const AliHFEV0pidTrackIndex &ref);
103 AliHFEV0pidTrackIndex &operator=(const AliHFEV0pidTrackIndex &ref);
104 Int_t fNElectrons; // Number of identified electrons
105 Int_t fNPionsK0; // Number of identified pions from K0s
106 Int_t fNPionsL; // Lumber of identified pions from Lambda
107 Int_t fNKaons; // Number of identified kaons
108 Int_t fNProtons; // Number of identified protons
109 Int_t *fIndexElectron; // Indices of identified electrons
110 Int_t *fIndexPionK0; // Indices of identified pions from K0s
111 Int_t *fIndexPionL; // Indices of identified pions from Lambda
112 Int_t *fIndexKaon; // Indices of identified kaons
113 Int_t *fIndexProton; // Indices of identified protons
70da6c5a 114 };
70da6c5a 115 AliHFEV0pid(const AliHFEV0pid &ref);
116 AliHFEV0pid&operator=(const AliHFEV0pid &ref);
faee3b18 117
70da6c5a 118 AliVEvent *fInputEvent; // Input Event
3a72645a 119 Int_t fNtracks; // number of tracks in current event
120 AliMCEvent *fMCEvent; // MC evnet
121 Bool_t fMCon; // availability of MC information
70da6c5a 122 AliKFVertex *fPrimaryVertex; // Primary Vertex
123 TObjArray *fElectrons; // List of Electron tracks coming from Conversions
124 TObjArray *fPionsK0; // List of Pion tracks coming from K0
125 TObjArray *fPionsL; // List of Pion tracks coming from L
126 TObjArray *fKaons; // List of Kaon tracks from Phi decay
127 TObjArray *fProtons; // List of Proton Tracks coming from Lambdas
faee3b18 128
129 TObjArray *fGammas; // for MC purposes - list of found gammas
130 TObjArray *fK0s; // for MC purposes - list of found K0s
131 TObjArray *fLambdas; // for MC purposes - list of found lambdas
132 TObjArray *fAntiLambdas; // for MC purposes - list of found anti lambdas
133
70da6c5a 134 AliHFEV0pidTrackIndex *fIndices; // Container for Track indices
135 AliHFEcollection *fQA; // Collection of QA histograms
faee3b18 136 AliHFEV0cuts *fV0cuts; // separate class for studying and applying the V0 cuts
137 TList *fOutput; // collection list
70da6c5a 138
139 ClassDef(AliHFEV0pid, 1) // V0 PID Class
140
141};
142
70da6c5a 143#endif