]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTvertex.h
geometry with Cherenkov light yeild
[u/mrichter/AliRoot.git] / START / AliSTARTvertex.h
CommitLineData
6740ab97 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//___________________________________________
10class AliSTARTvertex : public TObject {
11
12
13////////////////////////////////////////////////////////////////////////
ef51244a 14 private:
6740ab97 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};
27inline Int_t AliSTARTvertex::GetVertex(){return fZposition;}
28inline void AliSTARTvertex::Set(Int_t Z_position)
29 {fZposition=Z_position;}
30#endif