]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEER/AliKink.h
Initial implementation of the DCAL Geometry (work done by Mengliang WANG for his...
[u/mrichter/AliRoot.git] / STEER / STEER / AliKink.h
CommitLineData
6c94f330 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
15class AliKink : public AliESDkink {
16public:
17 AliKink(){;} //constructor
18 void Update(); //update
19 ClassDef(AliKink,1) //kink vertex
20};
21
22#endif
23
24