]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSReconstructor.h
Implementation of reconstructors (T.Kuhr)
[u/mrichter/AliRoot.git] / ITS / AliITSReconstructor.h
1 #ifndef ALIITSRECONSTRUCTOR_H
2 #define ALIITSRECONSTRUCTOR_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 #include "AliReconstructor.h"
9
10 class AliITSgeom;
11
12
13 class AliITSReconstructor: public AliReconstructor {
14 public:
15   AliITSReconstructor(): AliReconstructor() {};
16   virtual ~AliITSReconstructor() {};
17
18   virtual void         Reconstruct(AliRunLoader* runLoader) const;
19   virtual AliTracker*  CreateTracker(AliRunLoader* runLoader) const;
20   virtual AliVertexer* CreateVertexer(AliRunLoader* runLoader) const;
21   virtual void         FillESD(AliRunLoader* runLoader, AliESD* esd) const;
22
23 private:
24   AliITSgeom*          GetITSgeom(AliRunLoader* runLoader) const;
25
26   ClassDef(AliITSReconstructor, 0)   // class for the ITS reconstruction
27 };
28
29 #endif