]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONClusterFinderCOG.h
Applying modification so that LUTs are generated from CDB, which also solves LUT...
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderCOG.h
index 51d9edd661084675e83ee38e229a619097c9b3ed..3891987502cb788bd919d7ebbb429d3251e8c9d2 100644 (file)
 #  include "AliMUONVClusterFinder.h"
 #endif
 
-class AliMUONMathieson;
-
 class AliMUONClusterFinderCOG : public AliMUONVClusterFinder
 {
 public:
-  AliMUONClusterFinderCOG();
+  AliMUONClusterFinderCOG(AliMUONVClusterFinder* clusterFinder);
   virtual ~AliMUONClusterFinderCOG();
   
   virtual Bool_t Prepare(const AliMpVSegmentation* segmentations[2],
-                         TClonesArray* digits[2]);
+                         const AliMUONVDigitStore& digitStore);
   
   virtual AliMUONCluster* NextCluster();
   
 private:
+  /// Not implemented
   AliMUONClusterFinderCOG(const AliMUONClusterFinderCOG& rhs);
+  /// Not implemented
   AliMUONClusterFinderCOG& operator=(const AliMUONClusterFinderCOG& rhs);
+
   void ComputePosition(AliMUONCluster& cluster);
 
 private:
     AliMUONVClusterFinder* fPreClusterFinder; ///< the preclustering we use
 
-  ClassDef(AliMUONClusterFinderCOG,1) // 
+  ClassDef(AliMUONClusterFinderCOG,1) // A very basic (and mostly useless, probably) cluster finder
 };
 
 #endif