]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFDigitizer.h
Updated instructions for new electron macros.
[u/mrichter/AliRoot.git] / TOF / AliTOFDigitizer.h
index e0229deb225e0d645ed12752c2371407cf48be53..8c7bf191c67a1aba130c452737117fe422b93e1e 100644 (file)
@@ -23,7 +23,6 @@ class AliRunDigitizer;
 class AliTOFHitMap;
 class AliTOFSDigit;
 class AliTOFcalib;
-class AliTOFGeometry;
 
 class AliTOFDigitizer : public AliDigitizer {
  public:
@@ -39,8 +38,8 @@ class AliTOFDigitizer : public AliDigitizer {
   TClonesArray* SDigits() const {return fSDigitsArray;}
   void ReadSDigit(Int_t inputFile);
   void CreateDigits();
-  void InitDecalibration(AliTOFcalib *calib) const;
-  void DecalibrateTOFSignal(AliTOFcalib *calib);
+  void InitDecalibration() const;
+  void DecalibrateTOFSignal();
   
  private:
   void CollectSDigit(AliTOFSDigit * sdigit) ;
@@ -49,13 +48,13 @@ class AliTOFDigitizer : public AliDigitizer {
                                                     // due to the low
                                                     // noise expected
                                                     // level
-  AliTOFGeometry *fGeom;       // Pointer to the TOF geometry
   TClonesArray *fDigits;       //! array with digits
   TClonesArray *fSDigitsArray; //! List of summable digits; used as a
                               //container for all sdigits to be
                               //merged
   AliTOFHitMap *fhitMap ;      //! hit map used to perform the merging
+  AliTOFcalib * fCalib;        //! calibration object
   
-  ClassDef(AliTOFDigitizer,0)  // TOF/Merging/Digitization
+  ClassDef(AliTOFDigitizer,2)  // TOF/Merging/Digitization
 };    
 #endif