]>
Commit | Line | Data |
---|---|---|
1 | #ifndef ALIKINK_H | |
2 | #define ALIKINK_H | |
3 | ||
4 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * | |
5 | * See cxx source for full Copyright notice */ | |
6 | ||
7 | //------------------------------------------------------------------------- | |
8 | // Kink Vertex Class | |
9 | // This class is part of the reconstruction | |
10 | // Origin: Marian Ivanov marian.ivanov@cern.ch | |
11 | //------------------------------------------------------------------------- | |
12 | ||
13 | #include "AliESDkink.h" | |
14 | ||
15 | class AliKink : public AliESDkink { | |
16 | public: | |
17 | AliKink(){;} //constructor | |
18 | void Update(); //update | |
19 | ClassDef(AliKink,1) //kink vertex | |
20 | }; | |
21 | ||
22 | #endif | |
23 | ||
24 |