]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpPadIteratorPtr.cxx
Adding comment lines to class description needed for Root documentation,
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPadIteratorPtr.cxx
index d5ca9188cfbd8bf4bf1e613a7d0ec96ff15b1bce..4b9c5338eda7d08aeff36f65ebffa22c03ebf48e 100755 (executable)
@@ -16,7 +16,8 @@
 // $Id$
 // $MpId: AliMpPadIteratorPtr.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $
 // Category: basic
-//
+
+//-----------------------------------------------------------------------------
 // Class AliMpPadIteratorPtr
 // --------------------------
 // Pointer to the virtual pad iterator;
@@ -27,6 +28,7 @@
 //
 // Included in AliRoot: 2003/05/02
 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
+//-----------------------------------------------------------------------------
 
 #include "AliMpPadIteratorPtr.h"
 #include "AliMpVPadIterator.h"
@@ -42,15 +44,6 @@ AliMpPadIteratorPtr::AliMpPadIteratorPtr(AliMpVPadIterator* it)
 /// Standard constructor
 }
 
-//_____________________________________________________________________________
-AliMpPadIteratorPtr::AliMpPadIteratorPtr(const AliMpPadIteratorPtr& right) 
-  : TObject(right) 
-{
-/// Protected copy constructor (not provided) 
-
-  Fatal("AliMpPadIteratorPtr", "Copy constructor not provided.");
-}
-
 //_____________________________________________________________________________
 AliMpPadIteratorPtr::~AliMpPadIteratorPtr() 
 {
@@ -58,20 +51,3 @@ AliMpPadIteratorPtr::~AliMpPadIteratorPtr()
 
   delete fIterator;
 }
-
-// operators
-
-//_____________________________________________________________________________
-AliMpPadIteratorPtr& 
-AliMpPadIteratorPtr::operator=(const AliMpPadIteratorPtr& right)
-{
-/// Protected assignment operator (not provided) 
-
-  // check assignment to self
-  if (this == &right) return *this;
-
-  Fatal("operator =", "Assignment operator not provided.");
-    
-  return *this;  
-}    
-