]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDRecPoint.cxx
debug is read from option string
[u/mrichter/AliRoot.git] / FMD / AliFMDRecPoint.cxx
index 935de57497662706a2bfa1d24df9dba8a6503f81..989b5128e87acb00aa59697d4e1df0b3961c6af7 100644 (file)
  * about the suitability of this software for any purpose. It is          *
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
-
 /* $Id$ */
-
+/** @file    AliFMDRecPoint.cxx
+    @author  Christian Holm Christensen <cholm@nbi.dk>
+    @date    Mon Mar 27 12:46:26 2006
+    @brief   Pseudo reconstructed charged particle multiplicity 
+*/
 //____________________________________________________________________
 //
 // Base class for reconstructed charged particle multiplicty in the
@@ -42,7 +45,9 @@ AliFMDRecPoint::AliFMDRecPoint()
     fEta(0),
     fPhi(0),
     fEdep(0)
-{}
+{
+  // CTOR 
+}
 
 //____________________________________________________________________
 AliFMDRecPoint::AliFMDRecPoint(UShort_t detector,  Char_t   ring, 
@@ -64,6 +69,7 @@ AliFMDRecPoint::AliFMDRecPoint(UShort_t detector,  Char_t   ring,
 const char*
 AliFMDRecPoint::GetName() const 
 { 
+  // Get the name 
   static TString n;
   n = Form("FMD%d%c[%2d,%3d]", fDetector,fRing,fSector,fStrip);
   return n.Data();
@@ -73,6 +79,7 @@ AliFMDRecPoint::GetName() const
 const char*
 AliFMDRecPoint::GetTitle() const 
 { 
+  // Get the title 
   static TString t;
   t = Form("%f (%f,%f)", fParticles, fEta, fPhi);
   return t.Data();