]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
Classes for reading of the old RCU TPC raw data
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index d17a80695ece9b7859a33ac596f1886ffcc26dcc..6745beb0241f900444c0e99352524e8a92f77f7b 100644 (file)
 
 /* $Id$ */
 
+// -------------------------
+// Class AliMUONResponse
+// -------------------------
+// Chamber response base class
+// ...
+
 #include "AliMUONResponse.h"
 
+#include "AliLog.h"
+#include "TList.h"
+
 ClassImp(AliMUONResponse)
 
+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");
+}
+