]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSPID.h
Convert geant particle code into pdg code before putting particle on the stack.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPID.h
CommitLineData
26d4b141 1#ifndef ALIPHOSPID_H
2#define ALIPHOSPID_H
6ad0bfa0 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////////////////////////////////////////////////
26d4b141 9// Algorithme class for the identification of//
6ad0bfa0 10// particles detected in PHOS //
26d4b141 11// base class //
6ad0bfa0 12// Version SUBATECH //
13// Author Yves Schutz SUBATECH //
14// //
15// pABC //
16////////////////////////////////////////////////
17
18// --- ROOT system ---
19
20#include "TObject.h"
21#include "TClonesArray.h"
22
23// --- Standard library ---
24
25// --- AliRoot header files ---
26
27#include "AliPHOSTrackSegmentMaker.h"
28
29
30typedef TClonesArray RecParticlesList ;
31
26d4b141 32class AliPHOSPID : public TObject {
6ad0bfa0 33
34public:
35
26d4b141 36 AliPHOSPID() ; // ctor
37 virtual ~AliPHOSPID() ; // dtor
6ad0bfa0 38
908558fc 39 virtual void GetParticleType(TrackSegmentsList * trsl, RecParticlesList * rpl) {} ;
6ad0bfa0 40
908558fc 41 ClassDef(AliPHOSPID,1) // Particle Identifier interface, version 1
6ad0bfa0 42
43} ;
44
26d4b141 45#endif // ALIPHOSPID_H