6ad0bfa0 |
1 | #ifndef ALIPHOSPARTICLEGUESSERV1_H |
2 | #define ALIPHOSPARTICLEGUESSERV1_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 | // Particle Guesser class for PHOS // |
10 | // Version SUBATECH // |
11 | // Author Yves Schutz // |
12 | // comment: guess the type of particle // |
13 | // PHOS SubTrack alone // |
14 | /////////////////////////////////////////////////// |
15 | |
16 | // --- ROOT system --- |
17 | |
18 | // --- Standard library --- |
19 | |
20 | // --- AliRoot header files --- |
21 | |
22 | #include "AliPHOSParticleGuesser.h" |
23 | |
24 | class AliPHOSParticleGuesserv1 : public AliPHOSParticleGuesser { |
25 | |
26 | public: |
27 | |
28 | AliPHOSParticleGuesserv1() ; |
29 | virtual ~ AliPHOSParticleGuesserv1() ; // dtor |
30 | |
31 | void GuessParticleType(TrackSegmentsList * trsl, RecParticlesList * rpl ) ; // does the job |
32 | |
92862013 |
33 | ClassDef( AliPHOSParticleGuesserv1,1) // particle guesser implementation , version 1 |
6ad0bfa0 |
34 | |
35 | }; |
36 | |
37 | #endif // AliPHOSPARTICLEGUESSERV1_H |