]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONClusterDrawAZ.cxx
new lookup table for sim. data with numberof TRMs
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterDrawAZ.cxx
index 19210ed0f4505b79903ee68cce97955a0cfba954..53250865848b867b363418ce38d5d63ef24c3d0d 100644 (file)
@@ -23,7 +23,7 @@
 
 #include <stdlib.h>
 #include <Riostream.h>
-//#include <TROOT.h>
+#include <TROOT.h>
 #include <TCanvas.h>
 #include <TLine.h>
 //#include <TTree.h>
@@ -51,23 +51,34 @@ ClassImp(AliMUONClusterDrawAZ)
  
 //_____________________________________________________________________________
 AliMUONClusterDrawAZ::AliMUONClusterDrawAZ()
-  : TObject()
+  : TObject(),
+    fData(0x0),
+    fFind(0x0),
+    fnMu(0),
+    fEvent(0),
+    fChamber(0),
+    fidDE(0),
+    fDebug(0),
+    fModif(0)
 {
 /// Default constructor
-  fFind = NULL; fData = NULL;
   for (Int_t i=0; i<4; i++) fHist[i] = NULL;
 }
 
 //_____________________________________________________________________________
 AliMUONClusterDrawAZ::AliMUONClusterDrawAZ(AliMUONClusterFinderAZ *clusFinder)
-  : TObject()
+  : TObject(),
+    fData(0x0),
+    fFind(clusFinder),
+    fnMu(0),
+    fEvent(0),
+    fChamber(0),
+    fidDE(0),
+    fDebug(1),
+    fModif(0)
 {
 /// Constructor
-  fFind = clusFinder;
   for (Int_t i=0; i<4; i++) fHist[i] = NULL;
-  fDebug = 1; 
-  fEvent = fChamber = fidDE = 0;
-  fModif = 0; //0; 
   Init();
 }
 
@@ -77,28 +88,6 @@ AliMUONClusterDrawAZ::~AliMUONClusterDrawAZ()
 /// Destructor
 }
 
-//_____________________________________________________________________________
-AliMUONClusterDrawAZ::AliMUONClusterDrawAZ(const AliMUONClusterDrawAZ& rhs)
-  : TObject(rhs)
-{
-/// Protected copy constructor
-
-  AliFatal("Not implemented.");
-}
-
-
-//_____________________________________________________________________________
-AliMUONClusterDrawAZ&  
-AliMUONClusterDrawAZ::operator=(const AliMUONClusterDrawAZ& rhs)
-{
-/// Protected assignement operator
-
-  if (this == &rhs) return *this;
-
-  AliFatal("Not implemented.");
-  return *this;  
-}    
-
 //_____________________________________________________________________________
 void AliMUONClusterDrawAZ::Init()
 {