]>
Commit | Line | Data |
---|---|---|
8bb5c9a6 | 1 | #ifndef ALIFASTPARTICLE_H |
2 | #define ALIFASTPARTICLE_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 | #include <TParticle.h> | |
9 | class AliFastParticle : public TParticle { | |
10 | public: | |
11 | AliFastParticle(){;} | |
12 | virtual ~AliFastParticle(){;} | |
13 | protected: | |
14 | ClassDef(AliFastParticle,1) // Base class for fast particle | |
15 | }; | |
16 | ||
17 | #endif | |
18 | ||
19 | ||
20 |