]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDpidESD.h
MUON trigger classes to collaborate with CTP (E. Lopez Torres)
[u/mrichter/AliRoot.git] / TRD / AliTRDpidESD.h
CommitLineData
b0f03c34 1#ifndef ALITRDPIDESD_H
2#define ALITRDPIDESD_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//-------------------------------------------------------
7// TRD PID class
defc9040 8// A very naive design...
b0f03c34 9//-------------------------------------------------------
10#include <Rtypes.h>
11
12class AliESD;
13
14class AliTRDpidESD {
15public:
16 AliTRDpidESD(Double_t *param);
45160b1f 17 virtual ~AliTRDpidESD() {}
defc9040 18 static Int_t MakePID(AliESD *event);
b0f03c34 19 static Double_t Bethe(Double_t bg);
20private:
21 Double_t fMIP; // dEdx for MIP
22 Double_t fRes; // relative dEdx resolution
23 Double_t fRange; // one particle type PID range (in sigmas)
24 ClassDef(AliTRDpidESD,1) // TRD PID class
25};
26
27#endif
28
29