]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliV0.h
Removing newling
[u/mrichter/AliRoot.git] / STEER / AliV0.h
1 #ifndef ALIV0_H
2 #define ALIV0_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 //-------------------------------------------------------------------------
9 //                          V0 Vertex Class
10 //          This class is part of the reconstruction
11 //    Origin: Marian Ivanov marian.ivanov@cern.ch
12 //-------------------------------------------------------------------------
13
14 #include "AliESDv0.h"
15
16 class AliV0: public AliESDv0 {
17 public:
18   AliV0(): AliESDv0() {} 
19   void Update(Float_t vertex[3]);            //update
20   ClassDef(AliV0,1)      // V0 MI vertex
21 };
22
23
24 #endif