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 | |
30 | typedef TClonesArray RecParticlesList ; |
31 | |
26d4b141 |
32 | class AliPHOSPID : public TObject { |
6ad0bfa0 |
33 | |
34 | public: |
35 | |
26d4b141 |
36 | AliPHOSPID() ; // ctor |
37 | virtual ~AliPHOSPID() ; // dtor |
6ad0bfa0 |
38 | |
39 | virtual void GuessParticleType(TrackSegmentsList * trsl, RecParticlesList * rpl) {} ; |
40 | |
26d4b141 |
41 | ClassDef(AliPHOSPID,1) // Particle Guesser interface, version 1 |
6ad0bfa0 |
42 | |
43 | } ; |
44 | |
26d4b141 |
45 | #endif // ALIPHOSPID_H |