]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSreconstruction.h
from Ruediger
[u/mrichter/AliRoot.git] / ITS / AliITSreconstruction.h
index debc5fd7c7aa105981635f1f331cea1a12c298df..d1e5dcb91c72a92464c4dd002a1e79cf234eb748 100644 (file)
@@ -6,14 +6,19 @@
 /*
   $Id$
  */
+/////////////////////////////////////////////////////////////////////////
+//                                                                     //
+// Class for ITS RecPoint reconstruction                               //
+//                                                                     //
+////////////////////////////////////////////////////////////////////////
 
-#include <TTask.h>
+#include <TNamed.h>
 
 class AliRunLoader;
+class AliITSLoader;
 class TString;
-class AliITS;
 
-class AliITSreconstruction : public TTask{
+class AliITSreconstruction : public TNamed{
  public:
     AliITSreconstruction(); // default constructor
     AliITSreconstruction(const char *filename); // standard constructor
@@ -23,21 +28,23 @@ class AliITSreconstruction : public TTask{
     virtual void Exec(const Option_t *opt="ALL");
     virtual void SetOutputFile(TString filename);
  private:
-    AliITSreconstruction(const AliITSreconstruction &);
-    AliITSreconstruction & operator=(const AliITSreconstruction &);
     Bool_t InitRec();  // Standard Reconstrution initilization.
  private:
+
+    AliITSreconstruction(const AliITSreconstruction& rec);
+    AliITSreconstruction& operator=(const AliITSreconstruction &source);
+
     Bool_t  fDet[3];   //! logical specifing which detectors to reconstruct.
     Bool_t  fInit;     //! True if Init was sucessfull, else false.
     Int_t   fEnt;      //! Number of events to processevent index.
     Int_t   fEnt0;     //! first event to process, default 0.
-    AliITS  *fITS;     //! Local pointer to ITS class.
+    AliITSDetTypeRec *fDetTypeRec; //!ITS obj. for reconstruction
     Bool_t  fDfArp;    //! if True then delete fRunLoader in destructor.
-
+    AliITSgeom*   fITSgeom;//! ITS geometry
     AliITSLoader *fLoader; //! ITS loader
     AliRunLoader* fRunLoader;//!Run Loader
-
-    ClassDef(AliITSreconstruction,2) // Task to Reconstruct ITS from Digits.
+    ClassDef(AliITSreconstruction,4) // Class to Reconstruct ITS from Digits.
 
 };
 #endif