]> 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 44911daf7eb8abe5977d44c5f8f474defea89097..a9bba7e6b1c939e7b481f1581877765967b226e4 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.1.2.1  2000/06/09 21:31:45  morsch
-AliMUONResponse code  from  AliMUONSegRes.cxx
+/* $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, Float_t /*timeDif*/)
+{
+/// Not implemented disintegration
+
+  digits.Clear();
+  AliError("Not implemented in this base class");
+}