Line data Source code
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 0 : class AliFastParticle : public TParticle {
10 : public:
11 0 : AliFastParticle(){;}
12 0 : virtual ~AliFastParticle(){;}
13 : protected:
14 12 : ClassDef(AliFastParticle,1) // Base class for fast particle
15 : };
16 :
17 : #endif
18 :
19 :
20 :
|