]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSpidESD.h
Updates in methods UseTrackForPlaneEff and IsOKForPlaneEff, plus controls to call...
[u/mrichter/AliRoot.git] / ITS / AliITSpidESD.h
... / ...
CommitLineData
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/* $Id$ */
7
8//-------------------------------------------------------
9// ITS PID class
10// Base class:
11// See the implementations AliITSpidESD1 and AliITSpidESD2
12//-------------------------------------------------------
13//#include <Rtypes.h>
14#include <TObject.h>
15
16class TTree;
17class AliESDEvent;
18
19class AliITSpidESD : public TObject {
20public:
21 AliITSpidESD();
22 virtual ~AliITSpidESD() {}
23 virtual Int_t MakePID(AliESDEvent *event) = 0;
24 // This method is here because of the AliITSpidESD2 class...
25 virtual Int_t MakePID(TTree *clustersTree, AliESDEvent *event) = 0;
26 static Double_t Bethe(Double_t p,Double_t mass);
27private:
28 ClassDef(AliITSpidESD,1) // ITS PID class
29};
30
31#endif
32
33