]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONClusterFinderSimpleFit.h
restore PtCal method, thanks to Christian & Philippe P. (Philippe C.)
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderSimpleFit.h
index d2a95ff747fb1d759da9bdb076071973724a193e..31768e149f0c8422c3c70d5cc8de3807f6f9a4f9 100644 (file)
@@ -21,24 +21,27 @@ class AliMUONMathieson;
 class AliMUONClusterFinderSimpleFit : public AliMUONVClusterFinder
 {
 public:
-  AliMUONClusterFinderSimpleFit();
+  AliMUONClusterFinderSimpleFit(AliMUONVClusterFinder* clusterFinder);
   virtual ~AliMUONClusterFinderSimpleFit();
   
   virtual Bool_t Prepare(const AliMpVSegmentation* segmentations[2],
-                         TClonesArray* digits[2]);
+                         const AliMUONVDigitStore& digitStore);
   
   virtual AliMUONCluster* NextCluster();
   
 private:
+  /// Not implemented
   AliMUONClusterFinderSimpleFit(const AliMUONClusterFinderSimpleFit& rhs);
+  /// Not implemented
   AliMUONClusterFinderSimpleFit& operator=(const AliMUONClusterFinderSimpleFit& rhs);
+
   void ComputePosition(AliMUONCluster& cluster);
 
 private:
     AliMUONVClusterFinder* fClusterFinder; //!< the preclustering we use
   AliMUONMathieson* fMathieson; //!< Mathieson to compute the charge repartition
   
-  ClassDef(AliMUONClusterFinderSimpleFit,1) // 
+  ClassDef(AliMUONClusterFinderSimpleFit,1) // Basic cluster finder
 };
 
 #endif