]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSreconstruction.h
Removing overlaps. Using assemblies for the alignable voulmes (L.Gaudichet)
[u/mrichter/AliRoot.git] / ITS / AliITSreconstruction.h
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
17 class AliRunLoader;
18 class TString;
19
20 class AliITSreconstruction : public TTask{
21  public:
22     AliITSreconstruction(); // default constructor
23     AliITSreconstruction(const char *filename); // standard constructor
24     AliITSreconstruction(AliRunLoader *rl); // standard constructor
25     AliITSreconstruction(const AliITSreconstruction& rec);
26     AliITSreconstruction& operator=(const AliITSreconstruction &source);
27     virtual ~AliITSreconstruction();//Destructor
28     virtual Bool_t Init();
29     virtual void Exec(const Option_t *opt="ALL");
30     virtual void SetOutputFile(TString filename);
31  private:
32     Bool_t InitRec();  // Standard Reconstrution initilization.
33  private:
34     Bool_t  fDet[3];   //! logical specifing which detectors to reconstruct.
35     Bool_t  fInit;     //! True if Init was sucessfull, else false.
36     Int_t   fEnt;      //! Number of events to processevent index.
37     Int_t   fEnt0;     //! first event to process, default 0.
38     AliITSDetTypeRec *fDetTypeRec; //!ITS obj. for reconstruction
39     Bool_t  fDfArp;    //! if True then delete fRunLoader in destructor.
40     AliITSgeom*   fITSgeom;//! ITS geometry
41     AliITSLoader *fLoader; //! ITS loader
42     AliRunLoader* fRunLoader;//!Run Loader
43  
44     ClassDef(AliITSreconstruction,3) // Task to Reconstruct ITS from Digits.
45
46 };
47 #endif