]>
Commit | Line | Data |
---|---|---|
1 | #ifndef ALIPHOSPID_H | |
2 | #define ALIPHOSPID_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 identification of// | |
10 | // particles detected in PHOS // | |
11 | // base 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 | ||
30 | typedef TClonesArray RecParticlesList ; | |
31 | ||
32 | class AliPHOSPID : public TObject { | |
33 | ||
34 | public: | |
35 | ||
36 | AliPHOSPID() ; // ctor | |
37 | virtual ~AliPHOSPID() ; // dtor | |
38 | ||
39 | virtual void GetParticleType(TrackSegmentsList * trsl, RecParticlesList * rpl) {} ; | |
40 | ||
41 | ClassDef(AliPHOSPID,1) // Particle Identifier interface, version 1 | |
42 | ||
43 | } ; | |
44 | ||
45 | #endif // ALIPHOSPID_H |