]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSsDigitize.h
Another histos for lumi
[u/mrichter/AliRoot.git] / ITS / AliITSsDigitize.h
index cee86c7059d7b3511c349ac08e54243d294ee9ab..75d77eda64e07059e61cecf4d6fbfcf28ca62786 100644 (file)
@@ -1,29 +1,37 @@
-#ifndef ALIITSSDIGITIZATION_H
-#define ALIITSSDIGITIATION_H
+#ifndef ALIITSSDIGITIZE_H
+#define ALIITSSDIGITIZE_H
 /* Copyright (c) 1998-2001, ALICE Experiment at CERN, All rights reserved *
  * See cxx source for full Copyright notice                               */
  
 /*
   $Id$
  */
+/////////////////////////////////////////////////////////
+//                                                     //
+//                                                     //
+//                                                     //
+///////////////////////////////////////////////////////// 
  
-#include <TTask.h>
+#include <TNamed.h>
  
 class TString;
 class AliITS;
  
-class AliITSsDigitize : public TTask{
+class AliITSsDigitize : public TNamed {
  public:
     AliITSsDigitize(); // default constructor
     AliITSsDigitize(const char *filename); // standard constructor
     virtual ~AliITSsDigitize();//Destructor
     virtual Bool_t Init();
-    virtual void Exec(const Option_t *opt="ALL");
+    virtual void Digitize(const Option_t *opt="ALL");
  private:
-    Bool_t InitSDig();  // Standard SDigitization initilization.
+    Bool_t InitSDig() const;  // Standard SDigitization initilization.
  private:
 //    TFile   *fFile;    //! pointer to the file contatining the hits and
 //                       // and will contain the SDigits
+    AliITSsDigitize(const AliITSsDigitize &source); // copy  constructor
+    AliITSsDigitize& operator=(const AliITSsDigitize &source); // operator=
+
     
     Bool_t  fDet[3];   //! logical specifing which detectors to reconstruct.
     Bool_t  fInit;     //! True if Init was sucessfull, else false.
@@ -31,7 +39,7 @@ class AliITSsDigitize : public TTask{
     Int_t   fEnt0;     //! first event to process, default 0.
     AliITS  *fITS;     //! Local pointer to ITS class.
     AliRunLoader* fRunLoader;//!Run Loader 
-    ClassDef(AliITSsDigitize,1) // Task to SDigitize ITS from Hits.
+    ClassDef(AliITSsDigitize,2) // Class to SDigitize ITS from Hits.
  
 };
 #endif