]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- Removed not implemented method AreNeighbours()
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 19 Mar 2007 15:27:58 +0000 (15:27 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 19 Mar 2007 15:27:58 +0000 (15:27 +0000)
- Comments for Doxygen (mostly added comments for inline functions)

MUON/AliMUONPreClusterFinder.h

index 0f157950856815fa99bb28184d625730dc66af01..8daf8b07cebf646d21c29d32dc3138c9e474da97 100644 (file)
@@ -33,18 +33,19 @@ public:
   virtual Bool_t UsePad(const AliMUONPad& pad);
   
 private:
+  /// Not implemented
   AliMUONPreClusterFinder(const AliMUONPreClusterFinder& rhs);
+  /// Not implemented
   AliMUONPreClusterFinder& operator=(const AliMUONPreClusterFinder& rhs);
 
-  Bool_t AreNeighbours(const AliMUONPad&, const AliMUONPad&);
   void AddPad(AliMUONCluster& cluster, AliMUONPad* pad);
   
 private:
-  TClonesArray* fClusters; ///<! the clusters we've found (owner)
-  const AliMpVSegmentation** fSegmentations; ///<! segmentations (not owner)
-  TClonesArray** fDigits; ///<! where to find the digits (not owner)
-  TClonesArray* fPads[2]; ///!< the pads corresponding to the digits (owner)
-  Int_t fDetElemId; ///!< which DE we're considering
+  TClonesArray* fClusters; //!< the clusters we've found (owner)
+  const AliMpVSegmentation** fSegmentations; //!< segmentations (not owner)
+  TClonesArray** fDigits; //!< where to find the digits (not owner)
+  TClonesArray* fPads[2]; //!< the pads corresponding to the digits (owner)
+  Int_t fDetElemId; //!< which DE we're considering
   
   ClassDef(AliMUONPreClusterFinder,1) // A basic pre-cluster finder
 };