]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
Study jet p_T vs. total mult
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index d17a80695ece9b7859a33ac596f1886ffcc26dcc..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
+}
+
+
+AliMUONResponse::~AliMUONResponse()
+{
+/// Destructor
+}
+
+//_____________________________________________________________________________
+void
+AliMUONResponse::DisIntegrate(const AliMUONHit&, TList& digits)
+{
+/// Not implemented disintegration
+
+  digits.Clear();
+  AliError("Not implemented in this base class");
+}