]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/TRD/AliTRDcheckPID.h
copy TRD performance train to PWG1
[u/mrichter/AliRoot.git] / PWG1 / TRD / AliTRDcheckPID.h
1 #ifndef ALITRDCHECKPID_H
2 #define ALITRDCHECKPID_H
3
4 //////////////////////////////////////////////////////
5 //
6 // PID performance checker of the TRD
7 //
8 // Author : Alex Wilk <wilka@uni-muenster.de>
9 //          Alex Bercuci <A.Bercuci@gsi.de>
10 //          Markus Fasel <M.Fasel@gsi.de>
11 //
12 ///////////////////////////////////////////////////////
13
14 #ifndef ROOT_TAxis
15 #include "TAxis.h"
16 #endif
17
18 #ifndef ALITRDRECOTASK_H
19 #include "AliTRDrecoTask.h"
20 #endif
21
22 class AliTRDReconstructor;
23 class AliTRDpidUtil;
24 class AliTRDcheckPID : public AliTRDrecoTask 
25 {
26 public:
27   // Plots registered for this task
28   enum{
29      kEfficiency     =  0     // pi Efficiency plot
30     ,kdEdx           =  1     // dE/dx spectra
31     ,kdEdxSlice      =  2     // dE/dx spectra
32     ,kPH             =  3     // pulse height spectra
33     ,kNClus          =  4     //  number of clusters per track
34     ,kMomentum       =  5     // momentum distribution
35     ,kMomentumBin    =  6     // momentum distribution
36     ,kNTracklets     =  7     // Number of tracklets per track
37     ,kNPlots         =  8     // Number of plots for this tasks 
38   };
39   AliTRDcheckPID();
40   virtual ~AliTRDcheckPID();
41   
42   virtual void    CreateOutputObjects();
43   virtual Bool_t  GetRefFigure(Int_t ifig);
44   virtual Bool_t  PostProcess();
45
46   TH1 *PlotLQ(const AliTRDtrackV1 *track = 0x0);
47   TH1 *PlotNN(const AliTRDtrackV1 *track = 0x0);
48   TH1 *PlotESD(const AliTRDtrackV1 *track = 0x0);
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 *PlotNTracklets(const AliTRDtrackV1 *track = 0x0);
54   TH1 *PlotMom(const AliTRDtrackV1 *track = 0x0);
55   TH1 *PlotMomBin(const AliTRDtrackV1 *track = 0x0);
56
57   void SetRequireMinNTracklets(Int_t mintracklets) { fMinNTracklets = mintracklets; }
58   void SetRequireMaxNTracklets(Int_t maxtracklets) { fMaxNTracklets = maxtracklets; }
59
60   TObjArray *GetGraphs() const { return fGraph; };
61   //TObjArray *GetHistos() { return fContainer; };
62   virtual TObjArray *Histos();
63   void EvaluatePionEfficiency(TObjArray * const histoContainer, TObjArray *results, Float_t electronEfficiency);
64   inline void SetMomentumBinning(Int_t nBins, Double_t *bins);
65   inline Int_t FindBin(Int_t species, Double_t momentum);
66   inline Bool_t IsInRange(Double_t momentum);
67
68 private:
69   AliTRDcheckPID(const AliTRDcheckPID&);               // not implemented
70   AliTRDcheckPID& operator=(const AliTRDcheckPID&);    // not implemented
71
72   Int_t  CalcPDG(AliTRDtrackV1* track = 0x0);
73   Bool_t CheckTrackQuality(const AliTRDtrackV1* track = 0x0) const;
74   
75   AliTRDReconstructor *fReconstructor;     //! reconstructor needed for recalculation the PID
76   AliTRDpidUtil       *fUtil;              //! utility class for PID calculations
77   TObjArray           *fGraph;             //! array of graphs filled in PostProcess
78   TObjArray           *fEfficiency;        //! array of histograms with efficiency
79   TAxis               *fMomentumAxis;      //! helper mementum binning
80   Int_t                fMinNTracklets;     // minimum number of required Tracklets (for systematic studies)
81   Int_t                fMaxNTracklets;     // maximum number of required Tracklets (for systematic studies) 
82   ClassDef(AliTRDcheckPID, 1); // TRD PID checker
83 };
84
85 //________________________________________________________________________
86 inline void AliTRDcheckPID::SetMomentumBinning(Int_t nBins, Double_t *bins){
87   //
88   // Set the Momentum Bins
89   //
90   if(fMomentumAxis) delete fMomentumAxis;
91   fMomentumAxis = new TAxis(nBins, bins);
92 }
93
94 //________________________________________________________________________
95 inline Int_t AliTRDcheckPID::FindBin(Int_t species, Double_t momentum){
96   //
97   // Find the Bin in the 2D Histogram
98   //
99   return species * fMomentumAxis->GetNbins() + (fMomentumAxis->FindBin(momentum) -1);
100 }
101
102 //________________________________________________________________________
103 inline Bool_t AliTRDcheckPID::IsInRange(Double_t momentum){
104   //
105   // Check Whether momentum is in the defined Range
106   //
107   return (momentum >= fMomentumAxis->GetXmin() && momentum <= fMomentumAxis->GetXmax());
108 }
109
110 #endif