X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=RICH%2FAliRICHClusterFinder.h;h=530174ccfa7ce9396e970e5f9ee3f6ec0acd0445;hb=c67b2d9fedeb1ec8608abb0fd18df50deab7e469;hp=487efcb3b0b0393d05427b1dbf3d19ba439dc489;hpb=cbaf35fb0937f88c8fa53eacd1abb93170c7b65b;p=u%2Fmrichter%2FAliRoot.git diff --git a/RICH/AliRICHClusterFinder.h b/RICH/AliRICHClusterFinder.h index 487efcb3b0b..530174ccfa7 100644 --- a/RICH/AliRICHClusterFinder.h +++ b/RICH/AliRICHClusterFinder.h @@ -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