]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONDigit.cxx
Connect only MUON branches when reading the event to speed up digitisation.
[u/mrichter/AliRoot.git] / MUON / AliMUONDigit.cxx
index 633b79648f50a4ff76b3480146cafedf8d25624f..c08778727c2945c441b6a118f340d22f252f2945 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.5  2001/10/31 16:40:07  jchudoba
+change preprocessor constant to C++ constant
+
 Revision 1.4  2001/10/18 14:44:09  jchudoba
 Define constant MAXTRACKS for maximum number of tracks associated with 1 digit
 
@@ -31,6 +34,8 @@ Was before in DataStructures.cxx
 
 #include "AliMUONDigit.h"
 
+#include <iostream.h>
+
 ClassImp(AliMUONDigit)
 //_____________________________________________________________________________
 AliMUONDigit::AliMUONDigit(Int_t *digits)
@@ -69,3 +74,14 @@ AliMUONDigit::~AliMUONDigit()
 {
     // Destructor 
 }
+
+////////////////////////////////////////////////////////////////////////
+void AliMUONDigit::Print(Option_t *option) const 
+{
+  // print
+  cout<<"fPadX, fPadY, fCathode, fSignal, fPhysics, fHit: \n";
+  cout<<"   "<<fPadX<<" "<<fPadY<<" "<<fCathode<<" "
+      <<fSignal<<" "<<fPhysics<<" "<<fHit<<endl;
+}
+
+////////////////////////////////////////////////////////////////////////