]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSpidESD1.h
New versions of GDC and CDH raw data headers. Some CDH getters are added
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD1.h
1 #ifndef ALIITSPIDESD1_H
2 #define ALIITSPIDESD1_H
3 /* Copyright(c) 2005-2007, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //-------------------------------------------------------
7 // PID method # 1
8 //                    ITS PID class
9 // A very naive design... Should be made better by the detector experts...
10 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
11 //-------------------------------------------------------
12 #include "AliITSpidESD.h"
13
14
15 class AliITSpidESD1 : public AliITSpidESD {
16 public:
17   AliITSpidESD1();
18   AliITSpidESD1(Double_t *param);
19   virtual ~AliITSpidESD1() {}
20   virtual Int_t MakePID(AliESD *event);
21
22 private:
23   Double_t fMIP;          // dEdx for MIP
24   Double_t fRes;          // relative dEdx resolution
25   Double_t fRange;        // one particle type PID range (in sigmas)
26   ClassDef(AliITSpidESD1,1)   // ITS PID class
27 };
28
29 #endif
30