]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSReconstructor.h
bugfix to make the AliHLTDisplay working
[u/mrichter/AliRoot.git] / ITS / AliITSReconstructor.h
CommitLineData
121a60bd 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$ */
7d62fb64 7///////////////////////////////////////////////////////////////////////////////
8// //
9// class for ITS reconstruction //
10// //
11///////////////////////////////////////////////////////////////////////////////
121a60bd 12
13#include "AliReconstructor.h"
14
15class AliITSgeom;
e62c1aea 16class AliLoader;
17class AliTracker;
18class AliITStrackerMI;
19class AliITSpidESD;
121a60bd 20
21class AliITSReconstructor: public AliReconstructor {
22public:
e62c1aea 23 AliITSReconstructor();
24 virtual ~AliITSReconstructor();
25 AliITSReconstructor(const AliITSReconstructor &ob); // copy constructor
94631b2f 26 AliITSReconstructor& operator=(const AliITSReconstructor & ob); // ass. op.
27 virtual void Init(AliRunLoader* runLoader) const;
023ae34b 28
121a60bd 29 virtual void Reconstruct(AliRunLoader* runLoader) const;
113c12f1 30 virtual void Reconstruct(AliRunLoader* runLoader,
31 AliRawReader* rawReader) const;
d2f55a22 32 virtual void Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const
33 {AliReconstructor::Reconstruct(rawReader,clustersTree);}
34 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const
35 {AliReconstructor::Reconstruct(digitsTree, clustersTree);}
36
121a60bd 37 virtual AliTracker* CreateTracker(AliRunLoader* runLoader) const;
38 virtual AliVertexer* CreateVertexer(AliRunLoader* runLoader) const;
39 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
40
d2f55a22 41 virtual void FillESD(TTree* digitsTree, TTree* clustersTree,
42 AliESD* esd) const
43 {AliReconstructor::FillESD(digitsTree, clustersTree, esd);}
44 virtual void FillESD(AliRawReader* rawReader, TTree* clustersTree,
45 AliESD* esd) const
46 {AliReconstructor::FillESD(rawReader, clustersTree, esd);}
47 virtual void FillESD(AliRunLoader* runLoader,
48 AliRawReader* rawReader, AliESD* esd) const
49 {AliReconstructor::FillESD(runLoader,rawReader, esd);}
50
121a60bd 51private:
e62c1aea 52 // methods
121a60bd 53 AliITSgeom* GetITSgeom(AliRunLoader* runLoader) const;
e62c1aea 54 //data
55 AliITSpidESD *fItsPID; //Pid for ITS
56 ClassDef(AliITSReconstructor, 1) // class for the ITS reconstruction
121a60bd 57};
58
59#endif