]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpMotif.h
Changing Digit by VDigit (Laurent)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpMotif.h
index 1c5a22ebc15abaacd4285bc82dcf33ac28289177..7b6d1a4abdf86316c2ec8a6eacb692f8604f1d00 100755 (executable)
@@ -1,21 +1,23 @@
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
 // $Id$
-// Category: motif
-//
-// Class AliMpMotif
-// ----------------
-// Class that defines a motif with its unique ID
-// and the motif type.
-//
-// Authors: David Guez, Ivana Hrivnacova; IPN Orsay
+// $MpId: AliMpMotif.h,v 1.8 2006/05/24 13:58:18 ivana Exp $
+
+/// \ingroup motif
+/// \class AliMpMotif
+/// \brief A motif with its unique ID and the motif type.
+///
+/// \author David Guez, Ivana Hrivnacova; IPN Orsay
 
 #ifndef ALI_MP_MOTIF_H
 #define ALI_MP_MOTIF_H
 
+#include "AliMpVMotif.h"
+
 #include <TObject.h>
 #include <TVector2.h>
 
-#include "AliMpVMotif.h"
-
 class TString;
 
 class AliMpMotif : public AliMpVMotif
@@ -41,16 +43,18 @@ class AliMpMotif : public AliMpVMotif
   // methods
 
   // data members 
-  TVector2    fPadDimensions; //pad dimensions (halflength x, y size) 
+  TVector2  fPadDimensions; ///< pad dimensions (halflength x, y size) 
 
   ClassDef(AliMpMotif,1) // A motif with its ID
 };
 
 // inline functions
 
+                            /// Return 1 as the number of pad dimensions 
 inline Int_t    AliMpMotif::GetNofPadDimensions() const 
 { return 1; }
 
+                            /// Return the pad dimensions 
 inline TVector2 AliMpMotif::GetPadDimensions(Int_t /*i*/) const 
 { return fPadDimensions; }