]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaRec/AliTRDpidChecker.h
update macro for the changes in the analysis framework and magnetic
[u/mrichter/AliRoot.git] / TRD / qaRec / AliTRDpidChecker.h
CommitLineData
1a6d7c9a 1#ifndef ALITRDPIDCHECKER_H
2#define ALITRDPIDCHECKER_H
3
4//////////////////////////////////////////////////////
5//
6// Task to check PID performance of the TRD
7//
8// Author : Alex Wilk <wilka@uni-muenster.de>
0d83b3a5 9// Alex Bercuci <A.Bercuci@gsi.de>
10// Markus Fasel <M.Fasel@gsi.de>
1a6d7c9a 11//
12///////////////////////////////////////////////////////
13
0d83b3a5 14#ifndef ROOT_TAxis
15#include "TAxis.h"
16#endif
17
3d86166d 18#ifndef ALITRDRECOTASK_H
19#include "AliTRDrecoTask.h"
20#endif
1a6d7c9a 21
1a6d7c9a 22class AliTRDReconstructor;
74b2e03d 23class AliTRDpidUtil;
3d86166d 24class AliTRDpidChecker : public AliTRDrecoTask
1a6d7c9a 25{
c46a7947 26 // Plots registered for this task
c7cf2032 27 enum{
c46a7947 28 kEfficiency = 0 // pi Efficiency plot
29 ,kdEdx = 1 // dE/dx spectra
30 ,kdEdxSlice = 2 // dE/dx spectra
31 ,kPH = 3 // pulse height spectra
32 ,kNClus = 4 // number of clusters per track
33 ,kMomentum = 5 // momentum distribution
34 ,kMomentumBin = 6 // momentum distribution
35 ,kThresh = 7 // threshold in efficiency
c7cf2032 36 };
1a6d7c9a 37public:
3d86166d 38 AliTRDpidChecker();
1a6d7c9a 39 virtual ~AliTRDpidChecker();
40
74b2e03d 41 virtual void CreateOutputObjects();
e15179be 42 virtual Bool_t GetRefFigure(Int_t ifig);
74b2e03d 43 virtual Bool_t PostProcess();
44 virtual void Terminate(Option_t *);
45
46 TH1 *PlotLQ(const AliTRDtrackV1 *track = 0x0);
47 TH1 *PlotNN(const AliTRDtrackV1 *track = 0x0);
c46a7947 48 TH1 *PlotESD(const AliTRDtrackV1 *track = 0x0);
74b2e03d 49 TH1 *PlotdEdx(const AliTRDtrackV1 *track = 0x0);
50 TH1 *PlotdEdxSlice(const AliTRDtrackV1 *track = 0x0);
51 TH1 *PlotPH(const AliTRDtrackV1 *track = 0x0);
52 TH1 *PlotNClus(const AliTRDtrackV1 *track = 0x0);
53 TH1 *PlotMom(const AliTRDtrackV1 *track = 0x0);
54 TH1 *PlotMomBin(const AliTRDtrackV1 *track = 0x0);
1a6d7c9a 55
b8174058 56 TObjArray *GetGraphs() { return fGraph; };
74b2e03d 57 virtual TObjArray *Histos();
1bd44ae8 58 void EvaluatePionEfficiency(TObjArray *histoContainer, TObjArray *results, Float_t electron_efficiency);
0d83b3a5 59 inline void SetMomentumBinning(Int_t nBins, Double_t *bins);
60 inline Int_t FindBin(Int_t species, Double_t momentum);
61 inline Bool_t IsInRange(Double_t momentum);
c4c5bbfb 62
1a6d7c9a 63private:
c4c5bbfb 64 AliTRDpidChecker(const AliTRDpidChecker&); // not implemented
65 AliTRDpidChecker& operator=(const AliTRDpidChecker&); // not implemented
1a6d7c9a 66
74b2e03d 67 Int_t CalcPDG(AliTRDtrackV1* track = 0x0);
68 Bool_t CheckTrackQuality(const AliTRDtrackV1* track = 0x0);
69
1a6d7c9a 70 AliTRDReconstructor *fReconstructor; //! reconstructor needed for recalculation the PID
74b2e03d 71 AliTRDpidUtil *fUtil; //! utility class for PID calculations
c46a7947 72 TObjArray *fGraph; //! array of graphs filled in PostProcess
73 TObjArray *fEfficiency; //! array of histograms with efficiency
0d83b3a5 74 TAxis *fMomentumAxis; //! helper mementum binning
1a6d7c9a 75 ClassDef(AliTRDpidChecker, 1); // TRD PID checker
76};
77
0d83b3a5 78//________________________________________________________________________
79inline void AliTRDpidChecker::SetMomentumBinning(Int_t nBins, Double_t *bins){
80 //
81 // Set the Momentum Bins
82 //
83 if(fMomentumAxis) delete fMomentumAxis;
84 fMomentumAxis = new TAxis(nBins, bins);
85}
86
87//________________________________________________________________________
88inline Int_t AliTRDpidChecker::FindBin(Int_t species, Double_t momentum){
89 //
90 // Find the Bin in the 2D Histogram
91 //
92 return species * fMomentumAxis->GetNbins() + fMomentumAxis->FindBin(momentum);
93}
94
95//________________________________________________________________________
96inline Bool_t AliTRDpidChecker::IsInRange(Double_t momentum){
97 //
98 // Check Whether momentum is in the defined Range
99 //
100 return (momentum >= fMomentumAxis->GetXmin() && momentum <= fMomentumAxis->GetXmax());
101}
102
1a6d7c9a 103#endif