]>
Commit | Line | Data |
---|---|---|
14248849 | 1 | #ifndef ALIVERTEXGENERATOR_H |
2 | #define ALIVERTEXGENERATOR_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 <TObject.h> | |
9 | #include <TVector3.h> | |
10 | ||
11 | ||
12 | class AliVertexGenerator: public TObject { | |
13 | public: | |
14 | virtual TVector3 GetVertex() = 0; | |
15 | ||
16 | ClassDef(AliVertexGenerator, 1) // Base class for vertex generators | |
17 | }; | |
18 | ||
19 | #endif | |
20 | ||
21 | ||
22 | ||
23 | ||
24 | ||
25 | ||
26 | ||
27 | ||
28 | ||
29 | ||
30 | ||
31 | ||
32 | ||
33 |