]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
Changes needed by the following commit: coding convention for type (_t) and access...
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index f99c47245322b3105dd988a80b80c297cfec1177..ba7400cd41efc786d0341dbbea05d65b3a878b47 100644 (file)
 
 /* $Id$ */
 
+//-----------------------------------------------------------------------------
+// Class AliMUONResponse
+// -------------------------
+// Chamber response base class
+//-----------------------------------------------------------------------------
+
 #include "AliMUONResponse.h"
 
 #include "AliLog.h"
 #include "TList.h"
 
+/// \cond CLASSIMP
 ClassImp(AliMUONResponse)
+/// \endcond
 
 AliMUONResponse::AliMUONResponse()
   : TObject()
 {
-// Default constructor
+/// Default constructor
 }
 
 
 AliMUONResponse::~AliMUONResponse()
 {
-// Destructor
+/// Destructor
 }
 
 //_____________________________________________________________________________
 void
 AliMUONResponse::DisIntegrate(const AliMUONHit&, TList& digits)
 {
+/// Not implemented disintegration
+
   digits.Clear();
   AliError("Not implemented in this base class");
 }