]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSreconstruction.h
Making the BF work again
[u/mrichter/AliRoot.git] / ITS / AliITSreconstruction.h
... / ...
CommitLineData
1#ifndef ALIITSRECONSTRUCTION_H
2#define ALIITSRECONSTRUCTION_H
3/* Copyright (c) 1998-2001, ALICE Experiment at CERN, All rights reserved *
4 * See cxx source for full Copyright notice */
5
6/*
7 $Id$
8 */
9/////////////////////////////////////////////////////////////////////////
10// //
11// Class for ITS RecPoint reconstruction //
12// //
13////////////////////////////////////////////////////////////////////////
14
15#include <TTask.h>
16
17class AliRunLoader;
18class AliITSLoader;
19class TString;
20
21class AliITSreconstruction : public TTask{
22 public:
23 AliITSreconstruction(); // default constructor
24 AliITSreconstruction(const char *filename); // standard constructor
25 AliITSreconstruction(AliRunLoader *rl); // standard constructor
26 virtual ~AliITSreconstruction();//Destructor
27 virtual Bool_t Init();
28 virtual void Exec(const Option_t *opt="ALL");
29 virtual void SetOutputFile(TString filename);
30 private:
31 Bool_t InitRec(); // Standard Reconstrution initilization.
32 private:
33
34 AliITSreconstruction(const AliITSreconstruction& rec);
35 AliITSreconstruction& operator=(const AliITSreconstruction &source);
36
37 Bool_t fDet[3]; //! logical specifing which detectors to reconstruct.
38 Bool_t fInit; //! True if Init was sucessfull, else false.
39 Int_t fEnt; //! Number of events to processevent index.
40 Int_t fEnt0; //! first event to process, default 0.
41 AliITSDetTypeRec *fDetTypeRec; //!ITS obj. for reconstruction
42 Bool_t fDfArp; //! if True then delete fRunLoader in destructor.
43 AliITSgeom* fITSgeom;//! ITS geometry
44 AliITSLoader *fLoader; //! ITS loader
45 AliRunLoader* fRunLoader;//!Run Loader
46
47 ClassDef(AliITSreconstruction,3) // Task to Reconstruct ITS from Digits.
48
49};
50#endif