]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliESDpid.h
An update of the primary vertex reconstruction method, and change of the magnetic...
[u/mrichter/AliRoot.git] / STEER / AliESDpid.h
... / ...
CommitLineData
1#ifndef ALIESDPID_H
2#define ALIESDPID_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// Combined PID class
10// for the Event Summary Data class
11// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
12//-------------------------------------------------------
13#include <Rtypes.h>
14
15class AliESDEvent;
16
17class AliESDpid {
18public:
19 AliESDpid(){}
20 virtual ~AliESDpid() {}
21 static Int_t MakePID(AliESDEvent *event);
22private:
23 ClassDef(AliESDpid,2) // TPC PID class
24};
25
26#endif
27
28