]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSreconstruction.h
Fixed message format and debug level
[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 #include <TTask.h>
11
12 class AliRunLoader;
13 class TString;
14 class AliITS;
15
16 class AliITSreconstruction : public TTask{
17  public:
18     AliITSreconstruction(); // default constructor
19     AliITSreconstruction(const char *filename); // standard constructor
20     AliITSreconstruction(AliRunLoader *rl); // standard constructor
21     virtual ~AliITSreconstruction();//Destructor
22     virtual Bool_t Init();
23     virtual void Exec(const Option_t *opt="ALL");
24     virtual void SetOutputFile(TString filename);
25  private:
26     AliITSreconstruction(const AliITSreconstruction &);
27     AliITSreconstruction & operator=(const AliITSreconstruction &);
28     Bool_t InitRec();  // Standard Reconstrution initilization.
29  private:
30     Bool_t  fDet[3];   //! logical specifing which detectors to reconstruct.
31     Bool_t  fInit;     //! True if Init was sucessfull, else false.
32     Int_t   fEnt;      //! Number of events to processevent index.
33     Int_t   fEnt0;     //! first event to process, default 0.
34     AliITS  *fITS;     //! Local pointer to ITS class.
35     Bool_t  fDfArp;    //! if True then delete fRunLoader in destructor.
36
37     AliITSLoader *fLoader; //! ITS loader
38     AliRunLoader* fRunLoader;//!Run Loader
39
40     ClassDef(AliITSreconstruction,2) // Task to Reconstruct ITS from Digits.
41
42 };
43 #endif