]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSreconstruction.h
New plots for trending injector efficiencies (Melinda)
[u/mrichter/AliRoot.git] / ITS / AliITSreconstruction.h
index 7bfc19a23cb972b10e41d505cef432ffff0b6e5c..e61e718a18106d0c842281efd8ea67a993532d8f 100644 (file)
@@ -6,16 +6,23 @@
 /*
   $Id$
  */
+/////////////////////////////////////////////////////////////////////////
+//                                                                     //
+// Class for ITS RecPoint reconstruction                               //
+//                                                                     //
+////////////////////////////////////////////////////////////////////////
 
 #include <TTask.h>
 
+class AliRunLoader;
+class AliITSLoader;
 class TString;
-class AliITS;
 
 class AliITSreconstruction : public TTask{
  public:
     AliITSreconstruction(); // default constructor
     AliITSreconstruction(const char *filename); // standard constructor
+    AliITSreconstruction(AliRunLoader *rl); // standard constructor
     virtual ~AliITSreconstruction();//Destructor
     virtual Bool_t Init();
     virtual void Exec(const Option_t *opt="ALL");
@@ -23,18 +30,21 @@ class AliITSreconstruction : public TTask{
  private:
     Bool_t InitRec();  // Standard Reconstrution initilization.
  private:
-    TFile   *fFile;    //! pointer to the file contatining the digits and
-                       // and will contain the RecPoints
-    TFile   *fFile2;   //! pointer to the file that will contain RecPoints 
-                       //  (set only if <>fFile)
+
+    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.
-    TString fFilename; //! input filename for Digits
     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.
-
-    ClassDef(AliITSreconstruction,2) // Task to Reconstruct ITS from Digits.
+    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,3) // Task to Reconstruct ITS from Digits.
 
 };
 #endif