]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
Go from pointer to ifstream to ifstream.
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index f99c47245322b3105dd988a80b80c297cfec1177..a9bba7e6b1c939e7b481f1581877765967b226e4 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)
+AliMUONResponse::DisIntegrate(const AliMUONHit&, TList& digits, Float_t /*timeDif*/)
 {
+/// Not implemented disintegration
+
   digits.Clear();
   AliError("Not implemented in this base class");
 }