]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONGeometry.h
Fixes for #84564: Change in AliESDpid.cxx
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometry.h
index 9063161337180cdf666e11a714c0dc054470f3ef..37faac0ba35d399448450153f7be82c0c111896f 100644 (file)
@@ -7,7 +7,7 @@
 /// \class AliMUONGeometry
 /// \brief Container class for geometry modules
 ///
-/// Author: Ivana Hrivnacova, IPN Orsay
+/// \author Ivana Hrivnacova, IPN Orsay
 
 #ifndef ALI_MUON_GEOMETRY_H
 #define ALI_MUON_GEOMETRY_H
 #include <TObject.h>
 #include <TGeoMatrix.h>
 
-class TObjArray;
-
 class AliMUONGeometryModule;
 class AliMUONGeometryTransformer;
 
+class TObjArray;
+
 class AliMUONGeometry : public TObject
 {
   public:
@@ -33,7 +33,6 @@ class AliMUONGeometry : public TObject
     Bool_t  ReadSVMap(const TString& fileName);
     Bool_t  WriteSVMap(const TString& fileName) const;
 
-
     // get methods
     const AliMUONGeometryModule* GetModule(
                                     Int_t index, Bool_t warn = true) const;
@@ -45,7 +44,9 @@ class AliMUONGeometry : public TObject
 
 
   protected:
+    /// Not implemented
     AliMUONGeometry(const AliMUONGeometry& right);
+    /// Not implemented
     AliMUONGeometry&  operator = (const AliMUONGeometry& right);
  
   private:
@@ -57,12 +58,13 @@ class AliMUONGeometry : public TObject
     void    WriteData3(ofstream& out) const;
 
     // data members
-    TObjArray*                  fModules;     // Array of geometry modules
-    AliMUONGeometryTransformer* fTransformer; // Geometry transformer
+    TObjArray*                  fModules;     ///< Array of geometry modules
+    AliMUONGeometryTransformer* fTransformer; ///< Geometry transformer
 
   ClassDef(AliMUONGeometry,1)  // Geometry parametrisation
 };
 
+/// Return geometry transformer
 inline AliMUONGeometryTransformer* AliMUONGeometry::GetTransformer() const
 { return fTransformer; }