]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTvertex.h
Coding convention rules obeyed
[u/mrichter/AliRoot.git] / START / AliSTARTvertex.h
1 #ifndef STARTVERTEX_H
2 #define STARTVERTEX_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 #include "AliSTART.h"
8
9 //___________________________________________
10 class AliSTARTvertex   : public TObject {
11
12
13 ////////////////////////////////////////////////////////////////////////
14  private:
15   Int_t fZposition;        // Z position of vertex
16
17  public:
18     AliSTARTvertex() {}
19     AliSTARTvertex(Int_t *);
20     void Reconstruct(Int_t);
21     Int_t GetVertex();
22     virtual ~AliSTARTvertex() {}
23     void Set(Int_t);
24
25     ClassDef(AliSTARTvertex,1)  //Reconstructive vertex (Header) object 
26 };
27 inline Int_t AliSTARTvertex::GetVertex(){return fZposition;}
28 inline void AliSTARTvertex::Set(Int_t Z_position)
29   {fZposition=Z_position;}
30 #endif