]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSreconstruction.h
from Ruediger
[u/mrichter/AliRoot.git] / ITS / AliITSreconstruction.h
index c002196ae620e31dfc14fd8dc03ad3e58ab10638..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
@@ -25,17 +30,21 @@ class AliITSreconstruction : public TTask{
  private:
     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