]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSpidESD1.h
Bug fix. Savannah bug number 59616
[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 /* $Id$ */
7
8 //-------------------------------------------------------
9 // PID method # 1
10 //                    ITS PID class
11 // A very naive design... Should be made better by the detector experts...
12 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
13 //-------------------------------------------------------
14 #include "AliITSpidESD.h"
15
16 class AliITSpidESD1 : public AliITSpidESD {
17 public:
18   AliITSpidESD1();
19   AliITSpidESD1(Double_t *param);
20   virtual ~AliITSpidESD1() {}
21   virtual Int_t MakePID(AliESDEvent *event);
22   
23 private:
24   Double_t fMIP;          // dE/dx for MIP (relative units)
25   Double_t fRes;          // relative dEdx resolution
26   Double_t fRange;        // one particle type PID range (in sigmas)
27   ClassDef(AliITSpidESD1,3)   // ITS PID class
28 };
29
30 #endif
31