]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaRec/AliTRDpidChecker.h
- fix in AliTRDcheckDetector in the PHs plotter that uses the cluster
[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
d7519fe6 36 ,kNTracklets = 8 // Number of tracklets per track
c7cf2032 37 };
1a6d7c9a 38public:
3d86166d 39 AliTRDpidChecker();
1a6d7c9a 40 virtual ~AliTRDpidChecker();
41
74b2e03d 42 virtual void CreateOutputObjects();
e15179be 43 virtual Bool_t GetRefFigure(Int_t ifig);
74b2e03d 44 virtual Bool_t PostProcess();
45 virtual void Terminate(Option_t *);
46
47 TH1 *PlotLQ(const AliTRDtrackV1 *track = 0x0);
48 TH1 *PlotNN(const AliTRDtrackV1 *track = 0x0);
c46a7947 49 TH1 *PlotESD(const AliTRDtrackV1 *track = 0x0);
74b2e03d 50 TH1 *PlotdEdx(const AliTRDtrackV1 *track = 0x0);
51 TH1 *PlotdEdxSlice(const AliTRDtrackV1 *track = 0x0);
52 TH1 *PlotPH(const AliTRDtrackV1 *track = 0x0);
53 TH1 *PlotNClus(const AliTRDtrackV1 *track = 0x0);
d7519fe6 54 TH1 *PlotNTracklets(const AliTRDtrackV1 *track = 0x0);
74b2e03d 55 TH1 *PlotMom(const AliTRDtrackV1 *track = 0x0);
56 TH1 *PlotMomBin(const AliTRDtrackV1 *track = 0x0);
1a6d7c9a 57
18035ab0 58 void SetRequireMinNTracklets(Int_t mintracklets) { fMinNTracklets = mintracklets; }
59 void SetRequireMaxNTracklets(Int_t maxtracklets) { fMaxNTracklets = maxtracklets; }
60
b8174058 61 TObjArray *GetGraphs() { return fGraph; };
d7519fe6 62 //TObjArray *GetHistos() { return fContainer; };
74b2e03d 63 virtual TObjArray *Histos();
1bd44ae8 64 void EvaluatePionEfficiency(TObjArray *histoContainer, TObjArray *results, Float_t electron_efficiency);
0d83b3a5 65 inline void SetMomentumBinning(Int_t nBins, Double_t *bins);
66 inline Int_t FindBin(Int_t species, Double_t momentum);
67 inline Bool_t IsInRange(Double_t momentum);
c4c5bbfb 68
1a6d7c9a 69private:
c4c5bbfb 70 AliTRDpidChecker(const AliTRDpidChecker&); // not implemented
71 AliTRDpidChecker& operator=(const AliTRDpidChecker&); // not implemented
1a6d7c9a 72
74b2e03d 73 Int_t CalcPDG(AliTRDtrackV1* track = 0x0);
74 Bool_t CheckTrackQuality(const AliTRDtrackV1* track = 0x0);
75
1a6d7c9a 76 AliTRDReconstructor *fReconstructor; //! reconstructor needed for recalculation the PID
74b2e03d 77 AliTRDpidUtil *fUtil; //! utility class for PID calculations
c46a7947 78 TObjArray *fGraph; //! array of graphs filled in PostProcess
79 TObjArray *fEfficiency; //! array of histograms with efficiency
0d83b3a5 80 TAxis *fMomentumAxis; //! helper mementum binning
18035ab0 81 Int_t fMinNTracklets; // minimum number of required Tracklets (for systematic studies)
82 Int_t fMaxNTracklets; // maximum number of required Tracklets (for systematic studies)
1a6d7c9a 83 ClassDef(AliTRDpidChecker, 1); // TRD PID checker
84};
85
0d83b3a5 86//________________________________________________________________________
87inline void AliTRDpidChecker::SetMomentumBinning(Int_t nBins, Double_t *bins){
88 //
89 // Set the Momentum Bins
90 //
91 if(fMomentumAxis) delete fMomentumAxis;
92 fMomentumAxis = new TAxis(nBins, bins);
93}
94
95//________________________________________________________________________
96inline Int_t AliTRDpidChecker::FindBin(Int_t species, Double_t momentum){
97 //
98 // Find the Bin in the 2D Histogram
99 //
52bb079b 100 return species * fMomentumAxis->GetNbins() + (fMomentumAxis->FindBin(momentum) -1);
0d83b3a5 101}
102
103//________________________________________________________________________
104inline Bool_t AliTRDpidChecker::IsInRange(Double_t momentum){
105 //
106 // Check Whether momentum is in the defined Range
107 //
108 return (momentum >= fMomentumAxis->GetXmin() && momentum <= fMomentumAxis->GetXmax());
109}
110
1a6d7c9a 111#endif