]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSpidESD.h
Use of appropriate sensor depending response objects in SPD simulation
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD.h
CommitLineData
8c6a71ab 1#ifndef ALIITSpIDESD_H
2#define ALIITSpIDESD_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//-------------------------------------------------------
7// ITS PID class
8// A very naive design... Should be made better by the detector experts...
9// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
10//-------------------------------------------------------
11#include <Rtypes.h>
12
13class AliESD;
14
15class AliITSpidESD {
16public:
17 AliITSpidESD(Double_t *param);
f77f13c8 18 virtual ~AliITSpidESD() {}
8c6a71ab 19 Int_t MakePID(AliESD *event);
20 static Double_t Bethe(Double_t bg);
21private:
22 Double_t fMIP; // dEdx for MIP
23 Double_t fRes; // relative dEdx resolution
24 Double_t fRange; // one particle type PID range (in sigmas)
25 ClassDef(AliITSpidESD,1) // ITS PID class
26};
27
28#endif
29
30