]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCReconstructor.h
Extracting PHOS and EMCAL trackers from the correspondig reconstructors (Yu.Belikov)
[u/mrichter/AliRoot.git] / TPC / AliTPCReconstructor.h
CommitLineData
59697224 1#ifndef ALITPCRECONSTRUCTOR_H
2#define ALITPCRECONSTRUCTOR_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
10class AliTPCParam;
11
12
13class AliTPCReconstructor: public AliReconstructor {
14public:
121a60bd 15 AliTPCReconstructor(): AliReconstructor() {};
16 virtual ~AliTPCReconstructor() {};
17
59697224 18 virtual void Reconstruct(AliRunLoader* runLoader) const;
38e6e547 19 virtual void Reconstruct(AliRunLoader* runLoader,
20 AliRawReader* rawReader) const;
59697224 21 virtual AliTracker* CreateTracker(AliRunLoader* runLoader) const;
22 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
23
d7a11555 24 static void SetCtgRange(Double_t ctgRange = 1.05) {fgCtgRange = ctgRange;}
25 static Double_t GetCtgRange(){ return fgCtgRange;}
26
59697224 27private:
28 AliTPCParam* GetTPCParam(AliRunLoader* runLoader) const;
29
d7a11555 30 static Double_t fgCtgRange; //! +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI)
31
59697224 32 ClassDef(AliTPCReconstructor, 0) // class for the TPC reconstruction
33};
34
35#endif