]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONResponse.cxx
- Added handling of tracks and file mask (used when merging different files).
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.cxx
index d17a80695ece9b7859a33ac596f1886ffcc26dcc..f99c47245322b3105dd988a80b80c297cfec1177 100644 (file)
 
 #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)
+{
+  digits.Clear();
+  AliError("Not implemented in this base class");
+}
+