]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROReconstructor.h
Implementation of ITS tracking for HLT. The tracking is based on the off-line AliITSt...
[u/mrichter/AliRoot.git] / VZERO / AliVZEROReconstructor.h
CommitLineData
b0d2c2d3 1#ifndef ALIVZERORECONSTRUCTOR_H
2#define ALIVZERORECONSTRUCTOR_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
8///////////////////////////////////////////////////////////////////////////////
9/// //
10/// class for VZERO reconstruction //
11/// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include "AliReconstructor.h"
15
16
17class AliVZEROReconstructor: public AliReconstructor {
18public:
19 AliVZEROReconstructor(): AliReconstructor() {};
20 virtual ~AliVZEROReconstructor() {};
21
22 virtual void Reconstruct(AliRunLoader* runLoader) const;
23 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
24
25 ClassDef(AliVZEROReconstructor, 0) // class for the VZERO reconstruction
26};
27
28#endif