]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFClusterFinderV1.h
Fix for coverity (AdC)
[u/mrichter/AliRoot.git] / TOF / AliTOFClusterFinderV1.h
index 0112a85dc3098cf5aa38692fba3a31332d80be20..5cb3e9df9b7de551e770bad7c1b9bc5409298ad9 100644 (file)
@@ -115,6 +115,8 @@ class AliTOFClusterFinderV1 : public TTask
   void  SetMaxDeltaTime(Int_t a)   {fMaxDeltaTime = a;}; // to set deltaTime [bin number]
   void  SetMaxDeltaTime(Float_t a) {fMaxDeltaTime = (Int_t)(a/AliTOFGeometry::TdcBinWidth());}; // to set deltaTime [ps]
   Int_t GetMaxDeltaTime()     const {return fMaxDeltaTime;};
+  Int_t GetNumberOfTOFclusters() const {return fNumberOfTofClusters;}
+  Int_t GetNumberOfTOFtrgPads() const {return fNumberOfTofTrgPads;}
 
 
   void SetCalibrateFlag(Bool_t dummy) {fCalibrateTOFtimes = dummy;};
@@ -128,6 +130,7 @@ class AliTOFClusterFinderV1 : public TTask
   TClonesArray *fRecPoints;   // List of reconstructed points
   Int_t fNumberOfTofClusters; // Number of TOF Clusters
   Int_t fNumberOfTofDigits;   // Number of TOF Digits
+  Int_t fNumberOfTofTrgPads;  // Number of TOF trigger pads
 
  private:
 
@@ -162,7 +165,7 @@ class AliTOFClusterFinderV1 : public TTask
 
   Bool_t fCalibrateTOFtimes;     // used for check
 
-  ClassDef(AliTOFClusterFinderV1,4) // To run TOF clustering
+  ClassDef(AliTOFClusterFinderV1,6) // To run TOF clustering
 };
 #endif