]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RICH/AliRICHClusterFinder.h
New QE values
[u/mrichter/AliRoot.git] / RICH / AliRICHClusterFinder.h
index 487efcb3b0b0393d05427b1dbf3d19ba439dc489..530174ccfa7ce9396e970e5f9ee3f6ec0acd0445 100644 (file)
@@ -9,27 +9,24 @@
 class AliRICH;
 class AliHitMap;
 class AliRICHcluster;
+
 class AliRICHClusterFinder : public TTask
 {
-public:
-    
-  AliRICHClusterFinder(AliRICH *pRICH);
+public:    
+           AliRICHClusterFinder(AliRICH *pRICH);
   virtual ~AliRICHClusterFinder()                                          {;}
   
-  void   Exec();                                                              //Loop on events and chambers  
-  void   FindRawClusters(Int_t iChamber);                                                   //Find initial clusters  
-  void   FindLocalMaxima(AliRICHcluster *pCluster);                           //Find local maxima in a cluster
-  void   ResolveCluster(AliRICHcluster *pCluster);                            //Try to resolve a cluster with maxima > 2
-  void   FormRawCluster(Int_t i, Int_t j, AliRICHcluster *pCluster);          //form a raw cluster
-  void   CoG();                                                               //Evaluate the CoG as the best  
-  void   WriteRawCluster(AliRICHcluster *pRawCluster);                        //write in the list of the raw clusters  
-  AliRICH *Rich() {return fRICH;}
-  
-  protected:
-      
-  AliRICH                *fRICH;  
-  AliHitMap              *fHitMap;                       //Hit Map with digit positions
-
-  ClassDef(AliRICHClusterFinder,0) //Class for clustering and reconstruction of space points    
+  AliRICH *Rich() {return fRICH;}                                             //Pointer to RICH  
+  void     Exec();                                                              //Loop on events and chambers  
+  void     FindRawClusters(Int_t iChamber);                                     //Find raw clusters  
+  void     FormRawCluster(Int_t i, Int_t j, AliRICHcluster &cluster);           //form a raw cluster
+  void     FindLocalMaxima(AliRICHcluster &cluster);                            //Find local maxima in a cluster
+  void     ResolveCluster(AliRICHcluster  &cluster);                            //Try to resolve a cluster with maxima > 2
+  //PH  void     CoG();                                                               //Evaluate the CoG as the best  
+  void     WriteRawCluster(AliRICHcluster &cluster);                            //write in the list of the raw clusters  
+protected:      
+  AliRICH                *fRICH;                         //Pointer to RICH
+  AliHitMap              *fHitMap;                       //Hit Map with digit positions  
+  ClassDef(AliRICHClusterFinder,0) //Finds raw clusters, trasfers them to resolved clusters through declustering.
 };
 #endif