]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSParticleGuesser.h
New classes: AliPHOSRecParticle, AliPHOSParticleGuesser, AliPHOSAnalyze
[u/mrichter/AliRoot.git] / PHOS / AliPHOSParticleGuesser.h
CommitLineData
6ad0bfa0 1#ifndef ALIPHOSPARTICLEGUESSER_H
2#define ALIPHOSPARTICLEGUESSER_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// Algorithme class for the guess of //
10// particles detected in PHOS //
11// interface class //
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
32class AliPHOSParticleGuesser : public TObject {
33
34public:
35
36 AliPHOSParticleGuesser() ; // ctor
37 virtual ~AliPHOSParticleGuesser() ; // dtor
38
39 virtual void GuessParticleType(TrackSegmentsList * trsl, RecParticlesList * rpl) {} ;
40
41 ClassDef(AliPHOSParticleGuesser,1) // Particle Guesser interface, version 1
42
43} ;
44
45#endif // ALIPHOSPARTICLEGUESSER_H