]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONContourHandler.h
- update track cuts
[u/mrichter/AliRoot.git] / MUON / AliMUONContourHandler.h
index d34dc76cd3fb89423e4e4fc6a726e7fb1d27aac1..0604aaddf9bfeb25999ca61d7de79cf0f7fedb64 100644 (file)
@@ -10,7 +10,7 @@
 /// \class AliMUONContourHandler
 /// \brief Holder for MUON tracker contours
 /// 
-/// \author Laurent Aphecetche
+//  Author Laurent Aphecetche
 
 #ifndef ROOT_TObject
 #  include "TObject.h"
@@ -29,19 +29,23 @@ public:
   
   Bool_t Adopt(AliMUONContour* contour); 
   
+  /// Get all the contours as a map
   TMap* AllContourMap() const { return fAllContourMap; }
   
+  /// Get all the contours as an array
   TObjArray* AllContourArray() const { return fAllContourArray; }
   
   AliMUONContour* GetContour(const char* contourname) const;
   
+  /// Get detection element geometrical transformations
   AliMpExMap* GetTransformations() const { return fTransformations; }
   
   void Print(Option_t* opt="") const;
   
 private:
-  
+  /// Not implemented
   AliMUONContourHandler(const AliMUONContourHandler& rhs);
+  /// Not implemented
   AliMUONContourHandler& operator=(const AliMUONContourHandler& rhs);
   
   AliMpExMap* GenerateTransformations(Bool_t exploded);
@@ -51,9 +55,9 @@ private:
   void GenerateAllContours(const TObjArray& manuContours);  
   
 private:
-  AliMpExMap* fTransformations; //< transformations used to go from local to global coordinates
-  TMap* fAllContourMap; //< all (i.e. manus,  buspatches, detection elements, etc..) contours
-  TObjArray* fAllContourArray; //< all contours, ordered by hierarchy level
+  AliMpExMap* fTransformations; ///< transformations used to go from local to global coordinates
+  TMap* fAllContourMap; ///< all (i.e. manus,  buspatches, detection elements, etc..) contours
+  TObjArray* fAllContourArray; ///< all contours, ordered by hierarchy level
   
   ClassDef(AliMUONContourHandler,1) // MUON tracker contour holder
 };