]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCReconstructor.h
loop over the friend tracks instead of esd tracks to avoid "out of bounds" messages...
[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"
194b0609 9#include "AliTPCRecoParam.h"
59697224 10
11class AliTPCParam;
3464c690 12class AliTPCclustererMI;
1598ba75 13class AliTPCtrackerMI;
e2a1f213 14class AliTPCAltroEmulator;
59697224 15
16class AliTPCReconstructor: public AliReconstructor {
17public:
194b0609 18 AliTPCReconstructor();
3464c690 19 virtual ~AliTPCReconstructor();
3464c690 20 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
21 virtual void Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const;
22
d76c31f4 23 virtual AliTracker* CreateTracker() const;
24
25 virtual void FillESD(TTree* /*digitsTree*/, TTree* /*clustersTree*/,
26 AliESDEvent* esd) const;
27 virtual void FillESD(AliRawReader* /*rawReader*/, TTree* /*clustersTree*/,
28 AliESDEvent* esd) const
29 {FillESD((TTree*)NULL,(TTree*)NULL,esd);}
59697224 30
7e88424f 31 static const AliTPCRecoParam* GetRecoParam() { return dynamic_cast<const AliTPCRecoParam*>(AliReconstructor::GetRecoParam(1)); }
194b0609 32 //
7e88424f 33 static Double_t GetCtgRange() { return GetRecoParam()->GetCtgRange();}
34 static Double_t GetMaxSnpTracker(){ return GetRecoParam()->GetMaxSnpTracker();}
35 static Double_t GetMaxSnpTrack() { return GetRecoParam()->GetMaxSnpTrack();}
3f82c4f2 36
34acb742 37 static Int_t StreamLevel() { return fgStreamLevel;}
38 static void SetStreamLevel(Int_t level) { fgStreamLevel = level;}
e2a1f213 39 static void SetAltroEmulator(AliTPCAltroEmulator *altro) { fAltroEmulator=altro;}
40 static AliTPCAltroEmulator * GetAltroEmulator() { return fAltroEmulator;}
41
1598ba75 42 void ParseOptions(AliTPCtrackerMI* tracker) const;
34acb742 43
59697224 44private:
3abc001d 45 AliTPCReconstructor(const AliTPCReconstructor&); //Not implemented
46 AliTPCReconstructor& operator=(const AliTPCReconstructor&); //Not implemented
3464c690 47 AliTPCParam* GetTPCParam() const;
194b0609 48 static Int_t fgStreamLevel; // flag for streaming - for TPC reconstruction
3464c690 49 AliTPCclustererMI* fClusterer; // TPC clusterer
e2a1f213 50 static AliTPCAltroEmulator * fAltroEmulator; // ALTRO emulator
59697224 51 ClassDef(AliTPCReconstructor, 0) // class for the TPC reconstruction
52};
53
54#endif