]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFClusterFinder.h
updates to comply with AliTOFGeometryV5 becoming AliTOFGeometry
[u/mrichter/AliRoot.git] / TOF / AliTOFClusterFinder.h
index 6c2714eb47edd8f121fd5233b09f98d8cad449b5..30d9c2078a06d11730a1fc20ad39b1a85dab61e6 100644 (file)
@@ -6,7 +6,7 @@
 // Task: Transform digits/raw data to TOF Clusters, to fill TOF RecPoints
 // and feed TOF tracking 
 
-#include "AliRawReader.h"
+#include "TObject.h"
 
 class TClonesArray;
 class TFile;
@@ -14,8 +14,11 @@ class TTree;
 
 class AliLoader;
 class AliRunLoader;
+class AliRawReader;
 
 class AliTOFGeometry;
+class AliTOFcluster;
+class AliTOFcalib;
 
 class AliTOFClusterFinder : public TObject
 {
@@ -24,20 +27,29 @@ class AliTOFClusterFinder : public TObject
 
  public:
 
-  AliTOFClusterFinder();
-  AliTOFClusterFinder(AliRunLoader* runLoader);
+  AliTOFClusterFinder(AliTOFcalib *calib);
+  AliTOFClusterFinder(AliRunLoader* runLoader, AliTOFcalib *calib);
+  AliTOFClusterFinder(const AliTOFClusterFinder &source); // copy constructor
+  AliTOFClusterFinder& operator=(const AliTOFClusterFinder &source); // ass. op.
   virtual ~AliTOFClusterFinder();
 
+  void Digits2RecPoints(TTree* digitsTree, TTree* clusterTree);
   void Digits2RecPoints(Int_t ievt);
   void Digits2RecPoints(AliRawReader *rawReader, TTree *clustersTree);
   void Digits2RecPoints(Int_t ievt, AliRawReader *rawReader);
   void Raw2Digits(Int_t ievt, AliRawReader *rawReader); // temporary solution
+  void Raw2Digits(AliRawReader *rawReader, TTree* digitsTree); 
   void FillRecPoint();
   void ResetRecpoint();
   void Load();
   void LoadClusters();
   void UnLoad();
   void UnLoadClusters();
+  void SetVerbose(Int_t Verbose){fVerbose=Verbose;} // To set the verbose level
+  void SetDecoderVersion(Int_t version){fDecoderVersion=version;} // To set the decoder version
+  Bool_t GetDecoderVersion() const {return fDecoderVersion;} // To get the decoder version
+  UShort_t  GetClusterVolIndex(Int_t *ind) const; //Volume Id getter
+  void GetClusterPars(Int_t *ind, Double_t *pos, Double_t *cov) const; //cluster par getter
 
  protected:
   AliRunLoader *fRunLoader;      // Pointer to Run Loader
@@ -48,7 +60,6 @@ class AliTOFClusterFinder : public TObject
 
   AliTOFcluster *fTofClusters[kTofMaxCluster];  // pointers to the TOF clusters
 
-  AliTOFGeometry  *fTOFGeometry; // Pointer to TOF geometry
   TClonesArray *fDigits;         // List of digits
   TClonesArray *fRecPoints;      // List of reconstructed points
 
@@ -62,8 +73,13 @@ class AliTOFClusterFinder : public TObject
   Int_t FindClusterIndex(Double_t z) const; // Returns cluster index 
   void  CalibrateRecPoint(); // Apply calibration pars to Clusters
 
+  Int_t fVerbose;  //Verbose level (0:no msg, 1:msg, 2:digits in txt files)
+  Bool_t fDecoderVersion;   //setting whether to use the new decoder version 
+                            // -true -> new version
+                            // -false ->old version  (default value!!)
+  AliTOFcalib *fTOFcalib;       // pointer to the TOF calibration info
 
-  ClassDef(AliTOFClusterFinder,1) // To run TOF clustering
+  ClassDef(AliTOFClusterFinder,4) // To run TOF clustering
 };
 #endif