]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
Remove TClonesArray deletions (Philippe Pillot)
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index 190922c0d8b2cbd3d996d76a3ff54a9f313963de..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, Float_t /*timeDif*/)
+{
+/// Not implemented disintegration
+
+  digits.Clear();
+  AliError("Not implemented in this base class");
 }