]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliV0.h
Fixed warnings
[u/mrichter/AliRoot.git] / STEER / AliV0.h
CommitLineData
6c94f330 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
d6a49f20 14#include "AliESDv0.h"
6c94f330 15
b75d63a7 16class AliV0: public AliESDv0 {
6c94f330 17public:
b75d63a7 18 AliV0(): AliESDv0() {}
6c94f330 19 void Update(Float_t vertex[3]); //update
20 ClassDef(AliV0,1) // V0 MI vertex
21};
22
23
24#endif